PT1000.kicad_sch 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "3549bb14-5c3f-49ba-80ea-c3bc8c817384")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "TEST_1P_13"
  9. (pin_numbers hide)
  10. (pin_names
  11. (offset 0.762) hide)
  12. (exclude_from_sim no)
  13. (in_bom yes)
  14. (on_board yes)
  15. (property "Reference" "PT"
  16. (at 0 1.27 0)
  17. (effects
  18. (font
  19. (size 1.27 1.27)
  20. )
  21. )
  22. )
  23. (property "Value" "TEST_1P_13"
  24. (at 0 5.08 0)
  25. (effects
  26. (font
  27. (size 1.27 1.27)
  28. )
  29. (hide yes)
  30. )
  31. )
  32. (property "Footprint" ""
  33. (at 5.08 0 0)
  34. (effects
  35. (font
  36. (size 1.27 1.27)
  37. )
  38. )
  39. )
  40. (property "Datasheet" ""
  41. (at 5.08 0 0)
  42. (effects
  43. (font
  44. (size 1.27 1.27)
  45. )
  46. )
  47. )
  48. (property "Description" ""
  49. (at 0 0 0)
  50. (effects
  51. (font
  52. (size 1.27 1.27)
  53. )
  54. (hide yes)
  55. )
  56. )
  57. (symbol "TEST_1P_13_0_1"
  58. (circle
  59. (center 0 0)
  60. (radius 0.762)
  61. (stroke
  62. (width 0)
  63. (type default)
  64. )
  65. (fill
  66. (type none)
  67. )
  68. )
  69. )
  70. (symbol "TEST_1P_13_1_1"
  71. (pin passive line
  72. (at 0 0 90)
  73. (length 0)
  74. (name "1"
  75. (effects
  76. (font
  77. (size 1.27 1.27)
  78. )
  79. )
  80. )
  81. (number "1"
  82. (effects
  83. (font
  84. (size 1.27 1.27)
  85. )
  86. )
  87. )
  88. )
  89. )
  90. )
  91. (symbol "TEST_1P_6"
  92. (pin_numbers hide)
  93. (pin_names
  94. (offset 0.762) hide)
  95. (exclude_from_sim no)
  96. (in_bom yes)
  97. (on_board yes)
  98. (property "Reference" "PT"
  99. (at 0 1.27 0)
  100. (effects
  101. (font
  102. (size 1.27 1.27)
  103. )
  104. )
  105. )
  106. (property "Value" "TEST_1P_6"
  107. (at 0 5.08 0)
  108. (effects
  109. (font
  110. (size 1.27 1.27)
  111. )
  112. (hide yes)
  113. )
  114. )
  115. (property "Footprint" ""
  116. (at 5.08 0 0)
  117. (effects
  118. (font
  119. (size 1.27 1.27)
  120. )
  121. )
  122. )
  123. (property "Datasheet" ""
  124. (at 5.08 0 0)
  125. (effects
  126. (font
  127. (size 1.27 1.27)
  128. )
  129. )
  130. )
  131. (property "Description" ""
  132. (at 0 0 0)
  133. (effects
  134. (font
  135. (size 1.27 1.27)
  136. )
  137. (hide yes)
  138. )
  139. )
  140. (symbol "TEST_1P_6_0_1"
  141. (circle
  142. (center 0 0)
  143. (radius 0.762)
  144. (stroke
  145. (width 0)
  146. (type default)
  147. )
  148. (fill
  149. (type none)
  150. )
  151. )
  152. )
  153. (symbol "TEST_1P_6_1_1"
  154. (pin passive line
  155. (at 0 0 90)
  156. (length 0)
  157. (name "1"
  158. (effects
  159. (font
  160. (size 1.27 1.27)
  161. )
  162. )
  163. )
  164. (number "1"
  165. (effects
  166. (font
  167. (size 1.27 1.27)
  168. )
  169. )
  170. )
  171. )
  172. )
  173. )
  174. (symbol "TEST_1P_8"
  175. (pin_numbers hide)
  176. (pin_names
  177. (offset 0.762) hide)
  178. (exclude_from_sim no)
  179. (in_bom yes)
  180. (on_board yes)
  181. (property "Reference" "PT"
  182. (at 0 1.27 0)
  183. (effects
  184. (font
  185. (size 1.27 1.27)
  186. )
  187. )
  188. )
  189. (property "Value" "TEST_1P_8"
  190. (at 0 5.08 0)
  191. (effects
  192. (font
  193. (size 1.27 1.27)
  194. )
  195. (hide yes)
  196. )
  197. )
  198. (property "Footprint" ""
  199. (at 5.08 0 0)
  200. (effects
  201. (font
  202. (size 1.27 1.27)
  203. )
  204. )
  205. )
  206. (property "Datasheet" ""
  207. (at 5.08 0 0)
  208. (effects
  209. (font
  210. (size 1.27 1.27)
  211. )
  212. )
  213. )
  214. (property "Description" ""
  215. (at 0 0 0)
  216. (effects
  217. (font
  218. (size 1.27 1.27)
  219. )
  220. (hide yes)
  221. )
  222. )
  223. (symbol "TEST_1P_8_0_1"
  224. (circle
  225. (center 0 0)
  226. (radius 0.762)
  227. (stroke
  228. (width 0)
  229. (type default)
  230. )
  231. (fill
  232. (type none)
  233. )
  234. )
  235. )
  236. (symbol "TEST_1P_8_1_1"
  237. (pin passive line
  238. (at 0 0 90)
  239. (length 0)
  240. (name "1"
  241. (effects
  242. (font
  243. (size 1.27 1.27)
  244. )
  245. )
  246. )
  247. (number "1"
  248. (effects
  249. (font
  250. (size 1.27 1.27)
  251. )
  252. )
  253. )
  254. )
  255. )
  256. )
  257. (symbol "TI:LMC6042"
  258. (exclude_from_sim no)
  259. (in_bom yes)
  260. (on_board yes)
  261. (property "Reference" "U2"
  262. (at 0 10.16 0)
  263. (effects
  264. (font
  265. (size 1.27 1.27)
  266. )
  267. )
  268. )
  269. (property "Value" "LMC6042"
  270. (at 0 7.62 0)
  271. (effects
  272. (font
  273. (size 1.27 1.27)
  274. )
  275. )
  276. )
  277. (property "Footprint" "U:SO8N"
  278. (at 0 0 0)
  279. (effects
  280. (font
  281. (size 1.27 1.27)
  282. )
  283. (hide yes)
  284. )
  285. )
  286. (property "Datasheet" ""
  287. (at 0 0 0)
  288. (effects
  289. (font
  290. (size 1.27 1.27)
  291. )
  292. (hide yes)
  293. )
  294. )
  295. (property "Description" ""
  296. (at 0 0 0)
  297. (effects
  298. (font
  299. (size 1.27 1.27)
  300. )
  301. (hide yes)
  302. )
  303. )
  304. (property "ki_locked" ""
  305. (at 0 0 0)
  306. (effects
  307. (font
  308. (size 1.27 1.27)
  309. )
  310. )
  311. )
  312. (symbol "LMC6042_1_1"
  313. (polyline
  314. (pts
  315. (xy -6.35 5.08) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08)
  316. )
  317. (stroke
  318. (width 0)
  319. (type default)
  320. )
  321. (fill
  322. (type none)
  323. )
  324. )
  325. (pin output line
  326. (at 8.89 0 180)
  327. (length 2.54)
  328. (name "OUT_A"
  329. (effects
  330. (font
  331. (size 1.27 1.27)
  332. )
  333. )
  334. )
  335. (number "1"
  336. (effects
  337. (font
  338. (size 1.27 1.27)
  339. )
  340. )
  341. )
  342. )
  343. (pin input line
  344. (at -8.89 2.54 0)
  345. (length 2.54)
  346. (name "V-"
  347. (effects
  348. (font
  349. (size 1.27 1.27)
  350. )
  351. )
  352. )
  353. (number "2"
  354. (effects
  355. (font
  356. (size 1.27 1.27)
  357. )
  358. )
  359. )
  360. )
  361. (pin input line
  362. (at -8.89 -2.54 0)
  363. (length 2.54)
  364. (name "V+"
  365. (effects
  366. (font
  367. (size 1.27 1.27)
  368. )
  369. )
  370. )
  371. (number "3"
  372. (effects
  373. (font
  374. (size 1.27 1.27)
  375. )
  376. )
  377. )
  378. )
  379. )
  380. (symbol "LMC6042_2_1"
  381. (polyline
  382. (pts
  383. (xy -6.35 3.81) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08) (xy -6.35 3.81)
  384. )
  385. (stroke
  386. (width 0)
  387. (type default)
  388. )
  389. (fill
  390. (type none)
  391. )
  392. )
  393. (pin input line
  394. (at -8.89 -2.54 0)
  395. (length 2.54)
  396. (name "V+"
  397. (effects
  398. (font
  399. (size 1.27 1.27)
  400. )
  401. )
  402. )
  403. (number "5"
  404. (effects
  405. (font
  406. (size 1.27 1.27)
  407. )
  408. )
  409. )
  410. )
  411. (pin input line
  412. (at -8.89 2.54 0)
  413. (length 2.54)
  414. (name "V-"
  415. (effects
  416. (font
  417. (size 1.27 1.27)
  418. )
  419. )
  420. )
  421. (number "6"
  422. (effects
  423. (font
  424. (size 1.27 1.27)
  425. )
  426. )
  427. )
  428. )
  429. (pin output line
  430. (at 8.89 0 180)
  431. (length 2.54)
  432. (name "OUT_A"
  433. (effects
  434. (font
  435. (size 1.27 1.27)
  436. )
  437. )
  438. )
  439. (number "7"
  440. (effects
  441. (font
  442. (size 1.27 1.27)
  443. )
  444. )
  445. )
  446. )
  447. )
  448. (symbol "LMC6042_3_1"
  449. (rectangle
  450. (start -2.54 2.54)
  451. (end 2.54 -2.54)
  452. (stroke
  453. (width 0)
  454. (type default)
  455. )
  456. (fill
  457. (type none)
  458. )
  459. )
  460. (pin power_in line
  461. (at -5.08 1.27 0)
  462. (length 2.54)
  463. (name "GND"
  464. (effects
  465. (font
  466. (size 1.27 1.27)
  467. )
  468. )
  469. )
  470. (number "4"
  471. (effects
  472. (font
  473. (size 1.27 1.27)
  474. )
  475. )
  476. )
  477. )
  478. (pin power_in line
  479. (at -5.08 -1.27 0)
  480. (length 2.54)
  481. (name "VCC"
  482. (effects
  483. (font
  484. (size 1.27 1.27)
  485. )
  486. )
  487. )
  488. (number "8"
  489. (effects
  490. (font
  491. (size 1.27 1.27)
  492. )
  493. )
  494. )
  495. )
  496. )
  497. )
  498. (symbol "conn:CONN_01X04"
  499. (pin_names
  500. (offset 1.016) hide)
  501. (exclude_from_sim no)
  502. (in_bom yes)
  503. (on_board yes)
  504. (property "Reference" "P"
  505. (at 0 6.35 0)
  506. (effects
  507. (font
  508. (size 1.27 1.27)
  509. )
  510. )
  511. )
  512. (property "Value" "CONN_01X04"
  513. (at 2.54 0 90)
  514. (effects
  515. (font
  516. (size 1.27 1.27)
  517. )
  518. )
  519. )
  520. (property "Footprint" ""
  521. (at 0 0 0)
  522. (effects
  523. (font
  524. (size 1.27 1.27)
  525. )
  526. )
  527. )
  528. (property "Datasheet" ""
  529. (at 0 0 0)
  530. (effects
  531. (font
  532. (size 1.27 1.27)
  533. )
  534. )
  535. )
  536. (property "Description" ""
  537. (at 0 0 0)
  538. (effects
  539. (font
  540. (size 1.27 1.27)
  541. )
  542. (hide yes)
  543. )
  544. )
  545. (property "ki_fp_filters" "Pin_Header_Straight_1X04 Pin_Header_Angled_1X04 Socket_Strip_Straight_1X04 Socket_Strip_Angled_1X04"
  546. (at 0 0 0)
  547. (effects
  548. (font
  549. (size 1.27 1.27)
  550. )
  551. (hide yes)
  552. )
  553. )
  554. (symbol "CONN_01X04_0_1"
  555. (rectangle
  556. (start -1.27 -3.683)
  557. (end 0.254 -3.937)
  558. (stroke
  559. (width 0)
  560. (type default)
  561. )
  562. (fill
  563. (type none)
  564. )
  565. )
  566. (rectangle
  567. (start -1.27 -1.143)
  568. (end 0.254 -1.397)
  569. (stroke
  570. (width 0)
  571. (type default)
  572. )
  573. (fill
  574. (type none)
  575. )
  576. )
  577. (rectangle
  578. (start -1.27 1.397)
  579. (end 0.254 1.143)
  580. (stroke
  581. (width 0)
  582. (type default)
  583. )
  584. (fill
  585. (type none)
  586. )
  587. )
  588. (rectangle
  589. (start -1.27 3.937)
  590. (end 0.254 3.683)
  591. (stroke
  592. (width 0)
  593. (type default)
  594. )
  595. (fill
  596. (type none)
  597. )
  598. )
  599. (rectangle
  600. (start -1.27 5.08)
  601. (end 1.27 -5.08)
  602. (stroke
  603. (width 0)
  604. (type default)
  605. )
  606. (fill
  607. (type none)
  608. )
  609. )
  610. )
  611. (symbol "CONN_01X04_1_1"
  612. (pin passive line
  613. (at -5.08 3.81 0)
  614. (length 3.81)
  615. (name "P1"
  616. (effects
  617. (font
  618. (size 1.27 1.27)
  619. )
  620. )
  621. )
  622. (number "1"
  623. (effects
  624. (font
  625. (size 1.27 1.27)
  626. )
  627. )
  628. )
  629. )
  630. (pin passive line
  631. (at -5.08 1.27 0)
  632. (length 3.81)
  633. (name "P2"
  634. (effects
  635. (font
  636. (size 1.27 1.27)
  637. )
  638. )
  639. )
  640. (number "2"
  641. (effects
  642. (font
  643. (size 1.27 1.27)
  644. )
  645. )
  646. )
  647. )
  648. (pin passive line
  649. (at -5.08 -1.27 0)
  650. (length 3.81)
  651. (name "P3"
  652. (effects
  653. (font
  654. (size 1.27 1.27)
  655. )
  656. )
  657. )
  658. (number "3"
  659. (effects
  660. (font
  661. (size 1.27 1.27)
  662. )
  663. )
  664. )
  665. )
  666. (pin passive line
  667. (at -5.08 -3.81 0)
  668. (length 3.81)
  669. (name "P4"
  670. (effects
  671. (font
  672. (size 1.27 1.27)
  673. )
  674. )
  675. )
  676. (number "4"
  677. (effects
  678. (font
  679. (size 1.27 1.27)
  680. )
  681. )
  682. )
  683. )
  684. )
  685. )
  686. (symbol "global:C"
  687. (pin_numbers hide)
  688. (pin_names
  689. (offset 0.254)
  690. )
  691. (exclude_from_sim no)
  692. (in_bom yes)
  693. (on_board yes)
  694. (property "Reference" "C"
  695. (at 0.635 2.54 0)
  696. (effects
  697. (font
  698. (size 1.27 1.27)
  699. )
  700. (justify left)
  701. )
  702. )
  703. (property "Value" "C"
  704. (at 0.635 -2.54 0)
  705. (effects
  706. (font
  707. (size 1.27 1.27)
  708. )
  709. (justify left)
  710. )
  711. )
  712. (property "Footprint" ""
  713. (at 0.9652 -3.81 0)
  714. (effects
  715. (font
  716. (size 1.27 1.27)
  717. )
  718. )
  719. )
  720. (property "Datasheet" ""
  721. (at 0 0 0)
  722. (effects
  723. (font
  724. (size 1.27 1.27)
  725. )
  726. )
  727. )
  728. (property "Description" ""
  729. (at 0 0 0)
  730. (effects
  731. (font
  732. (size 1.27 1.27)
  733. )
  734. (hide yes)
  735. )
  736. )
  737. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*"
  738. (at 0 0 0)
  739. (effects
  740. (font
  741. (size 1.27 1.27)
  742. )
  743. (hide yes)
  744. )
  745. )
  746. (symbol "C_0_1"
  747. (polyline
  748. (pts
  749. (xy -2.032 -0.762) (xy 2.032 -0.762)
  750. )
  751. (stroke
  752. (width 0.508)
  753. (type default)
  754. )
  755. (fill
  756. (type none)
  757. )
  758. )
  759. (polyline
  760. (pts
  761. (xy -2.032 0.762) (xy 2.032 0.762)
  762. )
  763. (stroke
  764. (width 0.508)
  765. (type default)
  766. )
  767. (fill
  768. (type none)
  769. )
  770. )
  771. )
  772. (symbol "C_1_1"
  773. (pin passive line
  774. (at 0 3.81 270)
  775. (length 2.794)
  776. (name "~"
  777. (effects
  778. (font
  779. (size 1.016 1.016)
  780. )
  781. )
  782. )
  783. (number "1"
  784. (effects
  785. (font
  786. (size 1.016 1.016)
  787. )
  788. )
  789. )
  790. )
  791. (pin passive line
  792. (at 0 -3.81 90)
  793. (length 2.794)
  794. (name "~"
  795. (effects
  796. (font
  797. (size 1.016 1.016)
  798. )
  799. )
  800. )
  801. (number "2"
  802. (effects
  803. (font
  804. (size 1.016 1.016)
  805. )
  806. )
  807. )
  808. )
  809. )
  810. )
  811. (symbol "global:R"
  812. (pin_numbers hide)
  813. (pin_names
  814. (offset 0)
  815. )
  816. (exclude_from_sim no)
  817. (in_bom yes)
  818. (on_board yes)
  819. (property "Reference" "R"
  820. (at 2.032 0 90)
  821. (effects
  822. (font
  823. (size 1.27 1.27)
  824. )
  825. )
  826. )
  827. (property "Value" "R"
  828. (at 0 0 90)
  829. (effects
  830. (font
  831. (size 1.27 1.27)
  832. )
  833. )
  834. )
  835. (property "Footprint" ""
  836. (at -1.778 0 90)
  837. (effects
  838. (font
  839. (size 1.27 1.27)
  840. )
  841. )
  842. )
  843. (property "Datasheet" ""
  844. (at 0 0 0)
  845. (effects
  846. (font
  847. (size 1.27 1.27)
  848. )
  849. )
  850. )
  851. (property "Description" ""
  852. (at 0 0 0)
  853. (effects
  854. (font
  855. (size 1.27 1.27)
  856. )
  857. (hide yes)
  858. )
  859. )
  860. (property "ki_fp_filters" "R_* Resistor_*"
  861. (at 0 0 0)
  862. (effects
  863. (font
  864. (size 1.27 1.27)
  865. )
  866. (hide yes)
  867. )
  868. )
  869. (symbol "R_0_1"
  870. (rectangle
  871. (start -1.016 -2.54)
  872. (end 1.016 2.54)
  873. (stroke
  874. (width 0.254)
  875. (type default)
  876. )
  877. (fill
  878. (type none)
  879. )
  880. )
  881. )
  882. (symbol "R_1_1"
  883. (pin passive line
  884. (at 0 3.81 270)
  885. (length 1.27)
  886. (name "~"
  887. (effects
  888. (font
  889. (size 1.27 1.27)
  890. )
  891. )
  892. )
  893. (number "1"
  894. (effects
  895. (font
  896. (size 1.27 1.27)
  897. )
  898. )
  899. )
  900. )
  901. (pin passive line
  902. (at 0 -3.81 90)
  903. (length 1.27)
  904. (name "~"
  905. (effects
  906. (font
  907. (size 1.27 1.27)
  908. )
  909. )
  910. )
  911. (number "2"
  912. (effects
  913. (font
  914. (size 1.27 1.27)
  915. )
  916. )
  917. )
  918. )
  919. )
  920. )
  921. )
  922. (junction
  923. (at 104.14 25.4)
  924. (diameter 0)
  925. (color 0 0 0 0)
  926. (uuid "043d729b-ac45-4129-88e5-fa725588f329")
  927. )
  928. (junction
  929. (at 104.14 33.02)
  930. (diameter 0)
  931. (color 0 0 0 0)
  932. (uuid "0968ab04-0f6f-4d80-8973-539ec48f8eda")
  933. )
  934. (junction
  935. (at 168.91 34.29)
  936. (diameter 0)
  937. (color 0 0 0 0)
  938. (uuid "1b35895e-756a-4adf-b88a-cd824a6a9057")
  939. )
  940. (junction
  941. (at 33.02 123.19)
  942. (diameter 0)
  943. (color 0 0 0 0)
  944. (uuid "20459844-674c-438d-820a-4ca4698e758a")
  945. )
  946. (junction
  947. (at 29.21 30.48)
  948. (diameter 0)
  949. (color 0 0 0 0)
  950. (uuid "22eb2236-ebe8-40c3-98a7-29b8e8f83613")
  951. )
  952. (junction
  953. (at 62.23 120.65)
  954. (diameter 0)
  955. (color 0 0 0 0)
  956. (uuid "2e6dd6f2-be42-42b4-bb2e-896a1d1f6e20")
  957. )
  958. (junction
  959. (at 34.29 30.48)
  960. (diameter 0)
  961. (color 0 0 0 0)
  962. (uuid "3760b5ea-8eb7-49b3-96d3-65d614024002")
  963. )
  964. (junction
  965. (at 168.91 31.75)
  966. (diameter 0)
  967. (color 0 0 0 0)
  968. (uuid "4da4aecc-7606-4162-a4c3-c96c6e069888")
  969. )
  970. (junction
  971. (at 39.37 25.4)
  972. (diameter 0)
  973. (color 0 0 0 0)
  974. (uuid "4ed57a30-4e48-4423-9af1-f843192a46cd")
  975. )
  976. (junction
  977. (at 118.11 118.11)
  978. (diameter 0)
  979. (color 0 0 0 0)
  980. (uuid "75f82d83-afeb-4fa6-90fb-f36ce623657e")
  981. )
  982. (junction
  983. (at 38.1 123.19)
  984. (diameter 0)
  985. (color 0 0 0 0)
  986. (uuid "9163a927-afac-4726-a6ba-ebe965934f1b")
  987. )
  988. (junction
  989. (at 110.49 25.4)
  990. (diameter 0)
  991. (color 0 0 0 0)
  992. (uuid "96586a02-0dd6-4206-86f2-d63e4a1e6c66")
  993. )
  994. (junction
  995. (at 64.77 120.65)
  996. (diameter 0)
  997. (color 0 0 0 0)
  998. (uuid "9d6f2062-9c2f-4ae6-9336-0e0f15693e8d")
  999. )
  1000. (junction
  1001. (at 158.75 29.21)
  1002. (diameter 0)
  1003. (color 0 0 0 0)
  1004. (uuid "9e1ddab4-37f3-4c4a-a9ef-3912b3634fc9")
  1005. )
  1006. (junction
  1007. (at 58.42 27.94)
  1008. (diameter 0)
  1009. (color 0 0 0 0)
  1010. (uuid "bd6f52fd-d314-4ae9-b83c-422191466a41")
  1011. )
  1012. (junction
  1013. (at 118.11 120.65)
  1014. (diameter 0)
  1015. (color 0 0 0 0)
  1016. (uuid "c5a4ba02-3cd2-4e59-b1ed-9009128d243a")
  1017. )
  1018. (junction
  1019. (at 43.18 118.11)
  1020. (diameter 0)
  1021. (color 0 0 0 0)
  1022. (uuid "d405422a-6058-4e68-bf7f-7cb8534aef1d")
  1023. )
  1024. (junction
  1025. (at 60.96 27.94)
  1026. (diameter 0)
  1027. (color 0 0 0 0)
  1028. (uuid "d90a8cc5-0b53-4b9b-ae58-fa27f1d40d7a")
  1029. )
  1030. (junction
  1031. (at 34.29 25.4)
  1032. (diameter 0)
  1033. (color 0 0 0 0)
  1034. (uuid "dd8c5bb9-c5ab-4d0e-bce0-9f10ebea560c")
  1035. )
  1036. (junction
  1037. (at 107.95 115.57)
  1038. (diameter 0)
  1039. (color 0 0 0 0)
  1040. (uuid "e1ba7a5d-1c73-4fb7-9547-987daad1255e")
  1041. )
  1042. (junction
  1043. (at 110.49 33.02)
  1044. (diameter 0)
  1045. (color 0 0 0 0)
  1046. (uuid "e6ee37cb-bd58-4928-8835-bc498c0135fa")
  1047. )
  1048. (junction
  1049. (at 38.1 118.11)
  1050. (diameter 0)
  1051. (color 0 0 0 0)
  1052. (uuid "ff2587a3-620e-4053-9057-caafdcbf876a")
  1053. )
  1054. (no_connect
  1055. (at 90.17 25.4)
  1056. (uuid "588dbfb5-a05a-4602-9f8d-c18726f14ba2")
  1057. )
  1058. (no_connect
  1059. (at 72.39 22.86)
  1060. (uuid "9bc27a28-5721-417d-9451-3ac4924945d8")
  1061. )
  1062. (no_connect
  1063. (at 72.39 27.94)
  1064. (uuid "b2e7dc01-ae78-443e-bd94-84b2759b602e")
  1065. )
  1066. (wire
  1067. (pts
  1068. (xy 29.21 25.4) (xy 34.29 25.4)
  1069. )
  1070. (stroke
  1071. (width 0)
  1072. (type default)
  1073. )
  1074. (uuid "0263b06e-3a41-4419-8159-010786d589bd")
  1075. )
  1076. (wire
  1077. (pts
  1078. (xy 66.04 120.65) (xy 64.77 120.65)
  1079. )
  1080. (stroke
  1081. (width 0)
  1082. (type default)
  1083. )
  1084. (uuid "03e7cbd6-4e2b-450b-941a-cde9aa171ae6")
  1085. )
  1086. (wire
  1087. (pts
  1088. (xy 118.11 118.11) (xy 127 118.11)
  1089. )
  1090. (stroke
  1091. (width 0)
  1092. (type default)
  1093. )
  1094. (uuid "0602af6b-abc6-40ec-9b62-3f813954c1b4")
  1095. )
  1096. (wire
  1097. (pts
  1098. (xy 33.02 123.19) (xy 38.1 123.19)
  1099. )
  1100. (stroke
  1101. (width 0)
  1102. (type default)
  1103. )
  1104. (uuid "0f0c0834-d500-43f9-8b31-de2ed0e53572")
  1105. )
  1106. (wire
  1107. (pts
  1108. (xy 59.69 24.13) (xy 59.69 19.05)
  1109. )
  1110. (stroke
  1111. (width 0)
  1112. (type default)
  1113. )
  1114. (uuid "0f7ea0c8-8b11-4603-ae0f-1e5e71a9bbcb")
  1115. )
  1116. (wire
  1117. (pts
  1118. (xy 101.6 25.4) (xy 104.14 25.4)
  1119. )
  1120. (stroke
  1121. (width 0)
  1122. (type default)
  1123. )
  1124. (uuid "0fcfa773-bbb7-4dfa-9bc8-7c55d62507e3")
  1125. )
  1126. (wire
  1127. (pts
  1128. (xy 104.14 33.02) (xy 110.49 33.02)
  1129. )
  1130. (stroke
  1131. (width 0)
  1132. (type default)
  1133. )
  1134. (uuid "17ae09dc-19f2-4259-9fcb-b6e4a75493f7")
  1135. )
  1136. (wire
  1137. (pts
  1138. (xy 29.21 30.48) (xy 34.29 30.48)
  1139. )
  1140. (stroke
  1141. (width 0)
  1142. (type default)
  1143. )
  1144. (uuid "18bac354-e9e7-4396-8523-12b65d121a89")
  1145. )
  1146. (wire
  1147. (pts
  1148. (xy 118.11 25.4) (xy 118.11 27.94)
  1149. )
  1150. (stroke
  1151. (width 0)
  1152. (type default)
  1153. )
  1154. (uuid "1f1246e3-75d6-46cb-8bce-d6011daba9e9")
  1155. )
  1156. (wire
  1157. (pts
  1158. (xy 168.91 31.75) (xy 177.8 31.75)
  1159. )
  1160. (stroke
  1161. (width 0)
  1162. (type default)
  1163. )
  1164. (uuid "25f6c3bf-ec93-4730-8c78-71dcc11e4198")
  1165. )
  1166. (wire
  1167. (pts
  1168. (xy 162.56 29.21) (xy 158.75 29.21)
  1169. )
  1170. (stroke
  1171. (width 0)
  1172. (type default)
  1173. )
  1174. (uuid "2a649aa8-4817-401e-a053-8b6c3035b57a")
  1175. )
  1176. (wire
  1177. (pts
  1178. (xy 118.11 33.02) (xy 118.11 30.48)
  1179. )
  1180. (stroke
  1181. (width 0)
  1182. (type default)
  1183. )
  1184. (uuid "30fbded6-9b68-4fc2-bf0f-33b5e237670c")
  1185. )
  1186. (wire
  1187. (pts
  1188. (xy 64.77 116.84) (xy 63.5 116.84)
  1189. )
  1190. (stroke
  1191. (width 0)
  1192. (type default)
  1193. )
  1194. (uuid "31ad3020-5a51-4fe9-928a-e07c476a3ae2")
  1195. )
  1196. (wire
  1197. (pts
  1198. (xy 101.6 33.02) (xy 104.14 33.02)
  1199. )
  1200. (stroke
  1201. (width 0)
  1202. (type default)
  1203. )
  1204. (uuid "36ad8b25-5a42-475c-b917-4980e1a96d87")
  1205. )
  1206. (wire
  1207. (pts
  1208. (xy 107.95 115.57) (xy 102.87 115.57)
  1209. )
  1210. (stroke
  1211. (width 0)
  1212. (type default)
  1213. )
  1214. (uuid "36b32a9e-a673-454a-b215-2a7881b44a41")
  1215. )
  1216. (wire
  1217. (pts
  1218. (xy 118.11 120.65) (xy 127 120.65)
  1219. )
  1220. (stroke
  1221. (width 0)
  1222. (type default)
  1223. )
  1224. (uuid "3ac36798-7bd2-4797-9f7b-667768a17735")
  1225. )
  1226. (wire
  1227. (pts
  1228. (xy 33.02 118.11) (xy 38.1 118.11)
  1229. )
  1230. (stroke
  1231. (width 0)
  1232. (type default)
  1233. )
  1234. (uuid "4109007f-34f9-404d-8326-4092ed2b99b0")
  1235. )
  1236. (wire
  1237. (pts
  1238. (xy 38.1 118.11) (xy 43.18 118.11)
  1239. )
  1240. (stroke
  1241. (width 0)
  1242. (type default)
  1243. )
  1244. (uuid "48b8fedf-fbb6-4ec5-95a9-de415389ccae")
  1245. )
  1246. (wire
  1247. (pts
  1248. (xy 46.99 19.05) (xy 39.37 19.05)
  1249. )
  1250. (stroke
  1251. (width 0)
  1252. (type default)
  1253. )
  1254. (uuid "4b9f329b-a4e1-4def-b087-d31c228cdf64")
  1255. )
  1256. (wire
  1257. (pts
  1258. (xy 29.21 39.37) (xy 29.21 38.1)
  1259. )
  1260. (stroke
  1261. (width 0)
  1262. (type default)
  1263. )
  1264. (uuid "4c592c43-7827-4da5-95a1-022116017dad")
  1265. )
  1266. (wire
  1267. (pts
  1268. (xy 104.14 25.4) (xy 110.49 25.4)
  1269. )
  1270. (stroke
  1271. (width 0)
  1272. (type default)
  1273. )
  1274. (uuid "5413449d-e18c-4c7f-99e6-743ccc41e7fa")
  1275. )
  1276. (wire
  1277. (pts
  1278. (xy 63.5 111.76) (xy 58.42 111.76)
  1279. )
  1280. (stroke
  1281. (width 0)
  1282. (type default)
  1283. )
  1284. (uuid "545ad2d1-0089-470d-8442-22fe75a4e108")
  1285. )
  1286. (wire
  1287. (pts
  1288. (xy 50.8 111.76) (xy 43.18 111.76)
  1289. )
  1290. (stroke
  1291. (width 0)
  1292. (type default)
  1293. )
  1294. (uuid "56afbe2b-f9b7-4032-a9e5-526a129c8d9f")
  1295. )
  1296. (wire
  1297. (pts
  1298. (xy 111.76 115.57) (xy 107.95 115.57)
  1299. )
  1300. (stroke
  1301. (width 0)
  1302. (type default)
  1303. )
  1304. (uuid "60fb41e1-7993-47a8-b9f9-309a66f2e908")
  1305. )
  1306. (wire
  1307. (pts
  1308. (xy 110.49 25.4) (xy 118.11 25.4)
  1309. )
  1310. (stroke
  1311. (width 0)
  1312. (type default)
  1313. )
  1314. (uuid "691f5602-4f37-4039-af1b-46fee3921630")
  1315. )
  1316. (wire
  1317. (pts
  1318. (xy 168.91 34.29) (xy 177.8 34.29)
  1319. )
  1320. (stroke
  1321. (width 0)
  1322. (type default)
  1323. )
  1324. (uuid "762cdcd6-a9ff-4e5c-8058-9309fbc327d5")
  1325. )
  1326. (wire
  1327. (pts
  1328. (xy 64.77 116.84) (xy 64.77 120.65)
  1329. )
  1330. (stroke
  1331. (width 0)
  1332. (type default)
  1333. )
  1334. (uuid "85c68c0a-51d3-4b8c-aae0-ac3dbabe855b")
  1335. )
  1336. (wire
  1337. (pts
  1338. (xy 59.69 19.05) (xy 54.61 19.05)
  1339. )
  1340. (stroke
  1341. (width 0)
  1342. (type default)
  1343. )
  1344. (uuid "8d3679d4-a51d-44c8-b733-0eba8e650e81")
  1345. )
  1346. (wire
  1347. (pts
  1348. (xy 34.29 30.48) (xy 39.37 30.48)
  1349. )
  1350. (stroke
  1351. (width 0)
  1352. (type default)
  1353. )
  1354. (uuid "8dd613f6-45f2-4df4-9eb7-7928cdc124f0")
  1355. )
  1356. (wire
  1357. (pts
  1358. (xy 60.96 120.65) (xy 62.23 120.65)
  1359. )
  1360. (stroke
  1361. (width 0)
  1362. (type default)
  1363. )
  1364. (uuid "931fd2a2-9313-43ec-a991-7025c2193c1d")
  1365. )
  1366. (wire
  1367. (pts
  1368. (xy 60.96 24.13) (xy 60.96 27.94)
  1369. )
  1370. (stroke
  1371. (width 0)
  1372. (type default)
  1373. )
  1374. (uuid "9619c47f-2362-45aa-aff7-7a0cb5c30b6b")
  1375. )
  1376. (wire
  1377. (pts
  1378. (xy 62.23 120.65) (xy 64.77 120.65)
  1379. )
  1380. (stroke
  1381. (width 0)
  1382. (type default)
  1383. )
  1384. (uuid "a95f827f-81f4-48b6-a1a9-cf492f694aa9")
  1385. )
  1386. (wire
  1387. (pts
  1388. (xy 168.91 34.29) (xy 153.67 34.29)
  1389. )
  1390. (stroke
  1391. (width 0)
  1392. (type default)
  1393. )
  1394. (uuid "b08784ad-a00a-4809-8fda-87fb9dd382de")
  1395. )
  1396. (wire
  1397. (pts
  1398. (xy 39.37 19.05) (xy 39.37 25.4)
  1399. )
  1400. (stroke
  1401. (width 0)
  1402. (type default)
  1403. )
  1404. (uuid "c01da7db-18ef-4377-b8ef-8271cbadc624")
  1405. )
  1406. (wire
  1407. (pts
  1408. (xy 58.42 27.94) (xy 60.96 27.94)
  1409. )
  1410. (stroke
  1411. (width 0)
  1412. (type default)
  1413. )
  1414. (uuid "c0fd8347-2556-4a13-90cc-9a3dd230cbe1")
  1415. )
  1416. (wire
  1417. (pts
  1418. (xy 38.1 123.19) (xy 43.18 123.19)
  1419. )
  1420. (stroke
  1421. (width 0)
  1422. (type default)
  1423. )
  1424. (uuid "c34e3e95-a87f-47e9-87b4-b7c8dd4bb839")
  1425. )
  1426. (wire
  1427. (pts
  1428. (xy 60.96 24.13) (xy 59.69 24.13)
  1429. )
  1430. (stroke
  1431. (width 0)
  1432. (type default)
  1433. )
  1434. (uuid "cb6c5390-1083-485b-be3b-5a0d6ae7a156")
  1435. )
  1436. (wire
  1437. (pts
  1438. (xy 34.29 25.4) (xy 39.37 25.4)
  1439. )
  1440. (stroke
  1441. (width 0)
  1442. (type default)
  1443. )
  1444. (uuid "d3890434-46cb-49c0-a279-149e49feac4e")
  1445. )
  1446. (wire
  1447. (pts
  1448. (xy 118.11 118.11) (xy 102.87 118.11)
  1449. )
  1450. (stroke
  1451. (width 0)
  1452. (type default)
  1453. )
  1454. (uuid "d7977b0c-276a-4399-9c15-23aa9ee581f1")
  1455. )
  1456. (wire
  1457. (pts
  1458. (xy 63.5 116.84) (xy 63.5 111.76)
  1459. )
  1460. (stroke
  1461. (width 0)
  1462. (type default)
  1463. )
  1464. (uuid "d896bc14-72e5-4a56-a135-5a732c87b6bd")
  1465. )
  1466. (wire
  1467. (pts
  1468. (xy 62.23 27.94) (xy 60.96 27.94)
  1469. )
  1470. (stroke
  1471. (width 0)
  1472. (type default)
  1473. )
  1474. (uuid "e0bd636f-ca09-4b1c-be48-1cf7720c528b")
  1475. )
  1476. (wire
  1477. (pts
  1478. (xy 57.15 27.94) (xy 58.42 27.94)
  1479. )
  1480. (stroke
  1481. (width 0)
  1482. (type default)
  1483. )
  1484. (uuid "eda63414-8b66-4285-aa11-9c55f0fcac45")
  1485. )
  1486. (wire
  1487. (pts
  1488. (xy 118.11 120.65) (xy 102.87 120.65)
  1489. )
  1490. (stroke
  1491. (width 0)
  1492. (type default)
  1493. )
  1494. (uuid "f0a52cde-61f4-42b3-bb6d-2f2d154c6757")
  1495. )
  1496. (wire
  1497. (pts
  1498. (xy 158.75 29.21) (xy 153.67 29.21)
  1499. )
  1500. (stroke
  1501. (width 0)
  1502. (type default)
  1503. )
  1504. (uuid "f3492184-25b4-4ccd-aeac-fe811d840251")
  1505. )
  1506. (wire
  1507. (pts
  1508. (xy 168.91 31.75) (xy 153.67 31.75)
  1509. )
  1510. (stroke
  1511. (width 0)
  1512. (type default)
  1513. )
  1514. (uuid "f4546163-675b-4066-86ac-9da33868e7f5")
  1515. )
  1516. (wire
  1517. (pts
  1518. (xy 43.18 111.76) (xy 43.18 118.11)
  1519. )
  1520. (stroke
  1521. (width 0)
  1522. (type default)
  1523. )
  1524. (uuid "f78ca58f-6552-456b-ba49-0f48ea9cc398")
  1525. )
  1526. (wire
  1527. (pts
  1528. (xy 110.49 33.02) (xy 118.11 33.02)
  1529. )
  1530. (stroke
  1531. (width 0)
  1532. (type default)
  1533. )
  1534. (uuid "fe41cc71-36bb-4406-b9a6-379f8b4022e2")
  1535. )
  1536. (text "Option 2 pour 2 Lecture de température\n"
  1537. (exclude_from_sim no)
  1538. (at 70.358 98.552 0)
  1539. (effects
  1540. (font
  1541. (size 2.54 2.54)
  1542. )
  1543. )
  1544. (uuid "40435fae-3309-48fe-8732-e861195d4d27")
  1545. )
  1546. (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"
  1547. (exclude_from_sim no)
  1548. (at 24.13 50.8 0)
  1549. (effects
  1550. (font
  1551. (size 1.27 1.27)
  1552. )
  1553. (justify left bottom)
  1554. )
  1555. (uuid "abd18889-a6a2-44f7-972b-9e7d95be6671")
  1556. )
  1557. (text "le calcul avec une PT1000 :\nI = Vcc/ (Rpt + R14); Vpt=I * Rpt => Vpt=(Vcc/(Rpt+R14))*Rpt\nRpt=(Vpt*R14)/(Vcc-Vpt)\n"
  1558. (exclude_from_sim no)
  1559. (at 74.93 41.91 0)
  1560. (effects
  1561. (font
  1562. (size 1.27 1.27)
  1563. )
  1564. (justify left bottom)
  1565. )
  1566. (uuid "f43c5aa2-57b4-411e-92d4-4f074aecc968")
  1567. )
  1568. (label "V-_2"
  1569. (at 127 120.65 0)
  1570. (fields_autoplaced yes)
  1571. (effects
  1572. (font
  1573. (size 1.27 1.27)
  1574. )
  1575. (justify left bottom)
  1576. )
  1577. (uuid "06911ec3-ad96-4c1a-a0b6-06244ae29234")
  1578. )
  1579. (label "V+"
  1580. (at 21.59 30.48 180)
  1581. (fields_autoplaced yes)
  1582. (effects
  1583. (font
  1584. (size 1.27 1.27)
  1585. )
  1586. (justify right bottom)
  1587. )
  1588. (uuid "0b036745-d7a8-4e6b-920c-3b767fdbdbed")
  1589. )
  1590. (label "V+"
  1591. (at 177.8 31.75 0)
  1592. (fields_autoplaced yes)
  1593. (effects
  1594. (font
  1595. (size 1.27 1.27)
  1596. )
  1597. (justify left bottom)
  1598. )
  1599. (uuid "16a840f0-8b7f-4c24-a57c-dd5daf7a6ace")
  1600. )
  1601. (label "3.3V"
  1602. (at 111.76 107.95 0)
  1603. (fields_autoplaced yes)
  1604. (effects
  1605. (font
  1606. (size 1.27 1.27)
  1607. )
  1608. (justify left bottom)
  1609. )
  1610. (uuid "2ea21c5f-e90d-473e-8afe-20faa88c1982")
  1611. )
  1612. (label "V-"
  1613. (at 21.59 25.4 180)
  1614. (fields_autoplaced yes)
  1615. (effects
  1616. (font
  1617. (size 1.27 1.27)
  1618. )
  1619. (justify right bottom)
  1620. )
  1621. (uuid "33c8d568-557e-4b98-b058-521af5b316f3")
  1622. )
  1623. (label "V+_2"
  1624. (at 127 118.11 0)
  1625. (fields_autoplaced yes)
  1626. (effects
  1627. (font
  1628. (size 1.27 1.27)
  1629. )
  1630. (justify left bottom)
  1631. )
  1632. (uuid "43d40828-87f2-4ad2-847e-3e989bfef536")
  1633. )
  1634. (label "OUT1"
  1635. (at 62.23 27.94 0)
  1636. (fields_autoplaced yes)
  1637. (effects
  1638. (font
  1639. (size 1.27 1.27)
  1640. )
  1641. (justify left bottom)
  1642. )
  1643. (uuid "699179e1-818b-4d07-8ada-1fc54a72feb0")
  1644. )
  1645. (label "3.3V"
  1646. (at 162.56 21.59 0)
  1647. (fields_autoplaced yes)
  1648. (effects
  1649. (font
  1650. (size 1.27 1.27)
  1651. )
  1652. (justify left bottom)
  1653. )
  1654. (uuid "6b6c34ec-8c4c-4adc-b2a8-69d5c62f2ad6")
  1655. )
  1656. (label "GND"
  1657. (at 102.87 123.19 0)
  1658. (fields_autoplaced yes)
  1659. (effects
  1660. (font
  1661. (size 1.27 1.27)
  1662. )
  1663. (justify left bottom)
  1664. )
  1665. (uuid "73d239b2-b4e6-49fb-97ff-ea449b5f1a3d")
  1666. )
  1667. (label "V-_2"
  1668. (at 25.4 118.11 180)
  1669. (fields_autoplaced yes)
  1670. (effects
  1671. (font
  1672. (size 1.27 1.27)
  1673. )
  1674. (justify right bottom)
  1675. )
  1676. (uuid "74918531-495d-4ba2-8f41-cecb0dcc54ea")
  1677. )
  1678. (label "3.3V"
  1679. (at 101.6 33.02 180)
  1680. (fields_autoplaced yes)
  1681. (effects
  1682. (font
  1683. (size 1.27 1.27)
  1684. )
  1685. (justify right bottom)
  1686. )
  1687. (uuid "75dbc9c7-ad3a-472d-8bff-50b2ce5b43e5")
  1688. )
  1689. (label "V+_2"
  1690. (at 25.4 123.19 180)
  1691. (fields_autoplaced yes)
  1692. (effects
  1693. (font
  1694. (size 1.27 1.27)
  1695. )
  1696. (justify right bottom)
  1697. )
  1698. (uuid "9ac6170f-4f33-4242-b04b-34e1b3cfd73f")
  1699. )
  1700. (label "OUT1"
  1701. (at 66.04 120.65 0)
  1702. (fields_autoplaced yes)
  1703. (effects
  1704. (font
  1705. (size 1.27 1.27)
  1706. )
  1707. (justify left bottom)
  1708. )
  1709. (uuid "a7fd7765-0a38-48e4-95ab-0fcb647e02f4")
  1710. )
  1711. (label "GND"
  1712. (at 153.67 36.83 0)
  1713. (fields_autoplaced yes)
  1714. (effects
  1715. (font
  1716. (size 1.27 1.27)
  1717. )
  1718. (justify left bottom)
  1719. )
  1720. (uuid "c281aa2c-488b-4912-ab88-62d9652999a9")
  1721. )
  1722. (label "GND"
  1723. (at 101.6 25.4 180)
  1724. (fields_autoplaced yes)
  1725. (effects
  1726. (font
  1727. (size 1.27 1.27)
  1728. )
  1729. (justify right bottom)
  1730. )
  1731. (uuid "de17ffc1-bf39-4a62-a7c1-06eba81bea96")
  1732. )
  1733. (label "V-"
  1734. (at 177.8 34.29 0)
  1735. (fields_autoplaced yes)
  1736. (effects
  1737. (font
  1738. (size 1.27 1.27)
  1739. )
  1740. (justify left bottom)
  1741. )
  1742. (uuid "e8439e50-27b8-449c-837f-35ef597eb1b5")
  1743. )
  1744. (label "GND"
  1745. (at 29.21 39.37 0)
  1746. (fields_autoplaced yes)
  1747. (effects
  1748. (font
  1749. (size 1.27 1.27)
  1750. )
  1751. (justify left bottom)
  1752. )
  1753. (uuid "fe1de199-ff91-4740-ad80-bd2374f0177d")
  1754. )
  1755. (symbol
  1756. (lib_name "TEST_1P_8")
  1757. (lib_id "conn:TEST_1P")
  1758. (at 118.11 120.65 0)
  1759. (unit 1)
  1760. (exclude_from_sim no)
  1761. (in_bom yes)
  1762. (on_board yes)
  1763. (dnp no)
  1764. (uuid "07114620-44dc-4329-ad8e-8563619b58fc")
  1765. (property "Reference" "PT?"
  1766. (at 116.84 123.19 0)
  1767. (effects
  1768. (font
  1769. (size 1.27 1.27)
  1770. )
  1771. (justify left)
  1772. )
  1773. )
  1774. (property "Value" "Temp_V-"
  1775. (at 120.65 118.6179 0)
  1776. (effects
  1777. (font
  1778. (size 1.27 1.27)
  1779. )
  1780. (justify left)
  1781. (hide yes)
  1782. )
  1783. )
  1784. (property "Footprint" "PinHeader:PinHeader1"
  1785. (at 123.19 120.65 0)
  1786. (effects
  1787. (font
  1788. (size 1.27 1.27)
  1789. )
  1790. (hide yes)
  1791. )
  1792. )
  1793. (property "Datasheet" ""
  1794. (at 123.19 120.65 0)
  1795. (effects
  1796. (font
  1797. (size 1.27 1.27)
  1798. )
  1799. )
  1800. )
  1801. (property "Description" ""
  1802. (at 118.11 120.65 0)
  1803. (effects
  1804. (font
  1805. (size 1.27 1.27)
  1806. )
  1807. (hide yes)
  1808. )
  1809. )
  1810. (property "Partkeepr" "N/A"
  1811. (at 118.11 120.65 0)
  1812. (effects
  1813. (font
  1814. (size 1.27 1.27)
  1815. )
  1816. (hide yes)
  1817. )
  1818. )
  1819. (pin "1"
  1820. (uuid "7467e013-f481-4d56-b8a7-7252fce36f8e")
  1821. )
  1822. (instances
  1823. (project "PT1000"
  1824. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  1825. (reference "PT?")
  1826. (unit 1)
  1827. )
  1828. )
  1829. )
  1830. )
  1831. (symbol
  1832. (lib_id "conn:CONN_01X04")
  1833. (at 148.59 33.02 180)
  1834. (unit 1)
  1835. (exclude_from_sim no)
  1836. (in_bom yes)
  1837. (on_board yes)
  1838. (dnp no)
  1839. (uuid "0c9a7f2c-6d4d-43bf-a520-595e90c54f81")
  1840. (property "Reference" "P?"
  1841. (at 148.59 26.67 0)
  1842. (effects
  1843. (font
  1844. (size 1.27 1.27)
  1845. )
  1846. )
  1847. )
  1848. (property "Value" "CONN_01X04"
  1849. (at 146.05 33.02 90)
  1850. (effects
  1851. (font
  1852. (size 1.27 1.27)
  1853. )
  1854. )
  1855. )
  1856. (property "Footprint" "PinHeader:JST_2.54_4"
  1857. (at 148.59 33.02 0)
  1858. (effects
  1859. (font
  1860. (size 1.27 1.27)
  1861. )
  1862. (hide yes)
  1863. )
  1864. )
  1865. (property "Datasheet" ""
  1866. (at 148.59 33.02 0)
  1867. (effects
  1868. (font
  1869. (size 1.27 1.27)
  1870. )
  1871. )
  1872. )
  1873. (property "Description" ""
  1874. (at 148.59 33.02 0)
  1875. (effects
  1876. (font
  1877. (size 1.27 1.27)
  1878. )
  1879. (hide yes)
  1880. )
  1881. )
  1882. (property "Partkeepr" "N/A"
  1883. (at 148.59 33.02 0)
  1884. (effects
  1885. (font
  1886. (size 1.27 1.27)
  1887. )
  1888. (hide yes)
  1889. )
  1890. )
  1891. (pin "1"
  1892. (uuid "c3829ab3-a9b4-4e51-a5fd-a41962e0065b")
  1893. )
  1894. (pin "2"
  1895. (uuid "4d5921d2-2cdc-4e35-a936-350eb3782564")
  1896. )
  1897. (pin "3"
  1898. (uuid "9ee9ff49-5df8-4b8b-9537-b2920fe18af8")
  1899. )
  1900. (pin "4"
  1901. (uuid "480ecd53-6214-4a8d-8232-44232ea6823a")
  1902. )
  1903. (instances
  1904. (project "PT1000"
  1905. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  1906. (reference "P?")
  1907. (unit 1)
  1908. )
  1909. )
  1910. )
  1911. )
  1912. (symbol
  1913. (lib_id "global:C")
  1914. (at 104.14 29.21 0)
  1915. (unit 1)
  1916. (exclude_from_sim no)
  1917. (in_bom yes)
  1918. (on_board yes)
  1919. (dnp no)
  1920. (uuid "0df88abb-f810-4ebd-bcc7-cbf11f16f3ec")
  1921. (property "Reference" "C?"
  1922. (at 104.14 26.67 0)
  1923. (effects
  1924. (font
  1925. (size 1.27 1.27)
  1926. )
  1927. (justify left)
  1928. )
  1929. )
  1930. (property "Value" "4.7µF"
  1931. (at 104.14 31.75 0)
  1932. (effects
  1933. (font
  1934. (size 1.27 1.27)
  1935. )
  1936. (justify left)
  1937. )
  1938. )
  1939. (property "Footprint" "C:0805"
  1940. (at 105.1052 33.02 0)
  1941. (effects
  1942. (font
  1943. (size 1.27 1.27)
  1944. )
  1945. (hide yes)
  1946. )
  1947. )
  1948. (property "Datasheet" ""
  1949. (at 104.14 29.21 0)
  1950. (effects
  1951. (font
  1952. (size 1.27 1.27)
  1953. )
  1954. )
  1955. )
  1956. (property "Description" ""
  1957. (at 104.14 29.21 0)
  1958. (effects
  1959. (font
  1960. (size 1.27 1.27)
  1961. )
  1962. (hide yes)
  1963. )
  1964. )
  1965. (property "Partkeepr" "0607"
  1966. (at 104.14 29.21 0)
  1967. (effects
  1968. (font
  1969. (size 1.27 1.27)
  1970. )
  1971. (hide yes)
  1972. )
  1973. )
  1974. (pin "1"
  1975. (uuid "e93a5e09-7202-49eb-9a60-7e596221718a")
  1976. )
  1977. (pin "2"
  1978. (uuid "9fc7c4be-4cb5-4ffd-af60-bf9f799544ff")
  1979. )
  1980. (instances
  1981. (project "PT1000"
  1982. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  1983. (reference "C?")
  1984. (unit 1)
  1985. )
  1986. )
  1987. )
  1988. )
  1989. (symbol
  1990. (lib_id "global:C")
  1991. (at 110.49 29.21 0)
  1992. (unit 1)
  1993. (exclude_from_sim no)
  1994. (in_bom yes)
  1995. (on_board yes)
  1996. (dnp no)
  1997. (uuid "1612b7e5-6d34-4fa0-b765-ab6d1d8dbbeb")
  1998. (property "Reference" "C?"
  1999. (at 110.49 26.67 0)
  2000. (effects
  2001. (font
  2002. (size 1.27 1.27)
  2003. )
  2004. (justify left)
  2005. )
  2006. )
  2007. (property "Value" "100nF"
  2008. (at 110.49 31.75 0)
  2009. (effects
  2010. (font
  2011. (size 1.27 1.27)
  2012. )
  2013. (justify left)
  2014. )
  2015. )
  2016. (property "Footprint" "C:0805"
  2017. (at 111.4552 33.02 0)
  2018. (effects
  2019. (font
  2020. (size 1.27 1.27)
  2021. )
  2022. (hide yes)
  2023. )
  2024. )
  2025. (property "Datasheet" ""
  2026. (at 110.49 29.21 0)
  2027. (effects
  2028. (font
  2029. (size 1.27 1.27)
  2030. )
  2031. )
  2032. )
  2033. (property "Description" ""
  2034. (at 110.49 29.21 0)
  2035. (effects
  2036. (font
  2037. (size 1.27 1.27)
  2038. )
  2039. (hide yes)
  2040. )
  2041. )
  2042. (property "Partkeepr" "0605"
  2043. (at 110.49 29.21 0)
  2044. (effects
  2045. (font
  2046. (size 1.27 1.27)
  2047. )
  2048. (hide yes)
  2049. )
  2050. )
  2051. (pin "1"
  2052. (uuid "b10b59fc-14c0-4d94-8a61-82bd3ac2ebbb")
  2053. )
  2054. (pin "2"
  2055. (uuid "a1003978-64fc-4458-a4fd-c2e55a169c53")
  2056. )
  2057. (instances
  2058. (project "PT1000"
  2059. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2060. (reference "C?")
  2061. (unit 1)
  2062. )
  2063. )
  2064. )
  2065. )
  2066. (symbol
  2067. (lib_id "TI:LMC6042")
  2068. (at 123.19 29.21 0)
  2069. (unit 3)
  2070. (exclude_from_sim no)
  2071. (in_bom yes)
  2072. (on_board yes)
  2073. (dnp no)
  2074. (fields_autoplaced yes)
  2075. (uuid "29291279-cffb-421a-b720-ab6c3fd1f235")
  2076. (property "Reference" "U?"
  2077. (at 127 27.9399 0)
  2078. (effects
  2079. (font
  2080. (size 1.27 1.27)
  2081. )
  2082. (justify left)
  2083. )
  2084. )
  2085. (property "Value" "LMC6042"
  2086. (at 127 30.4799 0)
  2087. (effects
  2088. (font
  2089. (size 1.27 1.27)
  2090. )
  2091. (justify left)
  2092. )
  2093. )
  2094. (property "Footprint" "U:SO8N"
  2095. (at 123.19 29.21 0)
  2096. (effects
  2097. (font
  2098. (size 1.27 1.27)
  2099. )
  2100. (hide yes)
  2101. )
  2102. )
  2103. (property "Datasheet" ""
  2104. (at 123.19 29.21 0)
  2105. (effects
  2106. (font
  2107. (size 1.27 1.27)
  2108. )
  2109. (hide yes)
  2110. )
  2111. )
  2112. (property "Description" ""
  2113. (at 123.19 29.21 0)
  2114. (effects
  2115. (font
  2116. (size 1.27 1.27)
  2117. )
  2118. (hide yes)
  2119. )
  2120. )
  2121. (property "Partkeepr" "2400"
  2122. (at 123.19 29.21 0)
  2123. (effects
  2124. (font
  2125. (size 1.27 1.27)
  2126. )
  2127. (hide yes)
  2128. )
  2129. )
  2130. (pin "1"
  2131. (uuid "21b5e26a-f52c-4561-a8c6-a5cd4b8c2082")
  2132. )
  2133. (pin "2"
  2134. (uuid "f0f93b4b-b744-46a4-95e2-796e97765c84")
  2135. )
  2136. (pin "3"
  2137. (uuid "e14075dd-896a-471f-9a44-806087e91c0f")
  2138. )
  2139. (pin "5"
  2140. (uuid "c358e7ba-6850-47a9-a7db-5556acc300f5")
  2141. )
  2142. (pin "6"
  2143. (uuid "70137949-8d5f-4077-9cb0-91f87f397590")
  2144. )
  2145. (pin "7"
  2146. (uuid "a7d7a391-536b-45dd-acfe-c799a64ed2d4")
  2147. )
  2148. (pin "4"
  2149. (uuid "62b1d7d3-2292-4b0c-8735-b158beba0e26")
  2150. )
  2151. (pin "8"
  2152. (uuid "b860587c-4c76-4529-9af0-ffcd91ac45b4")
  2153. )
  2154. (instances
  2155. (project "PT1000"
  2156. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2157. (reference "U?")
  2158. (unit 3)
  2159. )
  2160. )
  2161. )
  2162. )
  2163. (symbol
  2164. (lib_name "TEST_1P_8")
  2165. (lib_id "conn:TEST_1P")
  2166. (at 168.91 34.29 0)
  2167. (unit 1)
  2168. (exclude_from_sim no)
  2169. (in_bom yes)
  2170. (on_board yes)
  2171. (dnp no)
  2172. (uuid "4047e89c-36e3-4b6b-8821-039d5cc5ec9e")
  2173. (property "Reference" "PT?"
  2174. (at 167.64 36.83 0)
  2175. (effects
  2176. (font
  2177. (size 1.27 1.27)
  2178. )
  2179. (justify left)
  2180. )
  2181. )
  2182. (property "Value" "Temp_V-"
  2183. (at 171.45 32.2579 0)
  2184. (effects
  2185. (font
  2186. (size 1.27 1.27)
  2187. )
  2188. (justify left)
  2189. (hide yes)
  2190. )
  2191. )
  2192. (property "Footprint" "PinHeader:PinHeader1"
  2193. (at 173.99 34.29 0)
  2194. (effects
  2195. (font
  2196. (size 1.27 1.27)
  2197. )
  2198. (hide yes)
  2199. )
  2200. )
  2201. (property "Datasheet" ""
  2202. (at 173.99 34.29 0)
  2203. (effects
  2204. (font
  2205. (size 1.27 1.27)
  2206. )
  2207. )
  2208. )
  2209. (property "Description" ""
  2210. (at 168.91 34.29 0)
  2211. (effects
  2212. (font
  2213. (size 1.27 1.27)
  2214. )
  2215. (hide yes)
  2216. )
  2217. )
  2218. (property "Partkeepr" "N/A"
  2219. (at 168.91 34.29 0)
  2220. (effects
  2221. (font
  2222. (size 1.27 1.27)
  2223. )
  2224. (hide yes)
  2225. )
  2226. )
  2227. (pin "1"
  2228. (uuid "d9403485-637f-4e9d-ac79-0f6f3b58f74f")
  2229. )
  2230. (instances
  2231. (project "PT1000"
  2232. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2233. (reference "PT?")
  2234. (unit 1)
  2235. )
  2236. )
  2237. )
  2238. )
  2239. (symbol
  2240. (lib_id "conn:CONN_01X04")
  2241. (at 97.79 119.38 180)
  2242. (unit 1)
  2243. (exclude_from_sim no)
  2244. (in_bom yes)
  2245. (on_board yes)
  2246. (dnp no)
  2247. (uuid "45e29f2e-09c1-45ce-bf35-107127820bdb")
  2248. (property "Reference" "P?"
  2249. (at 97.79 113.03 0)
  2250. (effects
  2251. (font
  2252. (size 1.27 1.27)
  2253. )
  2254. )
  2255. )
  2256. (property "Value" "CONN_01X04"
  2257. (at 95.25 119.38 90)
  2258. (effects
  2259. (font
  2260. (size 1.27 1.27)
  2261. )
  2262. )
  2263. )
  2264. (property "Footprint" "PinHeader:JST_2.54_4"
  2265. (at 97.79 119.38 0)
  2266. (effects
  2267. (font
  2268. (size 1.27 1.27)
  2269. )
  2270. (hide yes)
  2271. )
  2272. )
  2273. (property "Datasheet" ""
  2274. (at 97.79 119.38 0)
  2275. (effects
  2276. (font
  2277. (size 1.27 1.27)
  2278. )
  2279. )
  2280. )
  2281. (property "Description" ""
  2282. (at 97.79 119.38 0)
  2283. (effects
  2284. (font
  2285. (size 1.27 1.27)
  2286. )
  2287. (hide yes)
  2288. )
  2289. )
  2290. (property "Partkeepr" "N/A"
  2291. (at 97.79 119.38 0)
  2292. (effects
  2293. (font
  2294. (size 1.27 1.27)
  2295. )
  2296. (hide yes)
  2297. )
  2298. )
  2299. (pin "1"
  2300. (uuid "0a0fa96c-cfb5-44cd-8601-0c33cffee79d")
  2301. )
  2302. (pin "2"
  2303. (uuid "bccc49b2-9c7d-47c5-9656-d9dd4e952d4f")
  2304. )
  2305. (pin "3"
  2306. (uuid "12bea69d-d7ce-4aef-8bb6-1d556f55cbb9")
  2307. )
  2308. (pin "4"
  2309. (uuid "43293b0c-7e71-484b-b60f-73e3c49d2890")
  2310. )
  2311. (instances
  2312. (project "PT1000"
  2313. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2314. (reference "P?")
  2315. (unit 1)
  2316. )
  2317. )
  2318. )
  2319. )
  2320. (symbol
  2321. (lib_id "global:R")
  2322. (at 29.21 123.19 90)
  2323. (unit 1)
  2324. (exclude_from_sim no)
  2325. (in_bom yes)
  2326. (on_board yes)
  2327. (dnp no)
  2328. (uuid "4b941eef-ec87-49c6-98d7-f30df6b50787")
  2329. (property "Reference" "R?"
  2330. (at 29.21 120.65 90)
  2331. (effects
  2332. (font
  2333. (size 1.27 1.27)
  2334. )
  2335. )
  2336. )
  2337. (property "Value" "4.7K"
  2338. (at 29.21 123.19 90)
  2339. (effects
  2340. (font
  2341. (size 1.27 1.27)
  2342. )
  2343. )
  2344. )
  2345. (property "Footprint" "R:0805"
  2346. (at 29.21 124.968 90)
  2347. (effects
  2348. (font
  2349. (size 1.27 1.27)
  2350. )
  2351. (hide yes)
  2352. )
  2353. )
  2354. (property "Datasheet" ""
  2355. (at 29.21 123.19 0)
  2356. (effects
  2357. (font
  2358. (size 1.27 1.27)
  2359. )
  2360. )
  2361. )
  2362. (property "Description" ""
  2363. (at 29.21 123.19 0)
  2364. (effects
  2365. (font
  2366. (size 1.27 1.27)
  2367. )
  2368. (hide yes)
  2369. )
  2370. )
  2371. (property "Partkeepr" "0917"
  2372. (at 29.21 123.19 0)
  2373. (effects
  2374. (font
  2375. (size 1.27 1.27)
  2376. )
  2377. (hide yes)
  2378. )
  2379. )
  2380. (pin "1"
  2381. (uuid "ec11d964-4a66-41ba-a6e3-dfef916795df")
  2382. )
  2383. (pin "2"
  2384. (uuid "971bbaf7-89be-4915-b861-746a65a70fa1")
  2385. )
  2386. (instances
  2387. (project "PT1000"
  2388. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2389. (reference "R?")
  2390. (unit 1)
  2391. )
  2392. )
  2393. )
  2394. )
  2395. (symbol
  2396. (lib_id "global:R")
  2397. (at 111.76 111.76 0)
  2398. (unit 1)
  2399. (exclude_from_sim no)
  2400. (in_bom yes)
  2401. (on_board yes)
  2402. (dnp no)
  2403. (fields_autoplaced yes)
  2404. (uuid "4f146168-b924-4f1c-9469-1969bb0055d5")
  2405. (property "Reference" "R?"
  2406. (at 114.3 110.4899 0)
  2407. (effects
  2408. (font
  2409. (size 1.27 1.27)
  2410. )
  2411. (justify left)
  2412. )
  2413. )
  2414. (property "Value" "16.2K"
  2415. (at 114.3 113.0299 0)
  2416. (effects
  2417. (font
  2418. (size 1.27 1.27)
  2419. )
  2420. (justify left)
  2421. )
  2422. )
  2423. (property "Footprint" "R:0805"
  2424. (at 109.982 111.76 90)
  2425. (effects
  2426. (font
  2427. (size 1.27 1.27)
  2428. )
  2429. (hide yes)
  2430. )
  2431. )
  2432. (property "Datasheet" ""
  2433. (at 111.76 111.76 0)
  2434. (effects
  2435. (font
  2436. (size 1.27 1.27)
  2437. )
  2438. )
  2439. )
  2440. (property "Description" ""
  2441. (at 111.76 111.76 0)
  2442. (effects
  2443. (font
  2444. (size 1.27 1.27)
  2445. )
  2446. (hide yes)
  2447. )
  2448. )
  2449. (property "Partkeepr" "0933"
  2450. (at 111.76 111.76 0)
  2451. (effects
  2452. (font
  2453. (size 1.27 1.27)
  2454. )
  2455. (hide yes)
  2456. )
  2457. )
  2458. (pin "1"
  2459. (uuid "df247beb-50ee-436f-a56d-f8e39cd05a2f")
  2460. )
  2461. (pin "2"
  2462. (uuid "0c95c365-cb56-41c2-a0ba-d8b744c9e2e9")
  2463. )
  2464. (instances
  2465. (project "PT1000"
  2466. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2467. (reference "R?")
  2468. (unit 1)
  2469. )
  2470. )
  2471. )
  2472. )
  2473. (symbol
  2474. (lib_id "global:R")
  2475. (at 162.56 25.4 0)
  2476. (unit 1)
  2477. (exclude_from_sim no)
  2478. (in_bom yes)
  2479. (on_board yes)
  2480. (dnp no)
  2481. (fields_autoplaced yes)
  2482. (uuid "55949447-b396-4111-8223-8ff5e2c88e4d")
  2483. (property "Reference" "R?"
  2484. (at 165.1 24.1299 0)
  2485. (effects
  2486. (font
  2487. (size 1.27 1.27)
  2488. )
  2489. (justify left)
  2490. )
  2491. )
  2492. (property "Value" "16.2K"
  2493. (at 165.1 26.6699 0)
  2494. (effects
  2495. (font
  2496. (size 1.27 1.27)
  2497. )
  2498. (justify left)
  2499. )
  2500. )
  2501. (property "Footprint" "R:0805"
  2502. (at 160.782 25.4 90)
  2503. (effects
  2504. (font
  2505. (size 1.27 1.27)
  2506. )
  2507. (hide yes)
  2508. )
  2509. )
  2510. (property "Datasheet" ""
  2511. (at 162.56 25.4 0)
  2512. (effects
  2513. (font
  2514. (size 1.27 1.27)
  2515. )
  2516. )
  2517. )
  2518. (property "Description" ""
  2519. (at 162.56 25.4 0)
  2520. (effects
  2521. (font
  2522. (size 1.27 1.27)
  2523. )
  2524. (hide yes)
  2525. )
  2526. )
  2527. (property "Partkeepr" "0933"
  2528. (at 162.56 25.4 0)
  2529. (effects
  2530. (font
  2531. (size 1.27 1.27)
  2532. )
  2533. (hide yes)
  2534. )
  2535. )
  2536. (pin "1"
  2537. (uuid "70ada9af-5ac1-48b8-a281-a761f5e34a9e")
  2538. )
  2539. (pin "2"
  2540. (uuid "a580e5a9-0844-42ee-a331-0836def068dd")
  2541. )
  2542. (instances
  2543. (project "PT1000"
  2544. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2545. (reference "R?")
  2546. (unit 1)
  2547. )
  2548. )
  2549. )
  2550. )
  2551. (symbol
  2552. (lib_name "TEST_1P_13")
  2553. (lib_id "conn:TEST_1P")
  2554. (at 62.23 120.65 0)
  2555. (unit 1)
  2556. (exclude_from_sim no)
  2557. (in_bom yes)
  2558. (on_board yes)
  2559. (dnp no)
  2560. (uuid "5c808a85-5cb4-41be-a13e-d5376d7a2e0e")
  2561. (property "Reference" "PT?"
  2562. (at 64.77 113.03 0)
  2563. (effects
  2564. (font
  2565. (size 1.27 1.27)
  2566. )
  2567. (justify left)
  2568. )
  2569. )
  2570. (property "Value" "T_Vout_diff"
  2571. (at 64.77 118.6179 0)
  2572. (effects
  2573. (font
  2574. (size 1.27 1.27)
  2575. )
  2576. (justify left)
  2577. (hide yes)
  2578. )
  2579. )
  2580. (property "Footprint" "PinHeader:PinHeader1"
  2581. (at 67.31 120.65 0)
  2582. (effects
  2583. (font
  2584. (size 1.27 1.27)
  2585. )
  2586. (hide yes)
  2587. )
  2588. )
  2589. (property "Datasheet" ""
  2590. (at 67.31 120.65 0)
  2591. (effects
  2592. (font
  2593. (size 1.27 1.27)
  2594. )
  2595. )
  2596. )
  2597. (property "Description" ""
  2598. (at 62.23 120.65 0)
  2599. (effects
  2600. (font
  2601. (size 1.27 1.27)
  2602. )
  2603. (hide yes)
  2604. )
  2605. )
  2606. (property "Partkeepr" "N/A"
  2607. (at 62.23 120.65 0)
  2608. (effects
  2609. (font
  2610. (size 1.27 1.27)
  2611. )
  2612. (hide yes)
  2613. )
  2614. )
  2615. (pin "1"
  2616. (uuid "b07578ba-7594-4b93-8194-7214d4b2b00d")
  2617. )
  2618. (instances
  2619. (project "PT1000"
  2620. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2621. (reference "PT?")
  2622. (unit 1)
  2623. )
  2624. )
  2625. )
  2626. )
  2627. (symbol
  2628. (lib_id "global:R")
  2629. (at 29.21 34.29 0)
  2630. (unit 1)
  2631. (exclude_from_sim no)
  2632. (in_bom yes)
  2633. (on_board yes)
  2634. (dnp no)
  2635. (uuid "5f1ebb10-e7b5-4e32-b5d0-7570478e2aa2")
  2636. (property "Reference" "R?"
  2637. (at 30.48 33.02 0)
  2638. (effects
  2639. (font
  2640. (size 1.27 1.27)
  2641. )
  2642. (justify left)
  2643. )
  2644. )
  2645. (property "Value" "43K"
  2646. (at 30.48 35.56 0)
  2647. (effects
  2648. (font
  2649. (size 1.27 1.27)
  2650. )
  2651. (justify left)
  2652. )
  2653. )
  2654. (property "Footprint" "R:0805"
  2655. (at 27.432 34.29 90)
  2656. (effects
  2657. (font
  2658. (size 1.27 1.27)
  2659. )
  2660. (hide yes)
  2661. )
  2662. )
  2663. (property "Datasheet" ""
  2664. (at 29.21 34.29 0)
  2665. (effects
  2666. (font
  2667. (size 1.27 1.27)
  2668. )
  2669. )
  2670. )
  2671. (property "Description" ""
  2672. (at 29.21 34.29 0)
  2673. (effects
  2674. (font
  2675. (size 1.27 1.27)
  2676. )
  2677. (hide yes)
  2678. )
  2679. )
  2680. (property "Partkeepr" "0919"
  2681. (at 29.21 34.29 0)
  2682. (effects
  2683. (font
  2684. (size 1.27 1.27)
  2685. )
  2686. (hide yes)
  2687. )
  2688. )
  2689. (pin "1"
  2690. (uuid "969b85b6-4393-4671-a6c1-806b072ff45b")
  2691. )
  2692. (pin "2"
  2693. (uuid "c39b860c-1ff3-4a8f-ac6c-d8548b215931")
  2694. )
  2695. (instances
  2696. (project "PT1000"
  2697. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2698. (reference "R?")
  2699. (unit 1)
  2700. )
  2701. )
  2702. )
  2703. )
  2704. (symbol
  2705. (lib_id "global:R")
  2706. (at 29.21 118.11 90)
  2707. (unit 1)
  2708. (exclude_from_sim no)
  2709. (in_bom yes)
  2710. (on_board yes)
  2711. (dnp no)
  2712. (uuid "6b7fddb4-c03b-421d-aff9-c5dd6b787add")
  2713. (property "Reference" "R?"
  2714. (at 29.21 115.57 90)
  2715. (effects
  2716. (font
  2717. (size 1.27 1.27)
  2718. )
  2719. )
  2720. )
  2721. (property "Value" "4.7K"
  2722. (at 29.21 118.11 90)
  2723. (effects
  2724. (font
  2725. (size 1.27 1.27)
  2726. )
  2727. )
  2728. )
  2729. (property "Footprint" "R:0805"
  2730. (at 29.21 119.888 90)
  2731. (effects
  2732. (font
  2733. (size 1.27 1.27)
  2734. )
  2735. (hide yes)
  2736. )
  2737. )
  2738. (property "Datasheet" ""
  2739. (at 29.21 118.11 0)
  2740. (effects
  2741. (font
  2742. (size 1.27 1.27)
  2743. )
  2744. )
  2745. )
  2746. (property "Description" ""
  2747. (at 29.21 118.11 0)
  2748. (effects
  2749. (font
  2750. (size 1.27 1.27)
  2751. )
  2752. (hide yes)
  2753. )
  2754. )
  2755. (property "Partkeepr" "0917"
  2756. (at 29.21 118.11 0)
  2757. (effects
  2758. (font
  2759. (size 1.27 1.27)
  2760. )
  2761. (hide yes)
  2762. )
  2763. )
  2764. (pin "1"
  2765. (uuid "bc7ace84-f535-49ad-851e-837e09991dd2")
  2766. )
  2767. (pin "2"
  2768. (uuid "68919aef-7fe1-4a6c-9387-6efc797f5455")
  2769. )
  2770. (instances
  2771. (project "PT1000"
  2772. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2773. (reference "R?")
  2774. (unit 1)
  2775. )
  2776. )
  2777. )
  2778. )
  2779. (symbol
  2780. (lib_name "TEST_1P_13")
  2781. (lib_id "conn:TEST_1P")
  2782. (at 38.1 123.19 0)
  2783. (unit 1)
  2784. (exclude_from_sim no)
  2785. (in_bom yes)
  2786. (on_board yes)
  2787. (dnp no)
  2788. (uuid "6dfd60f9-391a-4578-a21f-6d8d456009e6")
  2789. (property "Reference" "PT?"
  2790. (at 36.83 120.65 0)
  2791. (effects
  2792. (font
  2793. (size 1.27 1.27)
  2794. )
  2795. (justify left)
  2796. )
  2797. )
  2798. (property "Value" " T_V+_U1"
  2799. (at 40.64 121.1579 0)
  2800. (effects
  2801. (font
  2802. (size 1.27 1.27)
  2803. )
  2804. (justify left)
  2805. (hide yes)
  2806. )
  2807. )
  2808. (property "Footprint" "PinHeader:PinHeader1"
  2809. (at 43.18 123.19 0)
  2810. (effects
  2811. (font
  2812. (size 1.27 1.27)
  2813. )
  2814. (hide yes)
  2815. )
  2816. )
  2817. (property "Datasheet" ""
  2818. (at 43.18 123.19 0)
  2819. (effects
  2820. (font
  2821. (size 1.27 1.27)
  2822. )
  2823. )
  2824. )
  2825. (property "Description" ""
  2826. (at 38.1 123.19 0)
  2827. (effects
  2828. (font
  2829. (size 1.27 1.27)
  2830. )
  2831. (hide yes)
  2832. )
  2833. )
  2834. (property "Partkeepr" "N/A"
  2835. (at 38.1 123.19 0)
  2836. (effects
  2837. (font
  2838. (size 1.27 1.27)
  2839. )
  2840. (hide yes)
  2841. )
  2842. )
  2843. (pin "1"
  2844. (uuid "1e62059b-ba6b-4cf2-9e11-aca22a994dc6")
  2845. )
  2846. (instances
  2847. (project "PT1000"
  2848. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2849. (reference "PT?")
  2850. (unit 1)
  2851. )
  2852. )
  2853. )
  2854. )
  2855. (symbol
  2856. (lib_name "TEST_1P_13")
  2857. (lib_id "conn:TEST_1P")
  2858. (at 168.91 31.75 0)
  2859. (unit 1)
  2860. (exclude_from_sim no)
  2861. (in_bom yes)
  2862. (on_board yes)
  2863. (dnp no)
  2864. (uuid "7f8e1064-6961-4613-8864-7d626eeb85e1")
  2865. (property "Reference" "PT?"
  2866. (at 167.64 29.21 0)
  2867. (effects
  2868. (font
  2869. (size 1.27 1.27)
  2870. )
  2871. (justify left)
  2872. )
  2873. )
  2874. (property "Value" "Temp_V+"
  2875. (at 171.45 29.7179 0)
  2876. (effects
  2877. (font
  2878. (size 1.27 1.27)
  2879. )
  2880. (justify left)
  2881. (hide yes)
  2882. )
  2883. )
  2884. (property "Footprint" "PinHeader:PinHeader1"
  2885. (at 173.99 31.75 0)
  2886. (effects
  2887. (font
  2888. (size 1.27 1.27)
  2889. )
  2890. (hide yes)
  2891. )
  2892. )
  2893. (property "Datasheet" ""
  2894. (at 173.99 31.75 0)
  2895. (effects
  2896. (font
  2897. (size 1.27 1.27)
  2898. )
  2899. )
  2900. )
  2901. (property "Description" ""
  2902. (at 168.91 31.75 0)
  2903. (effects
  2904. (font
  2905. (size 1.27 1.27)
  2906. )
  2907. (hide yes)
  2908. )
  2909. )
  2910. (property "Partkeepr" "N/A"
  2911. (at 168.91 31.75 0)
  2912. (effects
  2913. (font
  2914. (size 1.27 1.27)
  2915. )
  2916. (hide yes)
  2917. )
  2918. )
  2919. (pin "1"
  2920. (uuid "c565f68b-21da-46c3-802f-5a99a71277b3")
  2921. )
  2922. (instances
  2923. (project "PT1000"
  2924. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  2925. (reference "PT?")
  2926. (unit 1)
  2927. )
  2928. )
  2929. )
  2930. )
  2931. (symbol
  2932. (lib_name "TEST_1P_13")
  2933. (lib_id "conn:TEST_1P")
  2934. (at 58.42 27.94 0)
  2935. (unit 1)
  2936. (exclude_from_sim no)
  2937. (in_bom yes)
  2938. (on_board yes)
  2939. (dnp no)
  2940. (uuid "89618033-0487-4eb2-b2cf-2aee5ed44d9b")
  2941. (property "Reference" "PT?"
  2942. (at 60.96 20.32 0)
  2943. (effects
  2944. (font
  2945. (size 1.27 1.27)
  2946. )
  2947. (justify left)
  2948. )
  2949. )
  2950. (property "Value" "T_Vout_diff"
  2951. (at 60.96 25.9079 0)
  2952. (effects
  2953. (font
  2954. (size 1.27 1.27)
  2955. )
  2956. (justify left)
  2957. (hide yes)
  2958. )
  2959. )
  2960. (property "Footprint" "PinHeader:PinHeader1"
  2961. (at 63.5 27.94 0)
  2962. (effects
  2963. (font
  2964. (size 1.27 1.27)
  2965. )
  2966. (hide yes)
  2967. )
  2968. )
  2969. (property "Datasheet" ""
  2970. (at 63.5 27.94 0)
  2971. (effects
  2972. (font
  2973. (size 1.27 1.27)
  2974. )
  2975. )
  2976. )
  2977. (property "Description" ""
  2978. (at 58.42 27.94 0)
  2979. (effects
  2980. (font
  2981. (size 1.27 1.27)
  2982. )
  2983. (hide yes)
  2984. )
  2985. )
  2986. (property "Partkeepr" "N/A"
  2987. (at 58.42 27.94 0)
  2988. (effects
  2989. (font
  2990. (size 1.27 1.27)
  2991. )
  2992. (hide yes)
  2993. )
  2994. )
  2995. (pin "1"
  2996. (uuid "ddf61cc5-f6f4-4ccf-9923-3eef962fad91")
  2997. )
  2998. (instances
  2999. (project "PT1000"
  3000. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3001. (reference "PT?")
  3002. (unit 1)
  3003. )
  3004. )
  3005. )
  3006. )
  3007. (symbol
  3008. (lib_id "TI:LMC6042")
  3009. (at 48.26 27.94 0)
  3010. (unit 1)
  3011. (exclude_from_sim no)
  3012. (in_bom yes)
  3013. (on_board yes)
  3014. (dnp no)
  3015. (uuid "8985a559-8b9c-44fa-9df9-ad87a6621f16")
  3016. (property "Reference" "U?"
  3017. (at 48.26 22.86 0)
  3018. (effects
  3019. (font
  3020. (size 1.27 1.27)
  3021. )
  3022. )
  3023. )
  3024. (property "Value" "LMC6042"
  3025. (at 48.26 33.02 0)
  3026. (effects
  3027. (font
  3028. (size 1.27 1.27)
  3029. )
  3030. )
  3031. )
  3032. (property "Footprint" "U:SO8N"
  3033. (at 48.26 27.94 0)
  3034. (effects
  3035. (font
  3036. (size 1.27 1.27)
  3037. )
  3038. (hide yes)
  3039. )
  3040. )
  3041. (property "Datasheet" ""
  3042. (at 48.26 27.94 0)
  3043. (effects
  3044. (font
  3045. (size 1.27 1.27)
  3046. )
  3047. (hide yes)
  3048. )
  3049. )
  3050. (property "Description" ""
  3051. (at 48.26 27.94 0)
  3052. (effects
  3053. (font
  3054. (size 1.27 1.27)
  3055. )
  3056. (hide yes)
  3057. )
  3058. )
  3059. (property "Partkeepr" "2400"
  3060. (at 48.26 27.94 0)
  3061. (effects
  3062. (font
  3063. (size 1.27 1.27)
  3064. )
  3065. (hide yes)
  3066. )
  3067. )
  3068. (pin "1"
  3069. (uuid "5638229d-8d77-42d4-9859-e071c115336e")
  3070. )
  3071. (pin "2"
  3072. (uuid "8cf73504-d909-4e70-a8d9-ec8fd6ae3cd2")
  3073. )
  3074. (pin "3"
  3075. (uuid "2554f838-e023-4207-aa1c-511a31601576")
  3076. )
  3077. (pin "5"
  3078. (uuid "c8c1a9a2-e8f6-490d-bca2-179ee7866e68")
  3079. )
  3080. (pin "6"
  3081. (uuid "e8fe515e-e784-49b7-904a-82554ae352f1")
  3082. )
  3083. (pin "7"
  3084. (uuid "52606678-040a-4b26-aeda-b725b5da4121")
  3085. )
  3086. (pin "4"
  3087. (uuid "4334f79f-b334-444a-abfe-5288469d6b64")
  3088. )
  3089. (pin "8"
  3090. (uuid "0bb3c419-908e-4a8c-9794-12a33cb04759")
  3091. )
  3092. (instances
  3093. (project "PT1000"
  3094. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3095. (reference "U?")
  3096. (unit 1)
  3097. )
  3098. )
  3099. )
  3100. )
  3101. (symbol
  3102. (lib_name "TEST_1P_6")
  3103. (lib_id "conn:TEST_1P")
  3104. (at 158.75 29.21 0)
  3105. (unit 1)
  3106. (exclude_from_sim no)
  3107. (in_bom yes)
  3108. (on_board yes)
  3109. (dnp no)
  3110. (uuid "94f3f98e-c852-4d4f-b525-701a301b09f5")
  3111. (property "Reference" "PT?"
  3112. (at 157.48 27.94 0)
  3113. (effects
  3114. (font
  3115. (size 1.27 1.27)
  3116. )
  3117. (justify left)
  3118. )
  3119. )
  3120. (property "Value" "T_IN_PT1000"
  3121. (at 161.29 27.1779 0)
  3122. (effects
  3123. (font
  3124. (size 1.27 1.27)
  3125. )
  3126. (justify left)
  3127. (hide yes)
  3128. )
  3129. )
  3130. (property "Footprint" "PinHeader:PinHeader1"
  3131. (at 163.83 29.21 0)
  3132. (effects
  3133. (font
  3134. (size 1.27 1.27)
  3135. )
  3136. (hide yes)
  3137. )
  3138. )
  3139. (property "Datasheet" ""
  3140. (at 163.83 29.21 0)
  3141. (effects
  3142. (font
  3143. (size 1.27 1.27)
  3144. )
  3145. )
  3146. )
  3147. (property "Description" ""
  3148. (at 158.75 29.21 0)
  3149. (effects
  3150. (font
  3151. (size 1.27 1.27)
  3152. )
  3153. (hide yes)
  3154. )
  3155. )
  3156. (property "Partkeepr" "N/A"
  3157. (at 158.75 29.21 0)
  3158. (effects
  3159. (font
  3160. (size 1.27 1.27)
  3161. )
  3162. (hide yes)
  3163. )
  3164. )
  3165. (pin "1"
  3166. (uuid "31167c04-62ba-46fb-a25b-2e212d8412b5")
  3167. )
  3168. (instances
  3169. (project "PT1000"
  3170. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3171. (reference "PT?")
  3172. (unit 1)
  3173. )
  3174. )
  3175. )
  3176. )
  3177. (symbol
  3178. (lib_id "global:R")
  3179. (at 50.8 19.05 90)
  3180. (unit 1)
  3181. (exclude_from_sim no)
  3182. (in_bom yes)
  3183. (on_board yes)
  3184. (dnp no)
  3185. (uuid "a18e6698-de92-4d6e-80cf-ad640032b63f")
  3186. (property "Reference" "R?"
  3187. (at 50.8 16.51 90)
  3188. (effects
  3189. (font
  3190. (size 1.27 1.27)
  3191. )
  3192. )
  3193. )
  3194. (property "Value" "43K"
  3195. (at 50.8 19.05 90)
  3196. (effects
  3197. (font
  3198. (size 1.27 1.27)
  3199. )
  3200. )
  3201. )
  3202. (property "Footprint" "R:0805"
  3203. (at 50.8 20.828 90)
  3204. (effects
  3205. (font
  3206. (size 1.27 1.27)
  3207. )
  3208. (hide yes)
  3209. )
  3210. )
  3211. (property "Datasheet" ""
  3212. (at 50.8 19.05 0)
  3213. (effects
  3214. (font
  3215. (size 1.27 1.27)
  3216. )
  3217. )
  3218. )
  3219. (property "Description" ""
  3220. (at 50.8 19.05 0)
  3221. (effects
  3222. (font
  3223. (size 1.27 1.27)
  3224. )
  3225. (hide yes)
  3226. )
  3227. )
  3228. (property "Partkeepr" "0919"
  3229. (at 50.8 19.05 0)
  3230. (effects
  3231. (font
  3232. (size 1.27 1.27)
  3233. )
  3234. (hide yes)
  3235. )
  3236. )
  3237. (pin "1"
  3238. (uuid "1ff0d974-ad12-4ecd-a096-4778ec8d708d")
  3239. )
  3240. (pin "2"
  3241. (uuid "e4cd6cf2-8167-4f47-b3b8-4e6a4661d862")
  3242. )
  3243. (instances
  3244. (project "PT1000"
  3245. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3246. (reference "R?")
  3247. (unit 1)
  3248. )
  3249. )
  3250. )
  3251. )
  3252. (symbol
  3253. (lib_id "global:R")
  3254. (at 33.02 127 0)
  3255. (unit 1)
  3256. (exclude_from_sim no)
  3257. (in_bom yes)
  3258. (on_board yes)
  3259. (dnp no)
  3260. (uuid "a47e8d0a-79c4-4b3d-876c-4a7b822aef9e")
  3261. (property "Reference" "R?"
  3262. (at 34.29 125.73 0)
  3263. (effects
  3264. (font
  3265. (size 1.27 1.27)
  3266. )
  3267. (justify left)
  3268. )
  3269. )
  3270. (property "Value" "43K"
  3271. (at 34.29 128.27 0)
  3272. (effects
  3273. (font
  3274. (size 1.27 1.27)
  3275. )
  3276. (justify left)
  3277. )
  3278. )
  3279. (property "Footprint" "R:0805"
  3280. (at 31.242 127 90)
  3281. (effects
  3282. (font
  3283. (size 1.27 1.27)
  3284. )
  3285. (hide yes)
  3286. )
  3287. )
  3288. (property "Datasheet" ""
  3289. (at 33.02 127 0)
  3290. (effects
  3291. (font
  3292. (size 1.27 1.27)
  3293. )
  3294. )
  3295. )
  3296. (property "Description" ""
  3297. (at 33.02 127 0)
  3298. (effects
  3299. (font
  3300. (size 1.27 1.27)
  3301. )
  3302. (hide yes)
  3303. )
  3304. )
  3305. (property "Partkeepr" "0919"
  3306. (at 33.02 127 0)
  3307. (effects
  3308. (font
  3309. (size 1.27 1.27)
  3310. )
  3311. (hide yes)
  3312. )
  3313. )
  3314. (pin "1"
  3315. (uuid "9bd6e1e4-7675-4f75-8c18-8edbfe036825")
  3316. )
  3317. (pin "2"
  3318. (uuid "dc52d6ca-5b8d-486e-afc1-33353dca04be")
  3319. )
  3320. (instances
  3321. (project "PT1000"
  3322. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3323. (reference "R?")
  3324. (unit 1)
  3325. )
  3326. )
  3327. )
  3328. )
  3329. (symbol
  3330. (lib_id "global:R")
  3331. (at 54.61 111.76 90)
  3332. (unit 1)
  3333. (exclude_from_sim no)
  3334. (in_bom yes)
  3335. (on_board yes)
  3336. (dnp no)
  3337. (uuid "a8fe23f3-1376-4240-96df-bc5f90277fe2")
  3338. (property "Reference" "R?"
  3339. (at 54.61 109.22 90)
  3340. (effects
  3341. (font
  3342. (size 1.27 1.27)
  3343. )
  3344. )
  3345. )
  3346. (property "Value" "43K"
  3347. (at 54.61 111.76 90)
  3348. (effects
  3349. (font
  3350. (size 1.27 1.27)
  3351. )
  3352. )
  3353. )
  3354. (property "Footprint" "R:0805"
  3355. (at 54.61 113.538 90)
  3356. (effects
  3357. (font
  3358. (size 1.27 1.27)
  3359. )
  3360. (hide yes)
  3361. )
  3362. )
  3363. (property "Datasheet" ""
  3364. (at 54.61 111.76 0)
  3365. (effects
  3366. (font
  3367. (size 1.27 1.27)
  3368. )
  3369. )
  3370. )
  3371. (property "Description" ""
  3372. (at 54.61 111.76 0)
  3373. (effects
  3374. (font
  3375. (size 1.27 1.27)
  3376. )
  3377. (hide yes)
  3378. )
  3379. )
  3380. (property "Partkeepr" "0919"
  3381. (at 54.61 111.76 0)
  3382. (effects
  3383. (font
  3384. (size 1.27 1.27)
  3385. )
  3386. (hide yes)
  3387. )
  3388. )
  3389. (pin "1"
  3390. (uuid "fd5e37c4-c2d5-4d3e-92b0-0a29cfa81208")
  3391. )
  3392. (pin "2"
  3393. (uuid "442387e4-2f82-42f9-abbc-120586dfceaf")
  3394. )
  3395. (instances
  3396. (project "PT1000"
  3397. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3398. (reference "R?")
  3399. (unit 1)
  3400. )
  3401. )
  3402. )
  3403. )
  3404. (symbol
  3405. (lib_name "TEST_1P_13")
  3406. (lib_id "conn:TEST_1P")
  3407. (at 118.11 118.11 0)
  3408. (unit 1)
  3409. (exclude_from_sim no)
  3410. (in_bom yes)
  3411. (on_board yes)
  3412. (dnp no)
  3413. (uuid "aefb7d15-c387-40fe-abed-509614cd425b")
  3414. (property "Reference" "PT?"
  3415. (at 116.84 115.57 0)
  3416. (effects
  3417. (font
  3418. (size 1.27 1.27)
  3419. )
  3420. (justify left)
  3421. )
  3422. )
  3423. (property "Value" "Temp_V+"
  3424. (at 120.65 116.0779 0)
  3425. (effects
  3426. (font
  3427. (size 1.27 1.27)
  3428. )
  3429. (justify left)
  3430. (hide yes)
  3431. )
  3432. )
  3433. (property "Footprint" "PinHeader:PinHeader1"
  3434. (at 123.19 118.11 0)
  3435. (effects
  3436. (font
  3437. (size 1.27 1.27)
  3438. )
  3439. (hide yes)
  3440. )
  3441. )
  3442. (property "Datasheet" ""
  3443. (at 123.19 118.11 0)
  3444. (effects
  3445. (font
  3446. (size 1.27 1.27)
  3447. )
  3448. )
  3449. )
  3450. (property "Description" ""
  3451. (at 118.11 118.11 0)
  3452. (effects
  3453. (font
  3454. (size 1.27 1.27)
  3455. )
  3456. (hide yes)
  3457. )
  3458. )
  3459. (property "Partkeepr" "N/A"
  3460. (at 118.11 118.11 0)
  3461. (effects
  3462. (font
  3463. (size 1.27 1.27)
  3464. )
  3465. (hide yes)
  3466. )
  3467. )
  3468. (pin "1"
  3469. (uuid "a78eedf7-348d-4e6c-ab2d-12921532482f")
  3470. )
  3471. (instances
  3472. (project "PT1000"
  3473. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3474. (reference "PT?")
  3475. (unit 1)
  3476. )
  3477. )
  3478. )
  3479. )
  3480. (symbol
  3481. (lib_id "TI:LMC6042")
  3482. (at 81.28 25.4 0)
  3483. (unit 2)
  3484. (exclude_from_sim no)
  3485. (in_bom yes)
  3486. (on_board yes)
  3487. (dnp no)
  3488. (fields_autoplaced yes)
  3489. (uuid "b227c048-b070-4f6e-ba3e-adbd30e1c2d7")
  3490. (property "Reference" "U?"
  3491. (at 81.28 15.24 0)
  3492. (effects
  3493. (font
  3494. (size 1.27 1.27)
  3495. )
  3496. )
  3497. )
  3498. (property "Value" "LMC6042"
  3499. (at 81.28 17.78 0)
  3500. (effects
  3501. (font
  3502. (size 1.27 1.27)
  3503. )
  3504. )
  3505. )
  3506. (property "Footprint" "U:SO8N"
  3507. (at 81.28 25.4 0)
  3508. (effects
  3509. (font
  3510. (size 1.27 1.27)
  3511. )
  3512. (hide yes)
  3513. )
  3514. )
  3515. (property "Datasheet" ""
  3516. (at 81.28 25.4 0)
  3517. (effects
  3518. (font
  3519. (size 1.27 1.27)
  3520. )
  3521. (hide yes)
  3522. )
  3523. )
  3524. (property "Description" ""
  3525. (at 81.28 25.4 0)
  3526. (effects
  3527. (font
  3528. (size 1.27 1.27)
  3529. )
  3530. (hide yes)
  3531. )
  3532. )
  3533. (property "Partkeepr" "2400"
  3534. (at 81.28 25.4 0)
  3535. (effects
  3536. (font
  3537. (size 1.27 1.27)
  3538. )
  3539. (hide yes)
  3540. )
  3541. )
  3542. (pin "1"
  3543. (uuid "4ab08bfc-7c15-4c00-b477-a8b397576747")
  3544. )
  3545. (pin "2"
  3546. (uuid "690d360a-d643-4013-9a09-c381b00bef5e")
  3547. )
  3548. (pin "3"
  3549. (uuid "80e4dc19-9799-43cd-8c8c-af4b7dc8ee6b")
  3550. )
  3551. (pin "5"
  3552. (uuid "4717e292-74ce-4514-a05d-47e8d3d5a1e6")
  3553. )
  3554. (pin "6"
  3555. (uuid "c970017d-7182-4563-9098-5e1c9b099e4a")
  3556. )
  3557. (pin "7"
  3558. (uuid "a7b4bc56-9d5a-4439-a8d6-3fea43ba2ebc")
  3559. )
  3560. (pin "4"
  3561. (uuid "e3c8242f-bf6c-47d8-90b0-27d6e2a88596")
  3562. )
  3563. (pin "8"
  3564. (uuid "77d81e6e-43d3-4306-8ddf-c2791ec3e8b5")
  3565. )
  3566. (instances
  3567. (project "PT1000"
  3568. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3569. (reference "U?")
  3570. (unit 2)
  3571. )
  3572. )
  3573. )
  3574. )
  3575. (symbol
  3576. (lib_name "TEST_1P_6")
  3577. (lib_id "conn:TEST_1P")
  3578. (at 107.95 115.57 0)
  3579. (unit 1)
  3580. (exclude_from_sim no)
  3581. (in_bom yes)
  3582. (on_board yes)
  3583. (dnp no)
  3584. (uuid "b4c4ad98-f125-413a-8d63-b26c76bd3f5c")
  3585. (property "Reference" "PT?"
  3586. (at 106.68 114.3 0)
  3587. (effects
  3588. (font
  3589. (size 1.27 1.27)
  3590. )
  3591. (justify left)
  3592. )
  3593. )
  3594. (property "Value" "T_IN_PT1000"
  3595. (at 110.49 113.5379 0)
  3596. (effects
  3597. (font
  3598. (size 1.27 1.27)
  3599. )
  3600. (justify left)
  3601. (hide yes)
  3602. )
  3603. )
  3604. (property "Footprint" "PinHeader:PinHeader1"
  3605. (at 113.03 115.57 0)
  3606. (effects
  3607. (font
  3608. (size 1.27 1.27)
  3609. )
  3610. (hide yes)
  3611. )
  3612. )
  3613. (property "Datasheet" ""
  3614. (at 113.03 115.57 0)
  3615. (effects
  3616. (font
  3617. (size 1.27 1.27)
  3618. )
  3619. )
  3620. )
  3621. (property "Description" ""
  3622. (at 107.95 115.57 0)
  3623. (effects
  3624. (font
  3625. (size 1.27 1.27)
  3626. )
  3627. (hide yes)
  3628. )
  3629. )
  3630. (property "Partkeepr" "N/A"
  3631. (at 107.95 115.57 0)
  3632. (effects
  3633. (font
  3634. (size 1.27 1.27)
  3635. )
  3636. (hide yes)
  3637. )
  3638. )
  3639. (pin "1"
  3640. (uuid "72384822-574c-4dc7-87b2-8db90c2e0817")
  3641. )
  3642. (instances
  3643. (project "PT1000"
  3644. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3645. (reference "PT?")
  3646. (unit 1)
  3647. )
  3648. )
  3649. )
  3650. )
  3651. (symbol
  3652. (lib_id "global:R")
  3653. (at 25.4 25.4 90)
  3654. (unit 1)
  3655. (exclude_from_sim no)
  3656. (in_bom yes)
  3657. (on_board yes)
  3658. (dnp no)
  3659. (uuid "b7d9e3c4-8f4a-4efa-96bf-c2c0fb64647f")
  3660. (property "Reference" "R?"
  3661. (at 25.4 22.86 90)
  3662. (effects
  3663. (font
  3664. (size 1.27 1.27)
  3665. )
  3666. )
  3667. )
  3668. (property "Value" "4.7K"
  3669. (at 25.4 25.4 90)
  3670. (effects
  3671. (font
  3672. (size 1.27 1.27)
  3673. )
  3674. )
  3675. )
  3676. (property "Footprint" "R:0805"
  3677. (at 25.4 27.178 90)
  3678. (effects
  3679. (font
  3680. (size 1.27 1.27)
  3681. )
  3682. (hide yes)
  3683. )
  3684. )
  3685. (property "Datasheet" ""
  3686. (at 25.4 25.4 0)
  3687. (effects
  3688. (font
  3689. (size 1.27 1.27)
  3690. )
  3691. )
  3692. )
  3693. (property "Description" ""
  3694. (at 25.4 25.4 0)
  3695. (effects
  3696. (font
  3697. (size 1.27 1.27)
  3698. )
  3699. (hide yes)
  3700. )
  3701. )
  3702. (property "Partkeepr" "0917"
  3703. (at 25.4 25.4 0)
  3704. (effects
  3705. (font
  3706. (size 1.27 1.27)
  3707. )
  3708. (hide yes)
  3709. )
  3710. )
  3711. (pin "1"
  3712. (uuid "76f10443-7ed5-492a-ac79-83a8a2f05254")
  3713. )
  3714. (pin "2"
  3715. (uuid "a170ead4-0d52-4976-bc5e-24e63b155c71")
  3716. )
  3717. (instances
  3718. (project "PT1000"
  3719. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3720. (reference "R?")
  3721. (unit 1)
  3722. )
  3723. )
  3724. )
  3725. )
  3726. (symbol
  3727. (lib_name "TEST_1P_13")
  3728. (lib_id "conn:TEST_1P")
  3729. (at 34.29 25.4 0)
  3730. (unit 1)
  3731. (exclude_from_sim no)
  3732. (in_bom yes)
  3733. (on_board yes)
  3734. (dnp no)
  3735. (uuid "c33edade-be12-4939-9b5f-38bd240a4619")
  3736. (property "Reference" "PT?"
  3737. (at 33.02 22.86 0)
  3738. (effects
  3739. (font
  3740. (size 1.27 1.27)
  3741. )
  3742. (justify left)
  3743. )
  3744. )
  3745. (property "Value" " T_V-_U1"
  3746. (at 36.83 23.3679 0)
  3747. (effects
  3748. (font
  3749. (size 1.27 1.27)
  3750. )
  3751. (justify left)
  3752. (hide yes)
  3753. )
  3754. )
  3755. (property "Footprint" "PinHeader:PinHeader1"
  3756. (at 39.37 25.4 0)
  3757. (effects
  3758. (font
  3759. (size 1.27 1.27)
  3760. )
  3761. (hide yes)
  3762. )
  3763. )
  3764. (property "Datasheet" ""
  3765. (at 39.37 25.4 0)
  3766. (effects
  3767. (font
  3768. (size 1.27 1.27)
  3769. )
  3770. )
  3771. )
  3772. (property "Description" ""
  3773. (at 34.29 25.4 0)
  3774. (effects
  3775. (font
  3776. (size 1.27 1.27)
  3777. )
  3778. (hide yes)
  3779. )
  3780. )
  3781. (property "Partkeepr" "N/A"
  3782. (at 34.29 25.4 0)
  3783. (effects
  3784. (font
  3785. (size 1.27 1.27)
  3786. )
  3787. (hide yes)
  3788. )
  3789. )
  3790. (pin "1"
  3791. (uuid "9c091af1-c2d3-4105-a900-4291d2485663")
  3792. )
  3793. (instances
  3794. (project "PT1000"
  3795. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3796. (reference "PT?")
  3797. (unit 1)
  3798. )
  3799. )
  3800. )
  3801. )
  3802. (symbol
  3803. (lib_id "TI:LMC6042")
  3804. (at 52.07 120.65 0)
  3805. (unit 2)
  3806. (exclude_from_sim no)
  3807. (in_bom yes)
  3808. (on_board yes)
  3809. (dnp no)
  3810. (uuid "ddea52ee-4372-4738-92b7-5db72214ff20")
  3811. (property "Reference" "U?"
  3812. (at 52.324 125.476 0)
  3813. (effects
  3814. (font
  3815. (size 1.27 1.27)
  3816. )
  3817. )
  3818. )
  3819. (property "Value" "LMC6042"
  3820. (at 52.578 116.332 0)
  3821. (effects
  3822. (font
  3823. (size 1.27 1.27)
  3824. )
  3825. )
  3826. )
  3827. (property "Footprint" "U:SO8N"
  3828. (at 52.07 120.65 0)
  3829. (effects
  3830. (font
  3831. (size 1.27 1.27)
  3832. )
  3833. (hide yes)
  3834. )
  3835. )
  3836. (property "Datasheet" ""
  3837. (at 52.07 120.65 0)
  3838. (effects
  3839. (font
  3840. (size 1.27 1.27)
  3841. )
  3842. (hide yes)
  3843. )
  3844. )
  3845. (property "Description" ""
  3846. (at 52.07 120.65 0)
  3847. (effects
  3848. (font
  3849. (size 1.27 1.27)
  3850. )
  3851. (hide yes)
  3852. )
  3853. )
  3854. (property "Partkeepr" "2400"
  3855. (at 52.07 120.65 0)
  3856. (effects
  3857. (font
  3858. (size 1.27 1.27)
  3859. )
  3860. (hide yes)
  3861. )
  3862. )
  3863. (pin "1"
  3864. (uuid "4ab08bfc-7c15-4c00-b477-a8b397576747")
  3865. )
  3866. (pin "2"
  3867. (uuid "690d360a-d643-4013-9a09-c381b00bef5e")
  3868. )
  3869. (pin "3"
  3870. (uuid "80e4dc19-9799-43cd-8c8c-af4b7dc8ee6b")
  3871. )
  3872. (pin "5"
  3873. (uuid "def87859-6b93-4601-aee5-43638c04cf0d")
  3874. )
  3875. (pin "6"
  3876. (uuid "eeb7100a-8724-4ea7-aba7-c627f94be0d0")
  3877. )
  3878. (pin "7"
  3879. (uuid "b3f2f82d-d5d8-47ff-a1a8-4e9f57dd91f8")
  3880. )
  3881. (pin "4"
  3882. (uuid "e3c8242f-bf6c-47d8-90b0-27d6e2a88596")
  3883. )
  3884. (pin "8"
  3885. (uuid "77d81e6e-43d3-4306-8ddf-c2791ec3e8b5")
  3886. )
  3887. (instances
  3888. (project "PT1000"
  3889. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3890. (reference "U?")
  3891. (unit 2)
  3892. )
  3893. )
  3894. )
  3895. )
  3896. (symbol
  3897. (lib_id "global:R")
  3898. (at 25.4 30.48 90)
  3899. (unit 1)
  3900. (exclude_from_sim no)
  3901. (in_bom yes)
  3902. (on_board yes)
  3903. (dnp no)
  3904. (uuid "df484151-91da-4a3b-9f87-e8041c9c9d05")
  3905. (property "Reference" "R?"
  3906. (at 25.4 27.94 90)
  3907. (effects
  3908. (font
  3909. (size 1.27 1.27)
  3910. )
  3911. )
  3912. )
  3913. (property "Value" "4.7K"
  3914. (at 25.4 30.48 90)
  3915. (effects
  3916. (font
  3917. (size 1.27 1.27)
  3918. )
  3919. )
  3920. )
  3921. (property "Footprint" "R:0805"
  3922. (at 25.4 32.258 90)
  3923. (effects
  3924. (font
  3925. (size 1.27 1.27)
  3926. )
  3927. (hide yes)
  3928. )
  3929. )
  3930. (property "Datasheet" ""
  3931. (at 25.4 30.48 0)
  3932. (effects
  3933. (font
  3934. (size 1.27 1.27)
  3935. )
  3936. )
  3937. )
  3938. (property "Description" ""
  3939. (at 25.4 30.48 0)
  3940. (effects
  3941. (font
  3942. (size 1.27 1.27)
  3943. )
  3944. (hide yes)
  3945. )
  3946. )
  3947. (property "Partkeepr" "0917"
  3948. (at 25.4 30.48 0)
  3949. (effects
  3950. (font
  3951. (size 1.27 1.27)
  3952. )
  3953. (hide yes)
  3954. )
  3955. )
  3956. (pin "1"
  3957. (uuid "08d8c803-ebf5-4af1-a07e-38a616ab71fa")
  3958. )
  3959. (pin "2"
  3960. (uuid "1075d39a-7739-4154-adeb-6e6076553636")
  3961. )
  3962. (instances
  3963. (project "PT1000"
  3964. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  3965. (reference "R?")
  3966. (unit 1)
  3967. )
  3968. )
  3969. )
  3970. )
  3971. (symbol
  3972. (lib_name "TEST_1P_13")
  3973. (lib_id "conn:TEST_1P")
  3974. (at 34.29 30.48 0)
  3975. (unit 1)
  3976. (exclude_from_sim no)
  3977. (in_bom yes)
  3978. (on_board yes)
  3979. (dnp no)
  3980. (uuid "e2617379-c6cd-44c2-8a83-813114026d70")
  3981. (property "Reference" "PT?"
  3982. (at 33.02 27.94 0)
  3983. (effects
  3984. (font
  3985. (size 1.27 1.27)
  3986. )
  3987. (justify left)
  3988. )
  3989. )
  3990. (property "Value" " T_V+_U1"
  3991. (at 36.83 28.4479 0)
  3992. (effects
  3993. (font
  3994. (size 1.27 1.27)
  3995. )
  3996. (justify left)
  3997. (hide yes)
  3998. )
  3999. )
  4000. (property "Footprint" "PinHeader:PinHeader1"
  4001. (at 39.37 30.48 0)
  4002. (effects
  4003. (font
  4004. (size 1.27 1.27)
  4005. )
  4006. (hide yes)
  4007. )
  4008. )
  4009. (property "Datasheet" ""
  4010. (at 39.37 30.48 0)
  4011. (effects
  4012. (font
  4013. (size 1.27 1.27)
  4014. )
  4015. )
  4016. )
  4017. (property "Description" ""
  4018. (at 34.29 30.48 0)
  4019. (effects
  4020. (font
  4021. (size 1.27 1.27)
  4022. )
  4023. (hide yes)
  4024. )
  4025. )
  4026. (property "Partkeepr" "N/A"
  4027. (at 34.29 30.48 0)
  4028. (effects
  4029. (font
  4030. (size 1.27 1.27)
  4031. )
  4032. (hide yes)
  4033. )
  4034. )
  4035. (pin "1"
  4036. (uuid "a01ed7d0-063b-4772-a2b7-adbf0e41943a")
  4037. )
  4038. (instances
  4039. (project "PT1000"
  4040. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  4041. (reference "PT?")
  4042. (unit 1)
  4043. )
  4044. )
  4045. )
  4046. )
  4047. (symbol
  4048. (lib_name "TEST_1P_13")
  4049. (lib_id "conn:TEST_1P")
  4050. (at 38.1 118.11 0)
  4051. (unit 1)
  4052. (exclude_from_sim no)
  4053. (in_bom yes)
  4054. (on_board yes)
  4055. (dnp no)
  4056. (uuid "fbfa16b0-995c-461f-bfc2-a206762c9ee9")
  4057. (property "Reference" "PT?"
  4058. (at 36.83 115.57 0)
  4059. (effects
  4060. (font
  4061. (size 1.27 1.27)
  4062. )
  4063. (justify left)
  4064. )
  4065. )
  4066. (property "Value" " T_V-_U1"
  4067. (at 40.64 116.0779 0)
  4068. (effects
  4069. (font
  4070. (size 1.27 1.27)
  4071. )
  4072. (justify left)
  4073. (hide yes)
  4074. )
  4075. )
  4076. (property "Footprint" "PinHeader:PinHeader1"
  4077. (at 43.18 118.11 0)
  4078. (effects
  4079. (font
  4080. (size 1.27 1.27)
  4081. )
  4082. (hide yes)
  4083. )
  4084. )
  4085. (property "Datasheet" ""
  4086. (at 43.18 118.11 0)
  4087. (effects
  4088. (font
  4089. (size 1.27 1.27)
  4090. )
  4091. )
  4092. )
  4093. (property "Description" ""
  4094. (at 38.1 118.11 0)
  4095. (effects
  4096. (font
  4097. (size 1.27 1.27)
  4098. )
  4099. (hide yes)
  4100. )
  4101. )
  4102. (property "Partkeepr" "N/A"
  4103. (at 38.1 118.11 0)
  4104. (effects
  4105. (font
  4106. (size 1.27 1.27)
  4107. )
  4108. (hide yes)
  4109. )
  4110. )
  4111. (pin "1"
  4112. (uuid "afa1739f-4060-40ab-a05d-053e98730a84")
  4113. )
  4114. (instances
  4115. (project "PT1000"
  4116. (path "/3549bb14-5c3f-49ba-80ea-c3bc8c817384"
  4117. (reference "PT?")
  4118. (unit 1)
  4119. )
  4120. )
  4121. )
  4122. )
  4123. (sheet_instances
  4124. (path "/"
  4125. (page "1")
  4126. )
  4127. )
  4128. )