| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128 |
- (kicad_sch
- (version 20231120)
- (generator "eeschema")
- (generator_version "8.0")
- (uuid "3549bb14-5c3f-49ba-80ea-c3bc8c817384")
- (paper "A4")
- (lib_symbols
- (symbol "TEST_1P_13"
- (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_13"
- (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_13_0_1"
- (circle
- (center 0 0)
- (radius 0.762)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "TEST_1P_13_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 "TEST_1P_6"
- (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_6"
- (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_6_0_1"
- (circle
- (center 0 0)
- (radius 0.762)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "TEST_1P_6_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 "TEST_1P_8"
- (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_8"
- (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_8_0_1"
- (circle
- (center 0 0)
- (radius 0.762)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "TEST_1P_8_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_01X04"
- (pin_names
- (offset 1.016) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "P"
- (at 0 6.35 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "CONN_01X04"
- (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_1X04 Pin_Header_Angled_1X04 Socket_Strip_Straight_1X04 Socket_Strip_Angled_1X04"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "CONN_01X04_0_1"
- (rectangle
- (start -1.27 -3.683)
- (end 0.254 -3.937)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (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 3.937)
- (end 0.254 3.683)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 5.08)
- (end 1.27 -5.08)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "CONN_01X04_1_1"
- (pin passive line
- (at -5.08 3.81 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)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -1.27 0)
- (length 3.81)
- (name "P3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -3.81 0)
- (length 3.81)
- (name "P4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (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: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 104.14 25.4)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "043d729b-ac45-4129-88e5-fa725588f329")
- )
- (junction
- (at 104.14 33.02)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "0968ab04-0f6f-4d80-8973-539ec48f8eda")
- )
- (junction
- (at 168.91 34.29)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1b35895e-756a-4adf-b88a-cd824a6a9057")
- )
- (junction
- (at 33.02 123.19)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "20459844-674c-438d-820a-4ca4698e758a")
- )
- (junction
- (at 29.21 30.48)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "22eb2236-ebe8-40c3-98a7-29b8e8f83613")
- )
- (junction
- (at 62.23 120.65)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2e6dd6f2-be42-42b4-bb2e-896a1d1f6e20")
- )
- (junction
- (at 34.29 30.48)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "3760b5ea-8eb7-49b3-96d3-65d614024002")
- )
- (junction
- (at 168.91 31.75)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "4da4aecc-7606-4162-a4c3-c96c6e069888")
- )
- (junction
- (at 39.37 25.4)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "4ed57a30-4e48-4423-9af1-f843192a46cd")
- )
- (junction
- (at 118.11 118.11)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "75f82d83-afeb-4fa6-90fb-f36ce623657e")
- )
- (junction
- (at 38.1 123.19)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "9163a927-afac-4726-a6ba-ebe965934f1b")
- )
- (junction
- (at 110.49 25.4)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "96586a02-0dd6-4206-86f2-d63e4a1e6c66")
- )
- (junction
- (at 64.77 120.65)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "9d6f2062-9c2f-4ae6-9336-0e0f15693e8d")
- )
- (junction
- (at 158.75 29.21)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "9e1ddab4-37f3-4c4a-a9ef-3912b3634fc9")
- )
- (junction
- (at 58.42 27.94)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "bd6f52fd-d314-4ae9-b83c-422191466a41")
- )
- (junction
- (at 118.11 120.65)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c5a4ba02-3cd2-4e59-b1ed-9009128d243a")
- )
- (junction
- (at 43.18 118.11)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "d405422a-6058-4e68-bf7f-7cb8534aef1d")
- )
- (junction
- (at 60.96 27.94)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "d90a8cc5-0b53-4b9b-ae58-fa27f1d40d7a")
- )
- (junction
- (at 34.29 25.4)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "dd8c5bb9-c5ab-4d0e-bce0-9f10ebea560c")
- )
- (junction
- (at 107.95 115.57)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "e1ba7a5d-1c73-4fb7-9547-987daad1255e")
- )
- (junction
- (at 110.49 33.02)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "e6ee37cb-bd58-4928-8835-bc498c0135fa")
- )
- (junction
- (at 38.1 118.11)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "ff2587a3-620e-4053-9057-caafdcbf876a")
- )
- (no_connect
- (at 90.17 25.4)
- (uuid "588dbfb5-a05a-4602-9f8d-c18726f14ba2")
- )
- (no_connect
- (at 72.39 22.86)
- (uuid "9bc27a28-5721-417d-9451-3ac4924945d8")
- )
- (no_connect
- (at 72.39 27.94)
- (uuid "b2e7dc01-ae78-443e-bd94-84b2759b602e")
- )
- (wire
- (pts
- (xy 29.21 25.4) (xy 34.29 25.4)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0263b06e-3a41-4419-8159-010786d589bd")
- )
- (wire
- (pts
- (xy 66.04 120.65) (xy 64.77 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "03e7cbd6-4e2b-450b-941a-cde9aa171ae6")
- )
- (wire
- (pts
- (xy 118.11 118.11) (xy 127 118.11)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0602af6b-abc6-40ec-9b62-3f813954c1b4")
- )
- (wire
- (pts
- (xy 33.02 123.19) (xy 38.1 123.19)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0f0c0834-d500-43f9-8b31-de2ed0e53572")
- )
- (wire
- (pts
- (xy 59.69 24.13) (xy 59.69 19.05)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0f7ea0c8-8b11-4603-ae0f-1e5e71a9bbcb")
- )
- (wire
- (pts
- (xy 101.6 25.4) (xy 104.14 25.4)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0fcfa773-bbb7-4dfa-9bc8-7c55d62507e3")
- )
- (wire
- (pts
- (xy 104.14 33.02) (xy 110.49 33.02)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "17ae09dc-19f2-4259-9fcb-b6e4a75493f7")
- )
- (wire
- (pts
- (xy 29.21 30.48) (xy 34.29 30.48)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "18bac354-e9e7-4396-8523-12b65d121a89")
- )
- (wire
- (pts
- (xy 118.11 25.4) (xy 118.11 27.94)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1f1246e3-75d6-46cb-8bce-d6011daba9e9")
- )
- (wire
- (pts
- (xy 168.91 31.75) (xy 177.8 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "25f6c3bf-ec93-4730-8c78-71dcc11e4198")
- )
- (wire
- (pts
- (xy 162.56 29.21) (xy 158.75 29.21)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2a649aa8-4817-401e-a053-8b6c3035b57a")
- )
- (wire
- (pts
- (xy 118.11 33.02) (xy 118.11 30.48)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "30fbded6-9b68-4fc2-bf0f-33b5e237670c")
- )
- (wire
- (pts
- (xy 64.77 116.84) (xy 63.5 116.84)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "31ad3020-5a51-4fe9-928a-e07c476a3ae2")
- )
- (wire
- (pts
- (xy 101.6 33.02) (xy 104.14 33.02)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "36ad8b25-5a42-475c-b917-4980e1a96d87")
- )
- (wire
- (pts
- (xy 107.95 115.57) (xy 102.87 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "36b32a9e-a673-454a-b215-2a7881b44a41")
- )
- (wire
- (pts
- (xy 118.11 120.65) (xy 127 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3ac36798-7bd2-4797-9f7b-667768a17735")
- )
- (wire
- (pts
- (xy 33.02 118.11) (xy 38.1 118.11)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4109007f-34f9-404d-8326-4092ed2b99b0")
- )
- (wire
- (pts
- (xy 38.1 118.11) (xy 43.18 118.11)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "48b8fedf-fbb6-4ec5-95a9-de415389ccae")
- )
- (wire
- (pts
- (xy 46.99 19.05) (xy 39.37 19.05)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4b9f329b-a4e1-4def-b087-d31c228cdf64")
- )
- (wire
- (pts
- (xy 29.21 39.37) (xy 29.21 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4c592c43-7827-4da5-95a1-022116017dad")
- )
- (wire
- (pts
- (xy 104.14 25.4) (xy 110.49 25.4)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5413449d-e18c-4c7f-99e6-743ccc41e7fa")
- )
- (wire
- (pts
- (xy 63.5 111.76) (xy 58.42 111.76)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "545ad2d1-0089-470d-8442-22fe75a4e108")
- )
- (wire
- (pts
- (xy 50.8 111.76) (xy 43.18 111.76)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "56afbe2b-f9b7-4032-a9e5-526a129c8d9f")
- )
- (wire
- (pts
- (xy 111.76 115.57) (xy 107.95 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "60fb41e1-7993-47a8-b9f9-309a66f2e908")
- )
- (wire
- (pts
- (xy 110.49 25.4) (xy 118.11 25.4)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "691f5602-4f37-4039-af1b-46fee3921630")
- )
- (wire
- (pts
- (xy 168.91 34.29) (xy 177.8 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "762cdcd6-a9ff-4e5c-8058-9309fbc327d5")
- )
- (wire
- (pts
- (xy 64.77 116.84) (xy 64.77 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "85c68c0a-51d3-4b8c-aae0-ac3dbabe855b")
- )
- (wire
- (pts
- (xy 59.69 19.05) (xy 54.61 19.05)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8d3679d4-a51d-44c8-b733-0eba8e650e81")
- )
- (wire
- (pts
- (xy 34.29 30.48) (xy 39.37 30.48)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8dd613f6-45f2-4df4-9eb7-7928cdc124f0")
- )
- (wire
- (pts
- (xy 60.96 120.65) (xy 62.23 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "931fd2a2-9313-43ec-a991-7025c2193c1d")
- )
- (wire
- (pts
- (xy 60.96 24.13) (xy 60.96 27.94)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9619c47f-2362-45aa-aff7-7a0cb5c30b6b")
- )
- (wire
- (pts
- (xy 62.23 120.65) (xy 64.77 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a95f827f-81f4-48b6-a1a9-cf492f694aa9")
- )
- (wire
- (pts
- (xy 168.91 34.29) (xy 153.67 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b08784ad-a00a-4809-8fda-87fb9dd382de")
- )
- (wire
- (pts
- (xy 39.37 19.05) (xy 39.37 25.4)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c01da7db-18ef-4377-b8ef-8271cbadc624")
- )
- (wire
- (pts
- (xy 58.42 27.94) (xy 60.96 27.94)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c0fd8347-2556-4a13-90cc-9a3dd230cbe1")
- )
- (wire
- (pts
- (xy 38.1 123.19) (xy 43.18 123.19)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c34e3e95-a87f-47e9-87b4-b7c8dd4bb839")
- )
- (wire
- (pts
- (xy 60.96 24.13) (xy 59.69 24.13)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cb6c5390-1083-485b-be3b-5a0d6ae7a156")
- )
- (wire
- (pts
- (xy 34.29 25.4) (xy 39.37 25.4)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d3890434-46cb-49c0-a279-149e49feac4e")
- )
- (wire
- (pts
- (xy 118.11 118.11) (xy 102.87 118.11)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d7977b0c-276a-4399-9c15-23aa9ee581f1")
- )
- (wire
- (pts
- (xy 63.5 116.84) (xy 63.5 111.76)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d896bc14-72e5-4a56-a135-5a732c87b6bd")
- )
- (wire
- (pts
- (xy 62.23 27.94) (xy 60.96 27.94)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e0bd636f-ca09-4b1c-be48-1cf7720c528b")
- )
- (wire
- (pts
- (xy 57.15 27.94) (xy 58.42 27.94)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "eda63414-8b66-4285-aa11-9c55f0fcac45")
- )
- (wire
- (pts
- (xy 118.11 120.65) (xy 102.87 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f0a52cde-61f4-42b3-bb6d-2f2d154c6757")
- )
- (wire
- (pts
- (xy 158.75 29.21) (xy 153.67 29.21)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f3492184-25b4-4ccd-aeac-fe811d840251")
- )
- (wire
- (pts
- (xy 168.91 31.75) (xy 153.67 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f4546163-675b-4066-86ac-9da33868e7f5")
- )
- (wire
- (pts
- (xy 43.18 111.76) (xy 43.18 118.11)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f78ca58f-6552-456b-ba49-0f48ea9cc398")
- )
- (wire
- (pts
- (xy 110.49 33.02) (xy 118.11 33.02)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fe41cc71-36bb-4406-b9a6-379f8b4022e2")
- )
- (text "Option 2 pour 2 Lecture de température\n"
- (exclude_from_sim no)
- (at 70.358 98.552 0)
- (effects
- (font
- (size 2.54 2.54)
- )
- )
- (uuid "40435fae-3309-48fe-8732-e861195d4d27")
- )
- (text "Calibration : \nMettre des tension connu entre V+ et V- , pour connaitre la reponse lineaire de la chaine de capture\nMettre la sonde PT1000 dans l'eau glacée, en deduire la valeur de la résistance R14. \n R14 = ((Vcc-Vpt)*1000)/Vpt"
- (exclude_from_sim no)
- (at 24.13 50.8 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "abd18889-a6a2-44f7-972b-9e7d95be6671")
- )
- (text "le calcul avec une PT1000 :\nI = Vcc/ (Rpt + R14); Vpt=I * Rpt => Vpt=(Vcc/(Rpt+R14))*Rpt\nRpt=(Vpt*R14)/(Vcc-Vpt)\n"
- (exclude_from_sim no)
- (at 74.93 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "f43c5aa2-57b4-411e-92d4-4f074aecc968")
- )
- (label "V-_2"
- (at 127 120.65 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "06911ec3-ad96-4c1a-a0b6-06244ae29234")
- )
- (label "V+"
- (at 21.59 30.48 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "0b036745-d7a8-4e6b-920c-3b767fdbdbed")
- )
- (label "V+"
- (at 177.8 31.75 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "16a840f0-8b7f-4c24-a57c-dd5daf7a6ace")
- )
- (label "3.3V"
- (at 111.76 107.95 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "2ea21c5f-e90d-473e-8afe-20faa88c1982")
- )
- (label "V-"
- (at 21.59 25.4 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "33c8d568-557e-4b98-b058-521af5b316f3")
- )
- (label "V+_2"
- (at 127 118.11 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "43d40828-87f2-4ad2-847e-3e989bfef536")
- )
- (label "OUT1"
- (at 62.23 27.94 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "699179e1-818b-4d07-8ada-1fc54a72feb0")
- )
- (label "3.3V"
- (at 162.56 21.59 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "6b6c34ec-8c4c-4adc-b2a8-69d5c62f2ad6")
- )
- (label "GND"
- (at 102.87 123.19 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "73d239b2-b4e6-49fb-97ff-ea449b5f1a3d")
- )
- (label "V-_2"
- (at 25.4 118.11 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "74918531-495d-4ba2-8f41-cecb0dcc54ea")
- )
- (label "3.3V"
- (at 101.6 33.02 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "75dbc9c7-ad3a-472d-8bff-50b2ce5b43e5")
- )
- (label "V+_2"
- (at 25.4 123.19 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "9ac6170f-4f33-4242-b04b-34e1b3cfd73f")
- )
- (label "OUT1"
- (at 66.04 120.65 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "a7fd7765-0a38-48e4-95ab-0fcb647e02f4")
- )
- (label "GND"
- (at 153.67 36.83 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "c281aa2c-488b-4912-ab88-62d9652999a9")
- )
- (label "GND"
- (at 101.6 25.4 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "de17ffc1-bf39-4a62-a7c1-06eba81bea96")
- )
- (label "V-"
- (at 177.8 34.29 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "e8439e50-27b8-449c-837f-35ef597eb1b5")
- )
- (label "GND"
- (at 29.21 39.37 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "fe1de199-ff91-4740-ad80-bd2374f0177d")
- )
- (symbol
- (lib_name "TEST_1P_8")
- (lib_id "conn:TEST_1P")
- (at 118.11 120.65 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "07114620-44dc-4329-ad8e-8563619b58fc")
- (property "Reference" "PT?"
- (at 116.84 123.19 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Temp_V-"
- (at 120.65 118.6179 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 123.19 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 123.19 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 118.11 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 118.11 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "7467e013-f481-4d56-b8a7-7252fce36f8e")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "conn:CONN_01X04")
- (at 148.59 33.02 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "0c9a7f2c-6d4d-43bf-a520-595e90c54f81")
- (property "Reference" "P?"
- (at 148.59 26.67 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "CONN_01X04"
- (at 146.05 33.02 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "PinHeader:JST_2.54_4"
- (at 148.59 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 148.59 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 148.59 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 148.59 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "c3829ab3-a9b4-4e51-a5fd-a41962e0065b")
- )
- (pin "2"
- (uuid "4d5921d2-2cdc-4e35-a936-350eb3782564")
- )
- (pin "3"
- (uuid "9ee9ff49-5df8-4b8b-9537-b2920fe18af8")
- )
- (pin "4"
- (uuid "480ecd53-6214-4a8d-8232-44232ea6823a")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "P?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 104.14 29.21 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "0df88abb-f810-4ebd-bcc7-cbf11f16f3ec")
- (property "Reference" "C?"
- (at 104.14 26.67 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "4.7µF"
- (at 104.14 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 105.1052 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 104.14 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 104.14 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0607"
- (at 104.14 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "e93a5e09-7202-49eb-9a60-7e596221718a")
- )
- (pin "2"
- (uuid "9fc7c4be-4cb5-4ffd-af60-bf9f799544ff")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 110.49 29.21 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "1612b7e5-6d34-4fa0-b765-ab6d1d8dbbeb")
- (property "Reference" "C?"
- (at 110.49 26.67 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100nF"
- (at 110.49 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 111.4552 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 110.49 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 110.49 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0605"
- (at 110.49 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "b10b59fc-14c0-4d94-8a61-82bd3ac2ebbb")
- )
- (pin "2"
- (uuid "a1003978-64fc-4458-a4fd-c2e55a169c53")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "TI:LMC6042")
- (at 123.19 29.21 0)
- (unit 3)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "29291279-cffb-421a-b720-ab6c3fd1f235")
- (property "Reference" "U?"
- (at 127 27.9399 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "LMC6042"
- (at 127 30.4799 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "U:SO8N"
- (at 123.19 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 123.19 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 123.19 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "2400"
- (at 123.19 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "21b5e26a-f52c-4561-a8c6-a5cd4b8c2082")
- )
- (pin "2"
- (uuid "f0f93b4b-b744-46a4-95e2-796e97765c84")
- )
- (pin "3"
- (uuid "e14075dd-896a-471f-9a44-806087e91c0f")
- )
- (pin "5"
- (uuid "c358e7ba-6850-47a9-a7db-5556acc300f5")
- )
- (pin "6"
- (uuid "70137949-8d5f-4077-9cb0-91f87f397590")
- )
- (pin "7"
- (uuid "a7d7a391-536b-45dd-acfe-c799a64ed2d4")
- )
- (pin "4"
- (uuid "62b1d7d3-2292-4b0c-8735-b158beba0e26")
- )
- (pin "8"
- (uuid "b860587c-4c76-4529-9af0-ffcd91ac45b4")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "U?")
- (unit 3)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_8")
- (lib_id "conn:TEST_1P")
- (at 168.91 34.29 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "4047e89c-36e3-4b6b-8821-039d5cc5ec9e")
- (property "Reference" "PT?"
- (at 167.64 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Temp_V-"
- (at 171.45 32.2579 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 173.99 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 173.99 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 168.91 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 168.91 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "d9403485-637f-4e9d-ac79-0f6f3b58f74f")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "conn:CONN_01X04")
- (at 97.79 119.38 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "45e29f2e-09c1-45ce-bf35-107127820bdb")
- (property "Reference" "P?"
- (at 97.79 113.03 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "CONN_01X04"
- (at 95.25 119.38 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "PinHeader:JST_2.54_4"
- (at 97.79 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 97.79 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 97.79 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 97.79 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "0a0fa96c-cfb5-44cd-8601-0c33cffee79d")
- )
- (pin "2"
- (uuid "bccc49b2-9c7d-47c5-9656-d9dd4e952d4f")
- )
- (pin "3"
- (uuid "12bea69d-d7ce-4aef-8bb6-1d556f55cbb9")
- )
- (pin "4"
- (uuid "43293b0c-7e71-484b-b60f-73e3c49d2890")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "P?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 29.21 123.19 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "4b941eef-ec87-49c6-98d7-f30df6b50787")
- (property "Reference" "R?"
- (at 29.21 120.65 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "4.7K"
- (at 29.21 123.19 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 29.21 124.968 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 29.21 123.19 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 29.21 123.19 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0917"
- (at 29.21 123.19 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "ec11d964-4a66-41ba-a6e3-dfef916795df")
- )
- (pin "2"
- (uuid "971bbaf7-89be-4915-b861-746a65a70fa1")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 111.76 111.76 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "4f146168-b924-4f1c-9469-1969bb0055d5")
- (property "Reference" "R?"
- (at 114.3 110.4899 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "16.2K"
- (at 114.3 113.0299 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:0805"
- (at 109.982 111.76 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 111.76 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 111.76 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0933"
- (at 111.76 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "df247beb-50ee-436f-a56d-f8e39cd05a2f")
- )
- (pin "2"
- (uuid "0c95c365-cb56-41c2-a0ba-d8b744c9e2e9")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 162.56 25.4 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "55949447-b396-4111-8223-8ff5e2c88e4d")
- (property "Reference" "R?"
- (at 165.1 24.1299 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "16.2K"
- (at 165.1 26.6699 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:0805"
- (at 160.782 25.4 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 162.56 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 162.56 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0933"
- (at 162.56 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "70ada9af-5ac1-48b8-a281-a761f5e34a9e")
- )
- (pin "2"
- (uuid "a580e5a9-0844-42ee-a331-0836def068dd")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_13")
- (lib_id "conn:TEST_1P")
- (at 62.23 120.65 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "5c808a85-5cb4-41be-a13e-d5376d7a2e0e")
- (property "Reference" "PT?"
- (at 64.77 113.03 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "T_Vout_diff"
- (at 64.77 118.6179 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 67.31 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 67.31 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 62.23 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 62.23 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "b07578ba-7594-4b93-8194-7214d4b2b00d")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 29.21 34.29 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "5f1ebb10-e7b5-4e32-b5d0-7570478e2aa2")
- (property "Reference" "R?"
- (at 30.48 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "43K"
- (at 30.48 35.56 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:0805"
- (at 27.432 34.29 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 29.21 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 29.21 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0919"
- (at 29.21 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "969b85b6-4393-4671-a6c1-806b072ff45b")
- )
- (pin "2"
- (uuid "c39b860c-1ff3-4a8f-ac6c-d8548b215931")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 29.21 118.11 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "6b7fddb4-c03b-421d-aff9-c5dd6b787add")
- (property "Reference" "R?"
- (at 29.21 115.57 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "4.7K"
- (at 29.21 118.11 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 29.21 119.888 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 29.21 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 29.21 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0917"
- (at 29.21 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "bc7ace84-f535-49ad-851e-837e09991dd2")
- )
- (pin "2"
- (uuid "68919aef-7fe1-4a6c-9387-6efc797f5455")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_13")
- (lib_id "conn:TEST_1P")
- (at 38.1 123.19 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "6dfd60f9-391a-4578-a21f-6d8d456009e6")
- (property "Reference" "PT?"
- (at 36.83 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" " T_V+_U1"
- (at 40.64 121.1579 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 43.18 123.19 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 43.18 123.19 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 38.1 123.19 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 38.1 123.19 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "1e62059b-ba6b-4cf2-9e11-aca22a994dc6")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_13")
- (lib_id "conn:TEST_1P")
- (at 168.91 31.75 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "7f8e1064-6961-4613-8864-7d626eeb85e1")
- (property "Reference" "PT?"
- (at 167.64 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Temp_V+"
- (at 171.45 29.7179 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 173.99 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 173.99 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 168.91 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 168.91 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "c565f68b-21da-46c3-802f-5a99a71277b3")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_13")
- (lib_id "conn:TEST_1P")
- (at 58.42 27.94 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "89618033-0487-4eb2-b2cf-2aee5ed44d9b")
- (property "Reference" "PT?"
- (at 60.96 20.32 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "T_Vout_diff"
- (at 60.96 25.9079 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 63.5 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 63.5 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 58.42 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 58.42 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "ddf61cc5-f6f4-4ccf-9923-3eef962fad91")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "TI:LMC6042")
- (at 48.26 27.94 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "8985a559-8b9c-44fa-9df9-ad87a6621f16")
- (property "Reference" "U?"
- (at 48.26 22.86 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LMC6042"
- (at 48.26 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "U:SO8N"
- (at 48.26 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 48.26 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 48.26 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "2400"
- (at 48.26 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "5638229d-8d77-42d4-9859-e071c115336e")
- )
- (pin "2"
- (uuid "8cf73504-d909-4e70-a8d9-ec8fd6ae3cd2")
- )
- (pin "3"
- (uuid "2554f838-e023-4207-aa1c-511a31601576")
- )
- (pin "5"
- (uuid "c8c1a9a2-e8f6-490d-bca2-179ee7866e68")
- )
- (pin "6"
- (uuid "e8fe515e-e784-49b7-904a-82554ae352f1")
- )
- (pin "7"
- (uuid "52606678-040a-4b26-aeda-b725b5da4121")
- )
- (pin "4"
- (uuid "4334f79f-b334-444a-abfe-5288469d6b64")
- )
- (pin "8"
- (uuid "0bb3c419-908e-4a8c-9794-12a33cb04759")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "U?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_6")
- (lib_id "conn:TEST_1P")
- (at 158.75 29.21 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "94f3f98e-c852-4d4f-b525-701a301b09f5")
- (property "Reference" "PT?"
- (at 157.48 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "T_IN_PT1000"
- (at 161.29 27.1779 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 163.83 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 163.83 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 158.75 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 158.75 29.21 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "31167c04-62ba-46fb-a25b-2e212d8412b5")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 50.8 19.05 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "a18e6698-de92-4d6e-80cf-ad640032b63f")
- (property "Reference" "R?"
- (at 50.8 16.51 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "43K"
- (at 50.8 19.05 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 50.8 20.828 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 50.8 19.05 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 50.8 19.05 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0919"
- (at 50.8 19.05 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "1ff0d974-ad12-4ecd-a096-4778ec8d708d")
- )
- (pin "2"
- (uuid "e4cd6cf2-8167-4f47-b3b8-4e6a4661d862")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 33.02 127 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "a47e8d0a-79c4-4b3d-876c-4a7b822aef9e")
- (property "Reference" "R?"
- (at 34.29 125.73 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "43K"
- (at 34.29 128.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:0805"
- (at 31.242 127 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 33.02 127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 33.02 127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0919"
- (at 33.02 127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "9bd6e1e4-7675-4f75-8c18-8edbfe036825")
- )
- (pin "2"
- (uuid "dc52d6ca-5b8d-486e-afc1-33353dca04be")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 54.61 111.76 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "a8fe23f3-1376-4240-96df-bc5f90277fe2")
- (property "Reference" "R?"
- (at 54.61 109.22 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "43K"
- (at 54.61 111.76 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 54.61 113.538 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 54.61 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 54.61 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0919"
- (at 54.61 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "fd5e37c4-c2d5-4d3e-92b0-0a29cfa81208")
- )
- (pin "2"
- (uuid "442387e4-2f82-42f9-abbc-120586dfceaf")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_13")
- (lib_id "conn:TEST_1P")
- (at 118.11 118.11 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "aefb7d15-c387-40fe-abed-509614cd425b")
- (property "Reference" "PT?"
- (at 116.84 115.57 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Temp_V+"
- (at 120.65 116.0779 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 123.19 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 123.19 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 118.11 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 118.11 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "a78eedf7-348d-4e6c-ab2d-12921532482f")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "TI:LMC6042")
- (at 81.28 25.4 0)
- (unit 2)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "b227c048-b070-4f6e-ba3e-adbd30e1c2d7")
- (property "Reference" "U?"
- (at 81.28 15.24 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LMC6042"
- (at 81.28 17.78 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "U:SO8N"
- (at 81.28 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 81.28 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 81.28 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "2400"
- (at 81.28 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "4ab08bfc-7c15-4c00-b477-a8b397576747")
- )
- (pin "2"
- (uuid "690d360a-d643-4013-9a09-c381b00bef5e")
- )
- (pin "3"
- (uuid "80e4dc19-9799-43cd-8c8c-af4b7dc8ee6b")
- )
- (pin "5"
- (uuid "4717e292-74ce-4514-a05d-47e8d3d5a1e6")
- )
- (pin "6"
- (uuid "c970017d-7182-4563-9098-5e1c9b099e4a")
- )
- (pin "7"
- (uuid "a7b4bc56-9d5a-4439-a8d6-3fea43ba2ebc")
- )
- (pin "4"
- (uuid "e3c8242f-bf6c-47d8-90b0-27d6e2a88596")
- )
- (pin "8"
- (uuid "77d81e6e-43d3-4306-8ddf-c2791ec3e8b5")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "U?")
- (unit 2)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_6")
- (lib_id "conn:TEST_1P")
- (at 107.95 115.57 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "b4c4ad98-f125-413a-8d63-b26c76bd3f5c")
- (property "Reference" "PT?"
- (at 106.68 114.3 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "T_IN_PT1000"
- (at 110.49 113.5379 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 113.03 115.57 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 113.03 115.57 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 107.95 115.57 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 107.95 115.57 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "72384822-574c-4dc7-87b2-8db90c2e0817")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 25.4 25.4 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "b7d9e3c4-8f4a-4efa-96bf-c2c0fb64647f")
- (property "Reference" "R?"
- (at 25.4 22.86 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "4.7K"
- (at 25.4 25.4 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 25.4 27.178 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 25.4 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 25.4 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0917"
- (at 25.4 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "76f10443-7ed5-492a-ac79-83a8a2f05254")
- )
- (pin "2"
- (uuid "a170ead4-0d52-4976-bc5e-24e63b155c71")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_13")
- (lib_id "conn:TEST_1P")
- (at 34.29 25.4 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "c33edade-be12-4939-9b5f-38bd240a4619")
- (property "Reference" "PT?"
- (at 33.02 22.86 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" " T_V-_U1"
- (at 36.83 23.3679 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 39.37 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 39.37 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 34.29 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 34.29 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "9c091af1-c2d3-4105-a900-4291d2485663")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "TI:LMC6042")
- (at 52.07 120.65 0)
- (unit 2)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "ddea52ee-4372-4738-92b7-5db72214ff20")
- (property "Reference" "U?"
- (at 52.324 125.476 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LMC6042"
- (at 52.578 116.332 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "U:SO8N"
- (at 52.07 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 52.07 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 52.07 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "2400"
- (at 52.07 120.65 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "4ab08bfc-7c15-4c00-b477-a8b397576747")
- )
- (pin "2"
- (uuid "690d360a-d643-4013-9a09-c381b00bef5e")
- )
- (pin "3"
- (uuid "80e4dc19-9799-43cd-8c8c-af4b7dc8ee6b")
- )
- (pin "5"
- (uuid "def87859-6b93-4601-aee5-43638c04cf0d")
- )
- (pin "6"
- (uuid "eeb7100a-8724-4ea7-aba7-c627f94be0d0")
- )
- (pin "7"
- (uuid "b3f2f82d-d5d8-47ff-a1a8-4e9f57dd91f8")
- )
- (pin "4"
- (uuid "e3c8242f-bf6c-47d8-90b0-27d6e2a88596")
- )
- (pin "8"
- (uuid "77d81e6e-43d3-4306-8ddf-c2791ec3e8b5")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "U?")
- (unit 2)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 25.4 30.48 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "df484151-91da-4a3b-9f87-e8041c9c9d05")
- (property "Reference" "R?"
- (at 25.4 27.94 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "4.7K"
- (at 25.4 30.48 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 25.4 32.258 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 25.4 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 25.4 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0917"
- (at 25.4 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "08d8c803-ebf5-4af1-a07e-38a616ab71fa")
- )
- (pin "2"
- (uuid "1075d39a-7739-4154-adeb-6e6076553636")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_13")
- (lib_id "conn:TEST_1P")
- (at 34.29 30.48 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "e2617379-c6cd-44c2-8a83-813114026d70")
- (property "Reference" "PT?"
- (at 33.02 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" " T_V+_U1"
- (at 36.83 28.4479 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 39.37 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 39.37 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 34.29 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 34.29 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "a01ed7d0-063b-4772-a2b7-adbf0e41943a")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_13")
- (lib_id "conn:TEST_1P")
- (at 38.1 118.11 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "fbfa16b0-995c-461f-bfc2-a206762c9ee9")
- (property "Reference" "PT?"
- (at 36.83 115.57 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" " T_V-_U1"
- (at 40.64 116.0779 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 43.18 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 43.18 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 38.1 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 38.1 118.11 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "afa1739f-4060-40ab-a05d-053e98730a84")
- )
- (instances
- (project "PT1000"
- (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (sheet_instances
- (path "/"
- (page "1")
- )
- )
- )
|