Salinity.kicad_sch 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "95600b21-50c0-4a93-8b4e-5082a310ea77")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "LMC6042_2"
  9. (exclude_from_sim no)
  10. (in_bom yes)
  11. (on_board yes)
  12. (property "Reference" "U2"
  13. (at 0 10.16 0)
  14. (effects
  15. (font
  16. (size 1.27 1.27)
  17. )
  18. )
  19. )
  20. (property "Value" "LMC6042_2"
  21. (at 0 7.62 0)
  22. (effects
  23. (font
  24. (size 1.27 1.27)
  25. )
  26. )
  27. )
  28. (property "Footprint" "U:SO8N"
  29. (at 0 0 0)
  30. (effects
  31. (font
  32. (size 1.27 1.27)
  33. )
  34. (hide yes)
  35. )
  36. )
  37. (property "Datasheet" ""
  38. (at 0 0 0)
  39. (effects
  40. (font
  41. (size 1.27 1.27)
  42. )
  43. (hide yes)
  44. )
  45. )
  46. (property "Description" ""
  47. (at 0 0 0)
  48. (effects
  49. (font
  50. (size 1.27 1.27)
  51. )
  52. (hide yes)
  53. )
  54. )
  55. (property "ki_locked" ""
  56. (at 0 0 0)
  57. (effects
  58. (font
  59. (size 1.27 1.27)
  60. )
  61. )
  62. )
  63. (symbol "LMC6042_2_1_1"
  64. (polyline
  65. (pts
  66. (xy -6.35 5.08) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08)
  67. )
  68. (stroke
  69. (width 0)
  70. (type default)
  71. )
  72. (fill
  73. (type none)
  74. )
  75. )
  76. (pin output line
  77. (at 8.89 0 180)
  78. (length 2.54)
  79. (name "OUT_A"
  80. (effects
  81. (font
  82. (size 1.27 1.27)
  83. )
  84. )
  85. )
  86. (number "1"
  87. (effects
  88. (font
  89. (size 1.27 1.27)
  90. )
  91. )
  92. )
  93. )
  94. (pin input line
  95. (at -8.89 2.54 0)
  96. (length 2.54)
  97. (name "V-"
  98. (effects
  99. (font
  100. (size 1.27 1.27)
  101. )
  102. )
  103. )
  104. (number "2"
  105. (effects
  106. (font
  107. (size 1.27 1.27)
  108. )
  109. )
  110. )
  111. )
  112. (pin input line
  113. (at -8.89 -2.54 0)
  114. (length 2.54)
  115. (name "V+"
  116. (effects
  117. (font
  118. (size 1.27 1.27)
  119. )
  120. )
  121. )
  122. (number "3"
  123. (effects
  124. (font
  125. (size 1.27 1.27)
  126. )
  127. )
  128. )
  129. )
  130. )
  131. (symbol "LMC6042_2_2_1"
  132. (polyline
  133. (pts
  134. (xy -6.35 3.81) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08) (xy -6.35 3.81)
  135. )
  136. (stroke
  137. (width 0)
  138. (type default)
  139. )
  140. (fill
  141. (type none)
  142. )
  143. )
  144. (pin input line
  145. (at -8.89 -2.54 0)
  146. (length 2.54)
  147. (name "V+"
  148. (effects
  149. (font
  150. (size 1.27 1.27)
  151. )
  152. )
  153. )
  154. (number "5"
  155. (effects
  156. (font
  157. (size 1.27 1.27)
  158. )
  159. )
  160. )
  161. )
  162. (pin input line
  163. (at -8.89 2.54 0)
  164. (length 2.54)
  165. (name "V-"
  166. (effects
  167. (font
  168. (size 1.27 1.27)
  169. )
  170. )
  171. )
  172. (number "6"
  173. (effects
  174. (font
  175. (size 1.27 1.27)
  176. )
  177. )
  178. )
  179. )
  180. (pin output line
  181. (at 8.89 0 180)
  182. (length 2.54)
  183. (name "OUT_A"
  184. (effects
  185. (font
  186. (size 1.27 1.27)
  187. )
  188. )
  189. )
  190. (number "7"
  191. (effects
  192. (font
  193. (size 1.27 1.27)
  194. )
  195. )
  196. )
  197. )
  198. )
  199. (symbol "LMC6042_2_3_1"
  200. (rectangle
  201. (start -2.54 2.54)
  202. (end 2.54 -2.54)
  203. (stroke
  204. (width 0)
  205. (type default)
  206. )
  207. (fill
  208. (type none)
  209. )
  210. )
  211. (pin power_in line
  212. (at -5.08 1.27 0)
  213. (length 2.54)
  214. (name "GND"
  215. (effects
  216. (font
  217. (size 1.27 1.27)
  218. )
  219. )
  220. )
  221. (number "4"
  222. (effects
  223. (font
  224. (size 1.27 1.27)
  225. )
  226. )
  227. )
  228. )
  229. (pin power_in line
  230. (at -5.08 -1.27 0)
  231. (length 2.54)
  232. (name "VCC"
  233. (effects
  234. (font
  235. (size 1.27 1.27)
  236. )
  237. )
  238. )
  239. (number "8"
  240. (effects
  241. (font
  242. (size 1.27 1.27)
  243. )
  244. )
  245. )
  246. )
  247. )
  248. )
  249. (symbol "LMC6042_3"
  250. (exclude_from_sim no)
  251. (in_bom yes)
  252. (on_board yes)
  253. (property "Reference" "U2"
  254. (at 0 10.16 0)
  255. (effects
  256. (font
  257. (size 1.27 1.27)
  258. )
  259. )
  260. )
  261. (property "Value" "LMC6042_3"
  262. (at 0 7.62 0)
  263. (effects
  264. (font
  265. (size 1.27 1.27)
  266. )
  267. )
  268. )
  269. (property "Footprint" "U:SO8N"
  270. (at 0 0 0)
  271. (effects
  272. (font
  273. (size 1.27 1.27)
  274. )
  275. (hide yes)
  276. )
  277. )
  278. (property "Datasheet" ""
  279. (at 0 0 0)
  280. (effects
  281. (font
  282. (size 1.27 1.27)
  283. )
  284. (hide yes)
  285. )
  286. )
  287. (property "Description" ""
  288. (at 0 0 0)
  289. (effects
  290. (font
  291. (size 1.27 1.27)
  292. )
  293. (hide yes)
  294. )
  295. )
  296. (property "ki_locked" ""
  297. (at 0 0 0)
  298. (effects
  299. (font
  300. (size 1.27 1.27)
  301. )
  302. )
  303. )
  304. (symbol "LMC6042_3_1_1"
  305. (polyline
  306. (pts
  307. (xy -6.35 5.08) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08)
  308. )
  309. (stroke
  310. (width 0)
  311. (type default)
  312. )
  313. (fill
  314. (type none)
  315. )
  316. )
  317. (pin output line
  318. (at 8.89 0 180)
  319. (length 2.54)
  320. (name "OUT_A"
  321. (effects
  322. (font
  323. (size 1.27 1.27)
  324. )
  325. )
  326. )
  327. (number "1"
  328. (effects
  329. (font
  330. (size 1.27 1.27)
  331. )
  332. )
  333. )
  334. )
  335. (pin input line
  336. (at -8.89 2.54 0)
  337. (length 2.54)
  338. (name "V-"
  339. (effects
  340. (font
  341. (size 1.27 1.27)
  342. )
  343. )
  344. )
  345. (number "2"
  346. (effects
  347. (font
  348. (size 1.27 1.27)
  349. )
  350. )
  351. )
  352. )
  353. (pin input line
  354. (at -8.89 -2.54 0)
  355. (length 2.54)
  356. (name "V+"
  357. (effects
  358. (font
  359. (size 1.27 1.27)
  360. )
  361. )
  362. )
  363. (number "3"
  364. (effects
  365. (font
  366. (size 1.27 1.27)
  367. )
  368. )
  369. )
  370. )
  371. )
  372. (symbol "LMC6042_3_2_1"
  373. (polyline
  374. (pts
  375. (xy -6.35 3.81) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08) (xy -6.35 3.81)
  376. )
  377. (stroke
  378. (width 0)
  379. (type default)
  380. )
  381. (fill
  382. (type none)
  383. )
  384. )
  385. (pin input line
  386. (at -8.89 -2.54 0)
  387. (length 2.54)
  388. (name "V+"
  389. (effects
  390. (font
  391. (size 1.27 1.27)
  392. )
  393. )
  394. )
  395. (number "5"
  396. (effects
  397. (font
  398. (size 1.27 1.27)
  399. )
  400. )
  401. )
  402. )
  403. (pin input line
  404. (at -8.89 2.54 0)
  405. (length 2.54)
  406. (name "V-"
  407. (effects
  408. (font
  409. (size 1.27 1.27)
  410. )
  411. )
  412. )
  413. (number "6"
  414. (effects
  415. (font
  416. (size 1.27 1.27)
  417. )
  418. )
  419. )
  420. )
  421. (pin output line
  422. (at 8.89 0 180)
  423. (length 2.54)
  424. (name "OUT_A"
  425. (effects
  426. (font
  427. (size 1.27 1.27)
  428. )
  429. )
  430. )
  431. (number "7"
  432. (effects
  433. (font
  434. (size 1.27 1.27)
  435. )
  436. )
  437. )
  438. )
  439. )
  440. (symbol "LMC6042_3_3_1"
  441. (rectangle
  442. (start -2.54 2.54)
  443. (end 2.54 -2.54)
  444. (stroke
  445. (width 0)
  446. (type default)
  447. )
  448. (fill
  449. (type none)
  450. )
  451. )
  452. (pin power_in line
  453. (at -5.08 1.27 0)
  454. (length 2.54)
  455. (name "GND"
  456. (effects
  457. (font
  458. (size 1.27 1.27)
  459. )
  460. )
  461. )
  462. (number "4"
  463. (effects
  464. (font
  465. (size 1.27 1.27)
  466. )
  467. )
  468. )
  469. )
  470. (pin power_in line
  471. (at -5.08 -1.27 0)
  472. (length 2.54)
  473. (name "VCC"
  474. (effects
  475. (font
  476. (size 1.27 1.27)
  477. )
  478. )
  479. )
  480. (number "8"
  481. (effects
  482. (font
  483. (size 1.27 1.27)
  484. )
  485. )
  486. )
  487. )
  488. )
  489. )
  490. (symbol "TEST_1P_5"
  491. (pin_numbers hide)
  492. (pin_names
  493. (offset 0.762) hide)
  494. (exclude_from_sim no)
  495. (in_bom yes)
  496. (on_board yes)
  497. (property "Reference" "PT"
  498. (at 0 1.27 0)
  499. (effects
  500. (font
  501. (size 1.27 1.27)
  502. )
  503. )
  504. )
  505. (property "Value" "TEST_1P_5"
  506. (at 0 5.08 0)
  507. (effects
  508. (font
  509. (size 1.27 1.27)
  510. )
  511. (hide yes)
  512. )
  513. )
  514. (property "Footprint" ""
  515. (at 5.08 0 0)
  516. (effects
  517. (font
  518. (size 1.27 1.27)
  519. )
  520. )
  521. )
  522. (property "Datasheet" ""
  523. (at 5.08 0 0)
  524. (effects
  525. (font
  526. (size 1.27 1.27)
  527. )
  528. )
  529. )
  530. (property "Description" ""
  531. (at 0 0 0)
  532. (effects
  533. (font
  534. (size 1.27 1.27)
  535. )
  536. (hide yes)
  537. )
  538. )
  539. (symbol "TEST_1P_5_0_1"
  540. (circle
  541. (center 0 0)
  542. (radius 0.762)
  543. (stroke
  544. (width 0)
  545. (type default)
  546. )
  547. (fill
  548. (type none)
  549. )
  550. )
  551. )
  552. (symbol "TEST_1P_5_1_1"
  553. (pin passive line
  554. (at 0 0 90)
  555. (length 0)
  556. (name "1"
  557. (effects
  558. (font
  559. (size 1.27 1.27)
  560. )
  561. )
  562. )
  563. (number "1"
  564. (effects
  565. (font
  566. (size 1.27 1.27)
  567. )
  568. )
  569. )
  570. )
  571. )
  572. )
  573. (symbol "TI:LMC6042"
  574. (exclude_from_sim no)
  575. (in_bom yes)
  576. (on_board yes)
  577. (property "Reference" "U2"
  578. (at 0 10.16 0)
  579. (effects
  580. (font
  581. (size 1.27 1.27)
  582. )
  583. )
  584. )
  585. (property "Value" "LMC6042"
  586. (at 0 7.62 0)
  587. (effects
  588. (font
  589. (size 1.27 1.27)
  590. )
  591. )
  592. )
  593. (property "Footprint" "U:SO8N"
  594. (at 0 0 0)
  595. (effects
  596. (font
  597. (size 1.27 1.27)
  598. )
  599. (hide yes)
  600. )
  601. )
  602. (property "Datasheet" ""
  603. (at 0 0 0)
  604. (effects
  605. (font
  606. (size 1.27 1.27)
  607. )
  608. (hide yes)
  609. )
  610. )
  611. (property "Description" ""
  612. (at 0 0 0)
  613. (effects
  614. (font
  615. (size 1.27 1.27)
  616. )
  617. (hide yes)
  618. )
  619. )
  620. (property "ki_locked" ""
  621. (at 0 0 0)
  622. (effects
  623. (font
  624. (size 1.27 1.27)
  625. )
  626. )
  627. )
  628. (symbol "LMC6042_1_1"
  629. (polyline
  630. (pts
  631. (xy -6.35 5.08) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08)
  632. )
  633. (stroke
  634. (width 0)
  635. (type default)
  636. )
  637. (fill
  638. (type none)
  639. )
  640. )
  641. (pin output line
  642. (at 8.89 0 180)
  643. (length 2.54)
  644. (name "OUT_A"
  645. (effects
  646. (font
  647. (size 1.27 1.27)
  648. )
  649. )
  650. )
  651. (number "1"
  652. (effects
  653. (font
  654. (size 1.27 1.27)
  655. )
  656. )
  657. )
  658. )
  659. (pin input line
  660. (at -8.89 2.54 0)
  661. (length 2.54)
  662. (name "V-"
  663. (effects
  664. (font
  665. (size 1.27 1.27)
  666. )
  667. )
  668. )
  669. (number "2"
  670. (effects
  671. (font
  672. (size 1.27 1.27)
  673. )
  674. )
  675. )
  676. )
  677. (pin input line
  678. (at -8.89 -2.54 0)
  679. (length 2.54)
  680. (name "V+"
  681. (effects
  682. (font
  683. (size 1.27 1.27)
  684. )
  685. )
  686. )
  687. (number "3"
  688. (effects
  689. (font
  690. (size 1.27 1.27)
  691. )
  692. )
  693. )
  694. )
  695. )
  696. (symbol "LMC6042_2_1"
  697. (polyline
  698. (pts
  699. (xy -6.35 3.81) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08) (xy -6.35 3.81)
  700. )
  701. (stroke
  702. (width 0)
  703. (type default)
  704. )
  705. (fill
  706. (type none)
  707. )
  708. )
  709. (pin input line
  710. (at -8.89 -2.54 0)
  711. (length 2.54)
  712. (name "V+"
  713. (effects
  714. (font
  715. (size 1.27 1.27)
  716. )
  717. )
  718. )
  719. (number "5"
  720. (effects
  721. (font
  722. (size 1.27 1.27)
  723. )
  724. )
  725. )
  726. )
  727. (pin input line
  728. (at -8.89 2.54 0)
  729. (length 2.54)
  730. (name "V-"
  731. (effects
  732. (font
  733. (size 1.27 1.27)
  734. )
  735. )
  736. )
  737. (number "6"
  738. (effects
  739. (font
  740. (size 1.27 1.27)
  741. )
  742. )
  743. )
  744. )
  745. (pin output line
  746. (at 8.89 0 180)
  747. (length 2.54)
  748. (name "OUT_A"
  749. (effects
  750. (font
  751. (size 1.27 1.27)
  752. )
  753. )
  754. )
  755. (number "7"
  756. (effects
  757. (font
  758. (size 1.27 1.27)
  759. )
  760. )
  761. )
  762. )
  763. )
  764. (symbol "LMC6042_3_1"
  765. (rectangle
  766. (start -2.54 2.54)
  767. (end 2.54 -2.54)
  768. (stroke
  769. (width 0)
  770. (type default)
  771. )
  772. (fill
  773. (type none)
  774. )
  775. )
  776. (pin power_in line
  777. (at -5.08 1.27 0)
  778. (length 2.54)
  779. (name "GND"
  780. (effects
  781. (font
  782. (size 1.27 1.27)
  783. )
  784. )
  785. )
  786. (number "4"
  787. (effects
  788. (font
  789. (size 1.27 1.27)
  790. )
  791. )
  792. )
  793. )
  794. (pin power_in line
  795. (at -5.08 -1.27 0)
  796. (length 2.54)
  797. (name "VCC"
  798. (effects
  799. (font
  800. (size 1.27 1.27)
  801. )
  802. )
  803. )
  804. (number "8"
  805. (effects
  806. (font
  807. (size 1.27 1.27)
  808. )
  809. )
  810. )
  811. )
  812. )
  813. )
  814. (symbol "conn:CONN_01X02"
  815. (pin_names
  816. (offset 1.016) hide)
  817. (exclude_from_sim no)
  818. (in_bom yes)
  819. (on_board yes)
  820. (property "Reference" "P"
  821. (at 0 3.81 0)
  822. (effects
  823. (font
  824. (size 1.27 1.27)
  825. )
  826. )
  827. )
  828. (property "Value" "CONN_01X02"
  829. (at 2.54 0 90)
  830. (effects
  831. (font
  832. (size 1.27 1.27)
  833. )
  834. )
  835. )
  836. (property "Footprint" ""
  837. (at 0 0 0)
  838. (effects
  839. (font
  840. (size 1.27 1.27)
  841. )
  842. )
  843. )
  844. (property "Datasheet" ""
  845. (at 0 0 0)
  846. (effects
  847. (font
  848. (size 1.27 1.27)
  849. )
  850. )
  851. )
  852. (property "Description" ""
  853. (at 0 0 0)
  854. (effects
  855. (font
  856. (size 1.27 1.27)
  857. )
  858. (hide yes)
  859. )
  860. )
  861. (property "ki_fp_filters" "Pin_Header_Straight_1X02 Pin_Header_Angled_1X02 Socket_Strip_Straight_1X02 Socket_Strip_Angled_1X02"
  862. (at 0 0 0)
  863. (effects
  864. (font
  865. (size 1.27 1.27)
  866. )
  867. (hide yes)
  868. )
  869. )
  870. (symbol "CONN_01X02_0_1"
  871. (rectangle
  872. (start -1.27 -1.143)
  873. (end 0.254 -1.397)
  874. (stroke
  875. (width 0)
  876. (type default)
  877. )
  878. (fill
  879. (type none)
  880. )
  881. )
  882. (rectangle
  883. (start -1.27 1.397)
  884. (end 0.254 1.143)
  885. (stroke
  886. (width 0)
  887. (type default)
  888. )
  889. (fill
  890. (type none)
  891. )
  892. )
  893. (rectangle
  894. (start -1.27 2.54)
  895. (end 1.27 -2.54)
  896. (stroke
  897. (width 0)
  898. (type default)
  899. )
  900. (fill
  901. (type none)
  902. )
  903. )
  904. )
  905. (symbol "CONN_01X02_1_1"
  906. (pin passive line
  907. (at -5.08 1.27 0)
  908. (length 3.81)
  909. (name "P1"
  910. (effects
  911. (font
  912. (size 1.27 1.27)
  913. )
  914. )
  915. )
  916. (number "1"
  917. (effects
  918. (font
  919. (size 1.27 1.27)
  920. )
  921. )
  922. )
  923. )
  924. (pin passive line
  925. (at -5.08 -1.27 0)
  926. (length 3.81)
  927. (name "P2"
  928. (effects
  929. (font
  930. (size 1.27 1.27)
  931. )
  932. )
  933. )
  934. (number "2"
  935. (effects
  936. (font
  937. (size 1.27 1.27)
  938. )
  939. )
  940. )
  941. )
  942. )
  943. )
  944. (symbol "conn:TEST_1P"
  945. (pin_numbers hide)
  946. (pin_names
  947. (offset 0.762) hide)
  948. (exclude_from_sim no)
  949. (in_bom yes)
  950. (on_board yes)
  951. (property "Reference" "PT"
  952. (at 0 1.27 0)
  953. (effects
  954. (font
  955. (size 1.27 1.27)
  956. )
  957. )
  958. )
  959. (property "Value" "TEST_1P"
  960. (at 0 5.08 0)
  961. (effects
  962. (font
  963. (size 1.27 1.27)
  964. )
  965. (hide yes)
  966. )
  967. )
  968. (property "Footprint" ""
  969. (at 5.08 0 0)
  970. (effects
  971. (font
  972. (size 1.27 1.27)
  973. )
  974. )
  975. )
  976. (property "Datasheet" ""
  977. (at 5.08 0 0)
  978. (effects
  979. (font
  980. (size 1.27 1.27)
  981. )
  982. )
  983. )
  984. (property "Description" ""
  985. (at 0 0 0)
  986. (effects
  987. (font
  988. (size 1.27 1.27)
  989. )
  990. (hide yes)
  991. )
  992. )
  993. (symbol "TEST_1P_0_1"
  994. (circle
  995. (center 0 0)
  996. (radius 0.762)
  997. (stroke
  998. (width 0)
  999. (type default)
  1000. )
  1001. (fill
  1002. (type none)
  1003. )
  1004. )
  1005. )
  1006. (symbol "TEST_1P_1_1"
  1007. (pin passive line
  1008. (at 0 0 90)
  1009. (length 0)
  1010. (name "1"
  1011. (effects
  1012. (font
  1013. (size 1.27 1.27)
  1014. )
  1015. )
  1016. )
  1017. (number "1"
  1018. (effects
  1019. (font
  1020. (size 1.27 1.27)
  1021. )
  1022. )
  1023. )
  1024. )
  1025. )
  1026. )
  1027. (symbol "global:C"
  1028. (pin_numbers hide)
  1029. (pin_names
  1030. (offset 0.254)
  1031. )
  1032. (exclude_from_sim no)
  1033. (in_bom yes)
  1034. (on_board yes)
  1035. (property "Reference" "C"
  1036. (at 0.635 2.54 0)
  1037. (effects
  1038. (font
  1039. (size 1.27 1.27)
  1040. )
  1041. (justify left)
  1042. )
  1043. )
  1044. (property "Value" "C"
  1045. (at 0.635 -2.54 0)
  1046. (effects
  1047. (font
  1048. (size 1.27 1.27)
  1049. )
  1050. (justify left)
  1051. )
  1052. )
  1053. (property "Footprint" ""
  1054. (at 0.9652 -3.81 0)
  1055. (effects
  1056. (font
  1057. (size 1.27 1.27)
  1058. )
  1059. )
  1060. )
  1061. (property "Datasheet" ""
  1062. (at 0 0 0)
  1063. (effects
  1064. (font
  1065. (size 1.27 1.27)
  1066. )
  1067. )
  1068. )
  1069. (property "Description" ""
  1070. (at 0 0 0)
  1071. (effects
  1072. (font
  1073. (size 1.27 1.27)
  1074. )
  1075. (hide yes)
  1076. )
  1077. )
  1078. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*"
  1079. (at 0 0 0)
  1080. (effects
  1081. (font
  1082. (size 1.27 1.27)
  1083. )
  1084. (hide yes)
  1085. )
  1086. )
  1087. (symbol "C_0_1"
  1088. (polyline
  1089. (pts
  1090. (xy -2.032 -0.762) (xy 2.032 -0.762)
  1091. )
  1092. (stroke
  1093. (width 0.508)
  1094. (type default)
  1095. )
  1096. (fill
  1097. (type none)
  1098. )
  1099. )
  1100. (polyline
  1101. (pts
  1102. (xy -2.032 0.762) (xy 2.032 0.762)
  1103. )
  1104. (stroke
  1105. (width 0.508)
  1106. (type default)
  1107. )
  1108. (fill
  1109. (type none)
  1110. )
  1111. )
  1112. )
  1113. (symbol "C_1_1"
  1114. (pin passive line
  1115. (at 0 3.81 270)
  1116. (length 2.794)
  1117. (name "~"
  1118. (effects
  1119. (font
  1120. (size 1.016 1.016)
  1121. )
  1122. )
  1123. )
  1124. (number "1"
  1125. (effects
  1126. (font
  1127. (size 1.016 1.016)
  1128. )
  1129. )
  1130. )
  1131. )
  1132. (pin passive line
  1133. (at 0 -3.81 90)
  1134. (length 2.794)
  1135. (name "~"
  1136. (effects
  1137. (font
  1138. (size 1.016 1.016)
  1139. )
  1140. )
  1141. )
  1142. (number "2"
  1143. (effects
  1144. (font
  1145. (size 1.016 1.016)
  1146. )
  1147. )
  1148. )
  1149. )
  1150. )
  1151. )
  1152. (symbol "global:D"
  1153. (pin_numbers hide)
  1154. (pin_names
  1155. (offset 1.016) hide)
  1156. (exclude_from_sim no)
  1157. (in_bom yes)
  1158. (on_board yes)
  1159. (property "Reference" "D"
  1160. (at 0 2.54 0)
  1161. (effects
  1162. (font
  1163. (size 1.27 1.27)
  1164. )
  1165. )
  1166. )
  1167. (property "Value" "D"
  1168. (at 0 -2.54 0)
  1169. (effects
  1170. (font
  1171. (size 1.27 1.27)
  1172. )
  1173. )
  1174. )
  1175. (property "Footprint" ""
  1176. (at 0 0 0)
  1177. (effects
  1178. (font
  1179. (size 1.27 1.27)
  1180. )
  1181. )
  1182. )
  1183. (property "Datasheet" ""
  1184. (at 0 0 0)
  1185. (effects
  1186. (font
  1187. (size 1.27 1.27)
  1188. )
  1189. )
  1190. )
  1191. (property "Description" ""
  1192. (at 0 0 0)
  1193. (effects
  1194. (font
  1195. (size 1.27 1.27)
  1196. )
  1197. (hide yes)
  1198. )
  1199. )
  1200. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*"
  1201. (at 0 0 0)
  1202. (effects
  1203. (font
  1204. (size 1.27 1.27)
  1205. )
  1206. (hide yes)
  1207. )
  1208. )
  1209. (symbol "D_0_1"
  1210. (polyline
  1211. (pts
  1212. (xy -1.27 1.27) (xy -1.27 -1.27)
  1213. )
  1214. (stroke
  1215. (width 0.1524)
  1216. (type default)
  1217. )
  1218. (fill
  1219. (type none)
  1220. )
  1221. )
  1222. (polyline
  1223. (pts
  1224. (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
  1225. )
  1226. (stroke
  1227. (width 0)
  1228. (type default)
  1229. )
  1230. (fill
  1231. (type outline)
  1232. )
  1233. )
  1234. )
  1235. (symbol "D_1_1"
  1236. (pin passive line
  1237. (at -3.81 0 0)
  1238. (length 2.54)
  1239. (name "K"
  1240. (effects
  1241. (font
  1242. (size 1.27 1.27)
  1243. )
  1244. )
  1245. )
  1246. (number "1"
  1247. (effects
  1248. (font
  1249. (size 1.27 1.27)
  1250. )
  1251. )
  1252. )
  1253. )
  1254. (pin passive line
  1255. (at 3.81 0 180)
  1256. (length 2.54)
  1257. (name "A"
  1258. (effects
  1259. (font
  1260. (size 1.27 1.27)
  1261. )
  1262. )
  1263. )
  1264. (number "2"
  1265. (effects
  1266. (font
  1267. (size 1.27 1.27)
  1268. )
  1269. )
  1270. )
  1271. )
  1272. )
  1273. )
  1274. (symbol "global:Poten"
  1275. (pin_numbers hide)
  1276. (pin_names
  1277. (offset 0)
  1278. )
  1279. (exclude_from_sim no)
  1280. (in_bom yes)
  1281. (on_board yes)
  1282. (property "Reference" "VR"
  1283. (at 2.032 0 90)
  1284. (effects
  1285. (font
  1286. (size 1.27 1.27)
  1287. )
  1288. )
  1289. )
  1290. (property "Value" "Poten"
  1291. (at 0 0 90)
  1292. (effects
  1293. (font
  1294. (size 1.27 1.27)
  1295. )
  1296. )
  1297. )
  1298. (property "Footprint" ""
  1299. (at -1.778 0 90)
  1300. (effects
  1301. (font
  1302. (size 1.27 1.27)
  1303. )
  1304. )
  1305. )
  1306. (property "Datasheet" ""
  1307. (at 0 0 0)
  1308. (effects
  1309. (font
  1310. (size 1.27 1.27)
  1311. )
  1312. )
  1313. )
  1314. (property "Description" ""
  1315. (at 0 0 0)
  1316. (effects
  1317. (font
  1318. (size 1.27 1.27)
  1319. )
  1320. (hide yes)
  1321. )
  1322. )
  1323. (property "ki_fp_filters" "R_* Resistor_*"
  1324. (at 0 0 0)
  1325. (effects
  1326. (font
  1327. (size 1.27 1.27)
  1328. )
  1329. (hide yes)
  1330. )
  1331. )
  1332. (symbol "Poten_0_1"
  1333. (rectangle
  1334. (start -1.016 -2.54)
  1335. (end 1.016 2.54)
  1336. (stroke
  1337. (width 0.254)
  1338. (type default)
  1339. )
  1340. (fill
  1341. (type none)
  1342. )
  1343. )
  1344. (polyline
  1345. (pts
  1346. (xy -1.905 -0.635) (xy -1.27 0) (xy -1.905 0.635)
  1347. )
  1348. (stroke
  1349. (width 0)
  1350. (type default)
  1351. )
  1352. (fill
  1353. (type none)
  1354. )
  1355. )
  1356. )
  1357. (symbol "Poten_1_1"
  1358. (pin passive line
  1359. (at 0 3.81 270)
  1360. (length 1.27)
  1361. (name "~"
  1362. (effects
  1363. (font
  1364. (size 1.27 1.27)
  1365. )
  1366. )
  1367. )
  1368. (number "1"
  1369. (effects
  1370. (font
  1371. (size 1.27 1.27)
  1372. )
  1373. )
  1374. )
  1375. )
  1376. (pin passive line
  1377. (at -3.81 0 0)
  1378. (length 2.54)
  1379. (name "~"
  1380. (effects
  1381. (font
  1382. (size 1.27 1.27)
  1383. )
  1384. )
  1385. )
  1386. (number "2"
  1387. (effects
  1388. (font
  1389. (size 1.27 1.27)
  1390. )
  1391. )
  1392. )
  1393. )
  1394. (pin passive line
  1395. (at 0 -3.81 90)
  1396. (length 1.27)
  1397. (name "~"
  1398. (effects
  1399. (font
  1400. (size 1.27 1.27)
  1401. )
  1402. )
  1403. )
  1404. (number "3"
  1405. (effects
  1406. (font
  1407. (size 1.27 1.27)
  1408. )
  1409. )
  1410. )
  1411. )
  1412. )
  1413. )
  1414. (symbol "global:R"
  1415. (pin_numbers hide)
  1416. (pin_names
  1417. (offset 0)
  1418. )
  1419. (exclude_from_sim no)
  1420. (in_bom yes)
  1421. (on_board yes)
  1422. (property "Reference" "R"
  1423. (at 2.032 0 90)
  1424. (effects
  1425. (font
  1426. (size 1.27 1.27)
  1427. )
  1428. )
  1429. )
  1430. (property "Value" "R"
  1431. (at 0 0 90)
  1432. (effects
  1433. (font
  1434. (size 1.27 1.27)
  1435. )
  1436. )
  1437. )
  1438. (property "Footprint" ""
  1439. (at -1.778 0 90)
  1440. (effects
  1441. (font
  1442. (size 1.27 1.27)
  1443. )
  1444. )
  1445. )
  1446. (property "Datasheet" ""
  1447. (at 0 0 0)
  1448. (effects
  1449. (font
  1450. (size 1.27 1.27)
  1451. )
  1452. )
  1453. )
  1454. (property "Description" ""
  1455. (at 0 0 0)
  1456. (effects
  1457. (font
  1458. (size 1.27 1.27)
  1459. )
  1460. (hide yes)
  1461. )
  1462. )
  1463. (property "ki_fp_filters" "R_* Resistor_*"
  1464. (at 0 0 0)
  1465. (effects
  1466. (font
  1467. (size 1.27 1.27)
  1468. )
  1469. (hide yes)
  1470. )
  1471. )
  1472. (symbol "R_0_1"
  1473. (rectangle
  1474. (start -1.016 -2.54)
  1475. (end 1.016 2.54)
  1476. (stroke
  1477. (width 0.254)
  1478. (type default)
  1479. )
  1480. (fill
  1481. (type none)
  1482. )
  1483. )
  1484. )
  1485. (symbol "R_1_1"
  1486. (pin passive line
  1487. (at 0 3.81 270)
  1488. (length 1.27)
  1489. (name "~"
  1490. (effects
  1491. (font
  1492. (size 1.27 1.27)
  1493. )
  1494. )
  1495. )
  1496. (number "1"
  1497. (effects
  1498. (font
  1499. (size 1.27 1.27)
  1500. )
  1501. )
  1502. )
  1503. )
  1504. (pin passive line
  1505. (at 0 -3.81 90)
  1506. (length 1.27)
  1507. (name "~"
  1508. (effects
  1509. (font
  1510. (size 1.27 1.27)
  1511. )
  1512. )
  1513. )
  1514. (number "2"
  1515. (effects
  1516. (font
  1517. (size 1.27 1.27)
  1518. )
  1519. )
  1520. )
  1521. )
  1522. )
  1523. )
  1524. )
  1525. (junction
  1526. (at 77.47 46.99)
  1527. (diameter 0)
  1528. (color 0 0 0 0)
  1529. (uuid "012d4fdc-9499-4b46-b7e6-ed9389c18ac5")
  1530. )
  1531. (junction
  1532. (at 86.36 34.29)
  1533. (diameter 0)
  1534. (color 0 0 0 0)
  1535. (uuid "0da25b70-ebfe-4726-bf2f-d5435f7057ad")
  1536. )
  1537. (junction
  1538. (at 152.4 31.75)
  1539. (diameter 0)
  1540. (color 0 0 0 0)
  1541. (uuid "18adc69b-55db-4833-b89d-77d84a6cdb5c")
  1542. )
  1543. (junction
  1544. (at 67.31 46.99)
  1545. (diameter 0)
  1546. (color 0 0 0 0)
  1547. (uuid "1940775d-be64-4954-8b3d-1c773b488ceb")
  1548. )
  1549. (junction
  1550. (at 121.92 43.18)
  1551. (diameter 0)
  1552. (color 0 0 0 0)
  1553. (uuid "1e586f74-59c4-416a-bb6a-fb30bcfd3f77")
  1554. )
  1555. (junction
  1556. (at 63.5 46.99)
  1557. (diameter 0)
  1558. (color 0 0 0 0)
  1559. (uuid "2857d113-4845-4f76-a9b3-eee1d54b3476")
  1560. )
  1561. (junction
  1562. (at 143.51 31.75)
  1563. (diameter 0)
  1564. (color 0 0 0 0)
  1565. (uuid "324bad64-8a37-4390-a8de-282eff64d02e")
  1566. )
  1567. (junction
  1568. (at 45.72 49.53)
  1569. (diameter 0)
  1570. (color 0 0 0 0)
  1571. (uuid "37e55413-4b16-41a2-84fc-41c19da86213")
  1572. )
  1573. (junction
  1574. (at 97.79 34.29)
  1575. (diameter 0)
  1576. (color 0 0 0 0)
  1577. (uuid "657c77c9-2bde-4dfb-a5a4-303707815212")
  1578. )
  1579. (junction
  1580. (at 86.36 29.21)
  1581. (diameter 0)
  1582. (color 0 0 0 0)
  1583. (uuid "81d6f28b-1535-4da4-a6f2-533c2e690df6")
  1584. )
  1585. (junction
  1586. (at 125.73 43.18)
  1587. (diameter 0)
  1588. (color 0 0 0 0)
  1589. (uuid "a5d12a8a-518b-4117-8e63-1ef4a4e52b80")
  1590. )
  1591. (junction
  1592. (at 152.4 24.13)
  1593. (diameter 0)
  1594. (color 0 0 0 0)
  1595. (uuid "af386f1d-670b-4a83-88a6-021bc0a34dfd")
  1596. )
  1597. (junction
  1598. (at 101.6 43.18)
  1599. (diameter 0)
  1600. (color 0 0 0 0)
  1601. (uuid "ba62d390-fc10-48a4-8c8a-b9124a0993fa")
  1602. )
  1603. (junction
  1604. (at 45.72 44.45)
  1605. (diameter 0)
  1606. (color 0 0 0 0)
  1607. (uuid "c18531f5-05b1-481d-b522-10c0c374b0c8")
  1608. )
  1609. (junction
  1610. (at 143.51 24.13)
  1611. (diameter 0)
  1612. (color 0 0 0 0)
  1613. (uuid "c716b476-5175-49b2-8997-bd28919561d3")
  1614. )
  1615. (no_connect
  1616. (at 97.79 19.05)
  1617. (uuid "73228ae0-b731-4e72-8d3c-7b8d22d9673c")
  1618. )
  1619. (wire
  1620. (pts
  1621. (xy 83.82 46.99) (xy 83.82 45.72)
  1622. )
  1623. (stroke
  1624. (width 0)
  1625. (type default)
  1626. )
  1627. (uuid "04a4f287-3e79-447a-b0b6-9964035325da")
  1628. )
  1629. (wire
  1630. (pts
  1631. (xy 97.79 26.67) (xy 97.79 34.29)
  1632. )
  1633. (stroke
  1634. (width 0)
  1635. (type default)
  1636. )
  1637. (uuid "0632e67b-7d88-44b4-97db-b2bf78d7b445")
  1638. )
  1639. (wire
  1640. (pts
  1641. (xy 143.51 31.75) (xy 152.4 31.75)
  1642. )
  1643. (stroke
  1644. (width 0)
  1645. (type default)
  1646. )
  1647. (uuid "0a747082-0770-425c-b880-744cad9265c8")
  1648. )
  1649. (wire
  1650. (pts
  1651. (xy 86.36 29.21) (xy 82.55 29.21)
  1652. )
  1653. (stroke
  1654. (width 0)
  1655. (type default)
  1656. )
  1657. (uuid "44f5fc05-e79a-4551-a8be-9ac51b69f2d8")
  1658. )
  1659. (wire
  1660. (pts
  1661. (xy 63.5 46.99) (xy 67.31 46.99)
  1662. )
  1663. (stroke
  1664. (width 0)
  1665. (type default)
  1666. )
  1667. (uuid "48b41e38-8971-4f86-b295-1d59e36a4b6a")
  1668. )
  1669. (wire
  1670. (pts
  1671. (xy 152.4 31.75) (xy 161.29 31.75)
  1672. )
  1673. (stroke
  1674. (width 0)
  1675. (type default)
  1676. )
  1677. (uuid "49528dfc-bc8a-423d-9247-86191030f816")
  1678. )
  1679. (wire
  1680. (pts
  1681. (xy 86.36 34.29) (xy 86.36 29.21)
  1682. )
  1683. (stroke
  1684. (width 0)
  1685. (type default)
  1686. )
  1687. (uuid "4badf81c-ed65-47bb-9be2-da5e6186720c")
  1688. )
  1689. (wire
  1690. (pts
  1691. (xy 77.47 46.99) (xy 77.47 48.26)
  1692. )
  1693. (stroke
  1694. (width 0)
  1695. (type default)
  1696. )
  1697. (uuid "50e306ea-451b-4b2b-bffe-5e1edf36a6eb")
  1698. )
  1699. (wire
  1700. (pts
  1701. (xy 83.82 34.29) (xy 83.82 40.64)
  1702. )
  1703. (stroke
  1704. (width 0)
  1705. (type default)
  1706. )
  1707. (uuid "59db3af2-e56c-4686-ab0d-ba55e38a15f6")
  1708. )
  1709. (wire
  1710. (pts
  1711. (xy 101.6 43.18) (xy 107.95 43.18)
  1712. )
  1713. (stroke
  1714. (width 0)
  1715. (type default)
  1716. )
  1717. (uuid "5e450ab0-eea7-48c0-83c6-602947c7c085")
  1718. )
  1719. (wire
  1720. (pts
  1721. (xy 49.53 57.15) (xy 45.72 57.15)
  1722. )
  1723. (stroke
  1724. (width 0)
  1725. (type default)
  1726. )
  1727. (uuid "60ed7ed1-3d42-4344-81f0-94bdd5c836a0")
  1728. )
  1729. (wire
  1730. (pts
  1731. (xy 86.36 34.29) (xy 83.82 34.29)
  1732. )
  1733. (stroke
  1734. (width 0)
  1735. (type default)
  1736. )
  1737. (uuid "6ab52ec4-d8e0-48a2-bb93-7ca80e3032e1")
  1738. )
  1739. (wire
  1740. (pts
  1741. (xy 86.36 29.21) (xy 93.98 29.21)
  1742. )
  1743. (stroke
  1744. (width 0)
  1745. (type default)
  1746. )
  1747. (uuid "6cf4bafe-468f-4104-9fd5-ffb434b0561b")
  1748. )
  1749. (wire
  1750. (pts
  1751. (xy 152.4 24.13) (xy 161.29 24.13)
  1752. )
  1753. (stroke
  1754. (width 0)
  1755. (type default)
  1756. )
  1757. (uuid "72f01686-73d1-4049-922b-800c784712c5")
  1758. )
  1759. (wire
  1760. (pts
  1761. (xy 77.47 46.99) (xy 83.82 46.99)
  1762. )
  1763. (stroke
  1764. (width 0)
  1765. (type default)
  1766. )
  1767. (uuid "7eb7f49e-6cc3-4b99-a5d4-d4c5e54f7130")
  1768. )
  1769. (wire
  1770. (pts
  1771. (xy 45.72 36.83) (xy 45.72 44.45)
  1772. )
  1773. (stroke
  1774. (width 0)
  1775. (type default)
  1776. )
  1777. (uuid "914ab055-ac86-4fb0-aecd-bb0f2b30fa5a")
  1778. )
  1779. (wire
  1780. (pts
  1781. (xy 143.51 24.13) (xy 152.4 24.13)
  1782. )
  1783. (stroke
  1784. (width 0)
  1785. (type default)
  1786. )
  1787. (uuid "9304163d-c303-4037-978b-d6ae77b679f5")
  1788. )
  1789. (wire
  1790. (pts
  1791. (xy 97.79 34.29) (xy 101.6 34.29)
  1792. )
  1793. (stroke
  1794. (width 0)
  1795. (type default)
  1796. )
  1797. (uuid "971484c6-79e7-4a62-9365-4d3b876ddb91")
  1798. )
  1799. (wire
  1800. (pts
  1801. (xy 67.31 46.99) (xy 68.58 46.99)
  1802. )
  1803. (stroke
  1804. (width 0)
  1805. (type default)
  1806. )
  1807. (uuid "9aef5d49-8c0f-4e09-a3ed-6de87d263f56")
  1808. )
  1809. (wire
  1810. (pts
  1811. (xy 161.29 24.13) (xy 161.29 26.67)
  1812. )
  1813. (stroke
  1814. (width 0)
  1815. (type default)
  1816. )
  1817. (uuid "a676c616-0d04-400e-9970-2fd42c4e3580")
  1818. )
  1819. (wire
  1820. (pts
  1821. (xy 45.72 57.15) (xy 45.72 49.53)
  1822. )
  1823. (stroke
  1824. (width 0)
  1825. (type default)
  1826. )
  1827. (uuid "b4ab3a88-6eb3-4a10-ad2d-c223517b810e")
  1828. )
  1829. (wire
  1830. (pts
  1831. (xy 63.5 46.99) (xy 63.5 36.83)
  1832. )
  1833. (stroke
  1834. (width 0)
  1835. (type default)
  1836. )
  1837. (uuid "b6e9c4e3-7b56-4c31-8b13-9a16637b789e")
  1838. )
  1839. (wire
  1840. (pts
  1841. (xy 50.8 36.83) (xy 45.72 36.83)
  1842. )
  1843. (stroke
  1844. (width 0)
  1845. (type default)
  1846. )
  1847. (uuid "b813184a-5ada-4a3d-a28a-92ca8434533b")
  1848. )
  1849. (wire
  1850. (pts
  1851. (xy 121.92 43.18) (xy 125.73 43.18)
  1852. )
  1853. (stroke
  1854. (width 0)
  1855. (type default)
  1856. )
  1857. (uuid "c0159134-cc4a-4a10-93fc-ec367d4fadb0")
  1858. )
  1859. (wire
  1860. (pts
  1861. (xy 63.5 36.83) (xy 58.42 36.83)
  1862. )
  1863. (stroke
  1864. (width 0)
  1865. (type default)
  1866. )
  1867. (uuid "c4cfc078-2c5b-49e3-bf99-8c62e76427b8")
  1868. )
  1869. (wire
  1870. (pts
  1871. (xy 96.52 34.29) (xy 97.79 34.29)
  1872. )
  1873. (stroke
  1874. (width 0)
  1875. (type default)
  1876. )
  1877. (uuid "c8fe2d30-d046-4994-b77a-c9af88dcf503")
  1878. )
  1879. (wire
  1880. (pts
  1881. (xy 40.64 49.53) (xy 45.72 49.53)
  1882. )
  1883. (stroke
  1884. (width 0)
  1885. (type default)
  1886. )
  1887. (uuid "cd6344f4-4cc9-4745-93d5-f73f2e34a49b")
  1888. )
  1889. (wire
  1890. (pts
  1891. (xy 101.6 43.18) (xy 101.6 34.29)
  1892. )
  1893. (stroke
  1894. (width 0)
  1895. (type default)
  1896. )
  1897. (uuid "d45bb788-e72d-484e-b46c-98b6bd4a1d93")
  1898. )
  1899. (wire
  1900. (pts
  1901. (xy 115.57 43.18) (xy 121.92 43.18)
  1902. )
  1903. (stroke
  1904. (width 0)
  1905. (type default)
  1906. )
  1907. (uuid "d95db662-79bb-4cbd-9f00-6d8bcce1a1b0")
  1908. )
  1909. (wire
  1910. (pts
  1911. (xy 140.97 31.75) (xy 143.51 31.75)
  1912. )
  1913. (stroke
  1914. (width 0)
  1915. (type default)
  1916. )
  1917. (uuid "dbbe8c5e-e218-46a7-b580-7f1240bf2797")
  1918. )
  1919. (wire
  1920. (pts
  1921. (xy 88.9 34.29) (xy 86.36 34.29)
  1922. )
  1923. (stroke
  1924. (width 0)
  1925. (type default)
  1926. )
  1927. (uuid "df4fdcb6-fc34-4e04-a799-c60856c383e8")
  1928. )
  1929. (wire
  1930. (pts
  1931. (xy 125.73 43.18) (xy 130.81 43.18)
  1932. )
  1933. (stroke
  1934. (width 0)
  1935. (type default)
  1936. )
  1937. (uuid "e998f414-3aea-4c40-9b3b-0536b1991c1b")
  1938. )
  1939. (wire
  1940. (pts
  1941. (xy 31.75 44.45) (xy 45.72 44.45)
  1942. )
  1943. (stroke
  1944. (width 0)
  1945. (type default)
  1946. )
  1947. (uuid "ea2a9b7c-f929-43f0-92ec-2e37b55cd959")
  1948. )
  1949. (wire
  1950. (pts
  1951. (xy 40.64 53.34) (xy 40.64 49.53)
  1952. )
  1953. (stroke
  1954. (width 0)
  1955. (type default)
  1956. )
  1957. (uuid "ea3a7e01-3367-4738-9a99-6cebbe89dc2b")
  1958. )
  1959. (wire
  1960. (pts
  1961. (xy 161.29 31.75) (xy 161.29 29.21)
  1962. )
  1963. (stroke
  1964. (width 0)
  1965. (type default)
  1966. )
  1967. (uuid "ec1f2bd7-6d41-424d-93e3-230c5c6c4734")
  1968. )
  1969. (wire
  1970. (pts
  1971. (xy 76.2 46.99) (xy 77.47 46.99)
  1972. )
  1973. (stroke
  1974. (width 0)
  1975. (type default)
  1976. )
  1977. (uuid "ee1661b1-9ac3-4102-9a98-5f61fcb01b83")
  1978. )
  1979. (wire
  1980. (pts
  1981. (xy 140.97 24.13) (xy 143.51 24.13)
  1982. )
  1983. (stroke
  1984. (width 0)
  1985. (type default)
  1986. )
  1987. (uuid "eec08a9a-a4bc-4ef1-9294-ebedc0af4942")
  1988. )
  1989. (wire
  1990. (pts
  1991. (xy 63.5 46.99) (xy 63.5 57.15)
  1992. )
  1993. (stroke
  1994. (width 0)
  1995. (type default)
  1996. )
  1997. (uuid "efd23c6c-647b-4f59-8c92-a06ca29d52d1")
  1998. )
  1999. (wire
  2000. (pts
  2001. (xy 63.5 57.15) (xy 57.15 57.15)
  2002. )
  2003. (stroke
  2004. (width 0)
  2005. (type default)
  2006. )
  2007. (uuid "f61e6910-067d-49ea-bfaa-5b6746e3c109")
  2008. )
  2009. (wire
  2010. (pts
  2011. (xy 93.98 29.21) (xy 93.98 22.86)
  2012. )
  2013. (stroke
  2014. (width 0)
  2015. (type default)
  2016. )
  2017. (uuid "f899302b-ab74-4705-9142-d93f06dd554f")
  2018. )
  2019. (label "-3.3V"
  2020. (at 140.97 24.13 180)
  2021. (fields_autoplaced yes)
  2022. (effects
  2023. (font
  2024. (size 1.27 1.27)
  2025. )
  2026. (justify right bottom)
  2027. )
  2028. (uuid "3f1c5dc1-f4d5-4923-aac7-7733aed55570")
  2029. )
  2030. (label "3.3V"
  2031. (at 140.97 31.75 180)
  2032. (fields_autoplaced yes)
  2033. (effects
  2034. (font
  2035. (size 1.27 1.27)
  2036. )
  2037. (justify right bottom)
  2038. )
  2039. (uuid "5265aa72-b87a-4de4-be4a-267a83cafb29")
  2040. )
  2041. (label "GND"
  2042. (at 40.64 60.96 270)
  2043. (fields_autoplaced yes)
  2044. (effects
  2045. (font
  2046. (size 1.27 1.27)
  2047. )
  2048. (justify right bottom)
  2049. )
  2050. (uuid "6dbd01e0-5006-48af-958d-7a34c9c32b99")
  2051. )
  2052. (label "GND"
  2053. (at 82.55 26.67 0)
  2054. (fields_autoplaced yes)
  2055. (effects
  2056. (font
  2057. (size 1.27 1.27)
  2058. )
  2059. (justify left bottom)
  2060. )
  2061. (uuid "77b8ccd4-4398-4438-882e-0236b4899304")
  2062. )
  2063. (label "Out2"
  2064. (at 130.81 43.18 0)
  2065. (fields_autoplaced yes)
  2066. (effects
  2067. (font
  2068. (size 1.27 1.27)
  2069. )
  2070. (justify left bottom)
  2071. )
  2072. (uuid "9911b81e-7380-4911-a25e-601e8e7ad72e")
  2073. )
  2074. (label "GND"
  2075. (at 130.81 50.8 270)
  2076. (fields_autoplaced yes)
  2077. (effects
  2078. (font
  2079. (size 1.27 1.27)
  2080. )
  2081. (justify right bottom)
  2082. )
  2083. (uuid "9feee8a7-c002-477f-b0f9-bf0f1d27f46f")
  2084. )
  2085. (label "GND"
  2086. (at 121.92 50.8 270)
  2087. (fields_autoplaced yes)
  2088. (effects
  2089. (font
  2090. (size 1.27 1.27)
  2091. )
  2092. (justify right bottom)
  2093. )
  2094. (uuid "bd573d30-c898-4462-9547-401433f799e5")
  2095. )
  2096. (label "GND"
  2097. (at 31.75 52.07 0)
  2098. (fields_autoplaced yes)
  2099. (effects
  2100. (font
  2101. (size 1.27 1.27)
  2102. )
  2103. (justify left bottom)
  2104. )
  2105. (uuid "c9ac34d8-d177-48a4-82af-569470d3dfd4")
  2106. )
  2107. (label "GND"
  2108. (at 77.47 55.88 270)
  2109. (fields_autoplaced yes)
  2110. (effects
  2111. (font
  2112. (size 1.27 1.27)
  2113. )
  2114. (justify right bottom)
  2115. )
  2116. (uuid "dabeb30f-c18a-41eb-bb2f-6198cd462ab7")
  2117. )
  2118. (symbol
  2119. (lib_id "global:C")
  2120. (at 152.4 27.94 0)
  2121. (unit 1)
  2122. (exclude_from_sim no)
  2123. (in_bom yes)
  2124. (on_board yes)
  2125. (dnp no)
  2126. (uuid "02ad33d3-2ca6-44dc-97bb-416cb0dfc963")
  2127. (property "Reference" "C?"
  2128. (at 152.4 25.4 0)
  2129. (effects
  2130. (font
  2131. (size 1.27 1.27)
  2132. )
  2133. (justify left)
  2134. )
  2135. )
  2136. (property "Value" "100nF"
  2137. (at 152.4 30.48 0)
  2138. (effects
  2139. (font
  2140. (size 1.27 1.27)
  2141. )
  2142. (justify left)
  2143. )
  2144. )
  2145. (property "Footprint" "C:0805"
  2146. (at 153.3652 31.75 0)
  2147. (effects
  2148. (font
  2149. (size 1.27 1.27)
  2150. )
  2151. (hide yes)
  2152. )
  2153. )
  2154. (property "Datasheet" ""
  2155. (at 152.4 27.94 0)
  2156. (effects
  2157. (font
  2158. (size 1.27 1.27)
  2159. )
  2160. )
  2161. )
  2162. (property "Description" ""
  2163. (at 152.4 27.94 0)
  2164. (effects
  2165. (font
  2166. (size 1.27 1.27)
  2167. )
  2168. (hide yes)
  2169. )
  2170. )
  2171. (property "Partkeepr" "0605"
  2172. (at 152.4 27.94 0)
  2173. (effects
  2174. (font
  2175. (size 1.27 1.27)
  2176. )
  2177. (hide yes)
  2178. )
  2179. )
  2180. (pin "1"
  2181. (uuid "40d107dd-acfe-440f-a1c0-510ae459672a")
  2182. )
  2183. (pin "2"
  2184. (uuid "9b73a7cf-dd8b-4d03-8de9-4ef71ab05ad6")
  2185. )
  2186. (instances
  2187. (project "Salinity"
  2188. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2189. (reference "C?")
  2190. (unit 1)
  2191. )
  2192. )
  2193. )
  2194. )
  2195. (symbol
  2196. (lib_id "conn:CONN_01X02")
  2197. (at 77.47 27.94 180)
  2198. (unit 1)
  2199. (exclude_from_sim no)
  2200. (in_bom yes)
  2201. (on_board yes)
  2202. (dnp no)
  2203. (uuid "1411b0b9-7377-4586-b0a3-8af78b3bf98f")
  2204. (property "Reference" "P?"
  2205. (at 77.47 24.13 0)
  2206. (effects
  2207. (font
  2208. (size 1.27 1.27)
  2209. )
  2210. )
  2211. )
  2212. (property "Value" "Salinity"
  2213. (at 74.93 27.94 90)
  2214. (effects
  2215. (font
  2216. (size 1.27 1.27)
  2217. )
  2218. )
  2219. )
  2220. (property "Footprint" "Bornier:Bornier2.54_1x2"
  2221. (at 77.47 27.94 0)
  2222. (effects
  2223. (font
  2224. (size 1.27 1.27)
  2225. )
  2226. (hide yes)
  2227. )
  2228. )
  2229. (property "Datasheet" ""
  2230. (at 77.47 27.94 0)
  2231. (effects
  2232. (font
  2233. (size 1.27 1.27)
  2234. )
  2235. )
  2236. )
  2237. (property "Description" ""
  2238. (at 77.47 27.94 0)
  2239. (effects
  2240. (font
  2241. (size 1.27 1.27)
  2242. )
  2243. (hide yes)
  2244. )
  2245. )
  2246. (property "Partkeepr" "N/A"
  2247. (at 77.47 27.94 0)
  2248. (effects
  2249. (font
  2250. (size 1.27 1.27)
  2251. )
  2252. (hide yes)
  2253. )
  2254. )
  2255. (pin "1"
  2256. (uuid "cb084144-6490-4aaa-8e03-4bb906843489")
  2257. )
  2258. (pin "2"
  2259. (uuid "900a077a-6eef-47ca-ba06-59a36fd0de26")
  2260. )
  2261. (instances
  2262. (project "Salinity"
  2263. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2264. (reference "P?")
  2265. (unit 1)
  2266. )
  2267. )
  2268. )
  2269. )
  2270. (symbol
  2271. (lib_id "global:R")
  2272. (at 54.61 36.83 90)
  2273. (unit 1)
  2274. (exclude_from_sim no)
  2275. (in_bom yes)
  2276. (on_board yes)
  2277. (dnp no)
  2278. (uuid "17d7420b-8099-44a5-95b0-2183347efa35")
  2279. (property "Reference" "R?"
  2280. (at 54.61 34.29 90)
  2281. (effects
  2282. (font
  2283. (size 1.27 1.27)
  2284. )
  2285. )
  2286. )
  2287. (property "Value" "1K"
  2288. (at 54.61 36.83 90)
  2289. (effects
  2290. (font
  2291. (size 1.27 1.27)
  2292. )
  2293. )
  2294. )
  2295. (property "Footprint" "R:0805"
  2296. (at 54.61 38.608 90)
  2297. (effects
  2298. (font
  2299. (size 1.27 1.27)
  2300. )
  2301. (hide yes)
  2302. )
  2303. )
  2304. (property "Datasheet" ""
  2305. (at 54.61 36.83 0)
  2306. (effects
  2307. (font
  2308. (size 1.27 1.27)
  2309. )
  2310. )
  2311. )
  2312. (property "Description" ""
  2313. (at 54.61 36.83 0)
  2314. (effects
  2315. (font
  2316. (size 1.27 1.27)
  2317. )
  2318. (hide yes)
  2319. )
  2320. )
  2321. (property "Partkeepr" "0915"
  2322. (at 54.61 36.83 0)
  2323. (effects
  2324. (font
  2325. (size 1.27 1.27)
  2326. )
  2327. (hide yes)
  2328. )
  2329. )
  2330. (pin "1"
  2331. (uuid "fcde0c34-3ba1-4107-9690-4065d0b2b09b")
  2332. )
  2333. (pin "2"
  2334. (uuid "ba9745c1-4534-4208-901c-1fab07539815")
  2335. )
  2336. (instances
  2337. (project "Salinity"
  2338. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2339. (reference "R?")
  2340. (unit 1)
  2341. )
  2342. )
  2343. )
  2344. )
  2345. (symbol
  2346. (lib_id "TI:LMC6042")
  2347. (at 92.71 43.18 0)
  2348. (unit 2)
  2349. (exclude_from_sim no)
  2350. (in_bom yes)
  2351. (on_board yes)
  2352. (dnp no)
  2353. (uuid "1e746be8-8b8f-4e88-8463-99b7f1af3a22")
  2354. (property "Reference" "U?"
  2355. (at 92.71 39.37 0)
  2356. (effects
  2357. (font
  2358. (size 1.27 1.27)
  2359. )
  2360. )
  2361. )
  2362. (property "Value" "LMC6042"
  2363. (at 93.98 48.26 0)
  2364. (effects
  2365. (font
  2366. (size 1.27 1.27)
  2367. )
  2368. )
  2369. )
  2370. (property "Footprint" "U:SO8N"
  2371. (at 92.71 43.18 0)
  2372. (effects
  2373. (font
  2374. (size 1.27 1.27)
  2375. )
  2376. (hide yes)
  2377. )
  2378. )
  2379. (property "Datasheet" ""
  2380. (at 92.71 43.18 0)
  2381. (effects
  2382. (font
  2383. (size 1.27 1.27)
  2384. )
  2385. (hide yes)
  2386. )
  2387. )
  2388. (property "Description" ""
  2389. (at 92.71 43.18 0)
  2390. (effects
  2391. (font
  2392. (size 1.27 1.27)
  2393. )
  2394. (hide yes)
  2395. )
  2396. )
  2397. (property "Partkeepr" "2400"
  2398. (at 92.71 43.18 0)
  2399. (effects
  2400. (font
  2401. (size 1.27 1.27)
  2402. )
  2403. (hide yes)
  2404. )
  2405. )
  2406. (pin "1"
  2407. (uuid "23ff0d9a-6d29-4b18-bc15-3c740e6bd6c4")
  2408. )
  2409. (pin "2"
  2410. (uuid "b591b50a-c7d8-473d-aa19-c473305adad0")
  2411. )
  2412. (pin "3"
  2413. (uuid "b7d8b17e-d77f-488a-ba29-57f5afa95c5b")
  2414. )
  2415. (pin "5"
  2416. (uuid "7825bed5-c5fb-4b21-ab65-90559731ab81")
  2417. )
  2418. (pin "6"
  2419. (uuid "208ee7b8-395d-42ae-9af0-ef6ade39e758")
  2420. )
  2421. (pin "7"
  2422. (uuid "b63c3671-61de-4265-844a-cb12346b6029")
  2423. )
  2424. (pin "4"
  2425. (uuid "bc91e8e7-c650-4606-9c05-3ada77195390")
  2426. )
  2427. (pin "8"
  2428. (uuid "653d7f22-20b5-4558-961d-da32ba1eca94")
  2429. )
  2430. (instances
  2431. (project "Salinity"
  2432. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2433. (reference "U?")
  2434. (unit 2)
  2435. )
  2436. )
  2437. )
  2438. )
  2439. (symbol
  2440. (lib_id "global:C")
  2441. (at 143.51 27.94 0)
  2442. (unit 1)
  2443. (exclude_from_sim no)
  2444. (in_bom yes)
  2445. (on_board yes)
  2446. (dnp no)
  2447. (uuid "23a5196b-a131-4b3b-a6f6-0a65ff44fe3a")
  2448. (property "Reference" "C?"
  2449. (at 143.51 25.4 0)
  2450. (effects
  2451. (font
  2452. (size 1.27 1.27)
  2453. )
  2454. (justify left)
  2455. )
  2456. )
  2457. (property "Value" "4.7µF"
  2458. (at 143.51 30.48 0)
  2459. (effects
  2460. (font
  2461. (size 1.27 1.27)
  2462. )
  2463. (justify left)
  2464. )
  2465. )
  2466. (property "Footprint" "C:0805"
  2467. (at 144.4752 31.75 0)
  2468. (effects
  2469. (font
  2470. (size 1.27 1.27)
  2471. )
  2472. (hide yes)
  2473. )
  2474. )
  2475. (property "Datasheet" ""
  2476. (at 143.51 27.94 0)
  2477. (effects
  2478. (font
  2479. (size 1.27 1.27)
  2480. )
  2481. )
  2482. )
  2483. (property "Description" ""
  2484. (at 143.51 27.94 0)
  2485. (effects
  2486. (font
  2487. (size 1.27 1.27)
  2488. )
  2489. (hide yes)
  2490. )
  2491. )
  2492. (property "Partkeepr" "0607"
  2493. (at 143.51 27.94 0)
  2494. (effects
  2495. (font
  2496. (size 1.27 1.27)
  2497. )
  2498. (hide yes)
  2499. )
  2500. )
  2501. (pin "1"
  2502. (uuid "430d9d98-f537-4026-a4bc-7f47293c0761")
  2503. )
  2504. (pin "2"
  2505. (uuid "2ae7fe4a-3e91-4fc1-8966-f0b9f33b70ce")
  2506. )
  2507. (instances
  2508. (project "Salinity"
  2509. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2510. (reference "C?")
  2511. (unit 1)
  2512. )
  2513. )
  2514. )
  2515. )
  2516. (symbol
  2517. (lib_id "global:R")
  2518. (at 92.71 34.29 90)
  2519. (unit 1)
  2520. (exclude_from_sim no)
  2521. (in_bom yes)
  2522. (on_board yes)
  2523. (dnp no)
  2524. (uuid "26cb254b-77b6-4785-9ea0-917806e89db7")
  2525. (property "Reference" "R?"
  2526. (at 92.71 31.75 90)
  2527. (effects
  2528. (font
  2529. (size 1.27 1.27)
  2530. )
  2531. )
  2532. )
  2533. (property "Value" "3.3K"
  2534. (at 92.71 34.29 90)
  2535. (effects
  2536. (font
  2537. (size 1.27 1.27)
  2538. )
  2539. )
  2540. )
  2541. (property "Footprint" "R:0805"
  2542. (at 92.71 36.068 90)
  2543. (effects
  2544. (font
  2545. (size 1.27 1.27)
  2546. )
  2547. (hide yes)
  2548. )
  2549. )
  2550. (property "Datasheet" ""
  2551. (at 92.71 34.29 0)
  2552. (effects
  2553. (font
  2554. (size 1.27 1.27)
  2555. )
  2556. )
  2557. )
  2558. (property "Description" ""
  2559. (at 92.71 34.29 0)
  2560. (effects
  2561. (font
  2562. (size 1.27 1.27)
  2563. )
  2564. (hide yes)
  2565. )
  2566. )
  2567. (property "Partkeepr" "0931"
  2568. (at 92.71 34.29 0)
  2569. (effects
  2570. (font
  2571. (size 1.27 1.27)
  2572. )
  2573. (hide yes)
  2574. )
  2575. )
  2576. (pin "1"
  2577. (uuid "7d5be940-8c0d-4c09-9823-9e36b6dc56f1")
  2578. )
  2579. (pin "2"
  2580. (uuid "ac1d96f2-4988-4afc-a631-e77a915c0776")
  2581. )
  2582. (instances
  2583. (project "Salinity"
  2584. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2585. (reference "R?")
  2586. (unit 1)
  2587. )
  2588. )
  2589. )
  2590. )
  2591. (symbol
  2592. (lib_name "LMC6042_3")
  2593. (lib_id "TI:LMC6042")
  2594. (at 54.61 46.99 0)
  2595. (unit 1)
  2596. (exclude_from_sim no)
  2597. (in_bom yes)
  2598. (on_board yes)
  2599. (dnp no)
  2600. (uuid "3d536db3-3d10-49ea-b170-89c13f2b0268")
  2601. (property "Reference" "U?"
  2602. (at 54.61 41.91 0)
  2603. (effects
  2604. (font
  2605. (size 1.27 1.27)
  2606. )
  2607. )
  2608. )
  2609. (property "Value" "LMC6042"
  2610. (at 55.88 52.07 0)
  2611. (effects
  2612. (font
  2613. (size 1.27 1.27)
  2614. )
  2615. )
  2616. )
  2617. (property "Footprint" "U:SO8N"
  2618. (at 54.61 46.99 0)
  2619. (effects
  2620. (font
  2621. (size 1.27 1.27)
  2622. )
  2623. (hide yes)
  2624. )
  2625. )
  2626. (property "Datasheet" ""
  2627. (at 54.61 46.99 0)
  2628. (effects
  2629. (font
  2630. (size 1.27 1.27)
  2631. )
  2632. (hide yes)
  2633. )
  2634. )
  2635. (property "Description" ""
  2636. (at 54.61 46.99 0)
  2637. (effects
  2638. (font
  2639. (size 1.27 1.27)
  2640. )
  2641. (hide yes)
  2642. )
  2643. )
  2644. (property "Partkeepr" "2400"
  2645. (at 54.61 46.99 0)
  2646. (effects
  2647. (font
  2648. (size 1.27 1.27)
  2649. )
  2650. (hide yes)
  2651. )
  2652. )
  2653. (pin "1"
  2654. (uuid "a38ab7d2-250c-409a-851f-b13519688c7d")
  2655. )
  2656. (pin "2"
  2657. (uuid "c9121702-aa59-4ad1-8ed8-0c14d3752c76")
  2658. )
  2659. (pin "3"
  2660. (uuid "2a1292b5-7458-45d3-8d0a-1746e9c2ac1c")
  2661. )
  2662. (pin "5"
  2663. (uuid "76fabe9d-1131-4a27-8b98-8b62e78b84a4")
  2664. )
  2665. (pin "6"
  2666. (uuid "3bd29560-0684-402c-b0d9-296083bd4077")
  2667. )
  2668. (pin "7"
  2669. (uuid "324b39ca-3298-4271-ae09-2310be227200")
  2670. )
  2671. (pin "4"
  2672. (uuid "0b38d2bc-3d7e-4110-ab70-fb0aa1fac065")
  2673. )
  2674. (pin "8"
  2675. (uuid "2c2d211e-5149-442d-aa36-67d1b09ab7f5")
  2676. )
  2677. (instances
  2678. (project "Salinity"
  2679. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2680. (reference "U?")
  2681. (unit 1)
  2682. )
  2683. )
  2684. )
  2685. )
  2686. (symbol
  2687. (lib_id "global:Poten")
  2688. (at 97.79 22.86 0)
  2689. (unit 1)
  2690. (exclude_from_sim no)
  2691. (in_bom yes)
  2692. (on_board yes)
  2693. (dnp no)
  2694. (fields_autoplaced yes)
  2695. (uuid "6588e102-3f70-4e4d-8c6f-7649fab85e14")
  2696. (property "Reference" "VR?"
  2697. (at 100.33 21.5899 0)
  2698. (effects
  2699. (font
  2700. (size 1.27 1.27)
  2701. )
  2702. (justify left)
  2703. )
  2704. )
  2705. (property "Value" "Poten"
  2706. (at 100.33 24.1299 0)
  2707. (effects
  2708. (font
  2709. (size 1.27 1.27)
  2710. )
  2711. (justify left)
  2712. )
  2713. )
  2714. (property "Footprint" "R:RM065"
  2715. (at 96.012 22.86 90)
  2716. (effects
  2717. (font
  2718. (size 1.27 1.27)
  2719. )
  2720. (hide yes)
  2721. )
  2722. )
  2723. (property "Datasheet" ""
  2724. (at 97.79 22.86 0)
  2725. (effects
  2726. (font
  2727. (size 1.27 1.27)
  2728. )
  2729. )
  2730. )
  2731. (property "Description" ""
  2732. (at 97.79 22.86 0)
  2733. (effects
  2734. (font
  2735. (size 1.27 1.27)
  2736. )
  2737. (hide yes)
  2738. )
  2739. )
  2740. (property "Partkeepr" "N/A"
  2741. (at 97.79 22.86 0)
  2742. (effects
  2743. (font
  2744. (size 1.27 1.27)
  2745. )
  2746. (hide yes)
  2747. )
  2748. )
  2749. (pin "1"
  2750. (uuid "e3182e6f-fec2-442f-8ca8-1841bf059706")
  2751. )
  2752. (pin "2"
  2753. (uuid "4f7f1895-e93e-45a3-bba6-f806c3b7b9d9")
  2754. )
  2755. (pin "3"
  2756. (uuid "d2728e10-47b6-4437-aede-38e1d7d2646d")
  2757. )
  2758. (instances
  2759. (project "Salinity"
  2760. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2761. (reference "VR?")
  2762. (unit 1)
  2763. )
  2764. )
  2765. )
  2766. )
  2767. (symbol
  2768. (lib_id "global:R")
  2769. (at 72.39 46.99 90)
  2770. (unit 1)
  2771. (exclude_from_sim no)
  2772. (in_bom yes)
  2773. (on_board yes)
  2774. (dnp no)
  2775. (uuid "6618eb27-dd99-4d35-823a-c74bac059c37")
  2776. (property "Reference" "R?"
  2777. (at 72.39 44.45 90)
  2778. (effects
  2779. (font
  2780. (size 1.27 1.27)
  2781. )
  2782. )
  2783. )
  2784. (property "Value" "100K"
  2785. (at 72.39 46.99 90)
  2786. (effects
  2787. (font
  2788. (size 1.27 1.27)
  2789. )
  2790. )
  2791. )
  2792. (property "Footprint" "R:0805"
  2793. (at 72.39 48.768 90)
  2794. (effects
  2795. (font
  2796. (size 1.27 1.27)
  2797. )
  2798. (hide yes)
  2799. )
  2800. )
  2801. (property "Datasheet" ""
  2802. (at 72.39 46.99 0)
  2803. (effects
  2804. (font
  2805. (size 1.27 1.27)
  2806. )
  2807. )
  2808. )
  2809. (property "Description" ""
  2810. (at 72.39 46.99 0)
  2811. (effects
  2812. (font
  2813. (size 1.27 1.27)
  2814. )
  2815. (hide yes)
  2816. )
  2817. )
  2818. (property "Partkeepr" "0916"
  2819. (at 72.39 46.99 0)
  2820. (effects
  2821. (font
  2822. (size 1.27 1.27)
  2823. )
  2824. (hide yes)
  2825. )
  2826. )
  2827. (pin "1"
  2828. (uuid "2227fcfc-dd61-4194-b296-f0ed84e1aa20")
  2829. )
  2830. (pin "2"
  2831. (uuid "85b0eb9b-197e-42eb-b673-09156bf928d0")
  2832. )
  2833. (instances
  2834. (project "Salinity"
  2835. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2836. (reference "R?")
  2837. (unit 1)
  2838. )
  2839. )
  2840. )
  2841. )
  2842. (symbol
  2843. (lib_id "global:D")
  2844. (at 111.76 43.18 180)
  2845. (unit 1)
  2846. (exclude_from_sim no)
  2847. (in_bom yes)
  2848. (on_board yes)
  2849. (dnp no)
  2850. (uuid "6740bf28-c568-4702-a53d-a89bfcf0c1b1")
  2851. (property "Reference" "D?"
  2852. (at 111.76 40.64 0)
  2853. (effects
  2854. (font
  2855. (size 1.27 1.27)
  2856. )
  2857. )
  2858. )
  2859. (property "Value" "1N4148"
  2860. (at 111.76 45.72 0)
  2861. (effects
  2862. (font
  2863. (size 1.27 1.27)
  2864. )
  2865. )
  2866. )
  2867. (property "Footprint" "D:SOD-523"
  2868. (at 111.76 43.18 0)
  2869. (effects
  2870. (font
  2871. (size 1.27 1.27)
  2872. )
  2873. (hide yes)
  2874. )
  2875. )
  2876. (property "Datasheet" ""
  2877. (at 111.76 43.18 0)
  2878. (effects
  2879. (font
  2880. (size 1.27 1.27)
  2881. )
  2882. )
  2883. )
  2884. (property "Description" ""
  2885. (at 111.76 43.18 0)
  2886. (effects
  2887. (font
  2888. (size 1.27 1.27)
  2889. )
  2890. (hide yes)
  2891. )
  2892. )
  2893. (property "Partkeepr" "1300"
  2894. (at 111.76 43.18 0)
  2895. (effects
  2896. (font
  2897. (size 1.27 1.27)
  2898. )
  2899. (hide yes)
  2900. )
  2901. )
  2902. (pin "1"
  2903. (uuid "68613a24-fbce-4138-afc3-1206ffb2428a")
  2904. )
  2905. (pin "2"
  2906. (uuid "e7b2e545-072e-4a97-b43a-0ba28a6c8131")
  2907. )
  2908. (instances
  2909. (project "Salinity"
  2910. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2911. (reference "D?")
  2912. (unit 1)
  2913. )
  2914. )
  2915. )
  2916. )
  2917. (symbol
  2918. (lib_id "conn:TEST_1P")
  2919. (at 67.31 46.99 0)
  2920. (unit 1)
  2921. (exclude_from_sim no)
  2922. (in_bom yes)
  2923. (on_board yes)
  2924. (dnp no)
  2925. (uuid "7b78fe6d-98cf-4917-9ea4-e630d0a5b535")
  2926. (property "Reference" "PT?"
  2927. (at 66.04 45.72 0)
  2928. (effects
  2929. (font
  2930. (size 1.27 1.27)
  2931. )
  2932. (justify left)
  2933. )
  2934. )
  2935. (property "Value" "Astable"
  2936. (at 69.85 44.9579 0)
  2937. (effects
  2938. (font
  2939. (size 1.27 1.27)
  2940. )
  2941. (justify left)
  2942. (hide yes)
  2943. )
  2944. )
  2945. (property "Footprint" "PinHeader:PinHeader1"
  2946. (at 72.39 46.99 0)
  2947. (effects
  2948. (font
  2949. (size 1.27 1.27)
  2950. )
  2951. (hide yes)
  2952. )
  2953. )
  2954. (property "Datasheet" ""
  2955. (at 72.39 46.99 0)
  2956. (effects
  2957. (font
  2958. (size 1.27 1.27)
  2959. )
  2960. )
  2961. )
  2962. (property "Description" ""
  2963. (at 67.31 46.99 0)
  2964. (effects
  2965. (font
  2966. (size 1.27 1.27)
  2967. )
  2968. (hide yes)
  2969. )
  2970. )
  2971. (property "Partkeepr" "N/A"
  2972. (at 67.31 46.99 0)
  2973. (effects
  2974. (font
  2975. (size 1.27 1.27)
  2976. )
  2977. (hide yes)
  2978. )
  2979. )
  2980. (pin "1"
  2981. (uuid "b85e3bee-6dd6-438e-a723-534d59abff2e")
  2982. )
  2983. (instances
  2984. (project "Salinity"
  2985. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  2986. (reference "PT?")
  2987. (unit 1)
  2988. )
  2989. )
  2990. )
  2991. )
  2992. (symbol
  2993. (lib_id "global:C")
  2994. (at 121.92 46.99 0)
  2995. (unit 1)
  2996. (exclude_from_sim no)
  2997. (in_bom yes)
  2998. (on_board yes)
  2999. (dnp no)
  3000. (uuid "7e59e33a-eed9-48b5-a928-ddf0ca5cc12c")
  3001. (property "Reference" "C?"
  3002. (at 125.73 45.7199 0)
  3003. (effects
  3004. (font
  3005. (size 1.27 1.27)
  3006. )
  3007. (justify left)
  3008. )
  3009. )
  3010. (property "Value" "330nF"
  3011. (at 119.38 46.99 0)
  3012. (effects
  3013. (font
  3014. (size 1.27 1.27)
  3015. )
  3016. (justify left)
  3017. )
  3018. )
  3019. (property "Footprint" "C:0805"
  3020. (at 122.8852 50.8 0)
  3021. (effects
  3022. (font
  3023. (size 1.27 1.27)
  3024. )
  3025. (hide yes)
  3026. )
  3027. )
  3028. (property "Datasheet" ""
  3029. (at 121.92 46.99 0)
  3030. (effects
  3031. (font
  3032. (size 1.27 1.27)
  3033. )
  3034. )
  3035. )
  3036. (property "Description" ""
  3037. (at 121.92 46.99 0)
  3038. (effects
  3039. (font
  3040. (size 1.27 1.27)
  3041. )
  3042. (hide yes)
  3043. )
  3044. )
  3045. (property "Partkeepr" "Farnell"
  3046. (at 121.92 46.99 0)
  3047. (effects
  3048. (font
  3049. (size 1.27 1.27)
  3050. )
  3051. (hide yes)
  3052. )
  3053. )
  3054. (pin "1"
  3055. (uuid "582ff535-719b-4381-b9e0-a1f7db90bab2")
  3056. )
  3057. (pin "2"
  3058. (uuid "e8820f79-8397-479a-97f2-3918da1dfa13")
  3059. )
  3060. (instances
  3061. (project "Salinity"
  3062. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  3063. (reference "C?")
  3064. (unit 1)
  3065. )
  3066. )
  3067. )
  3068. )
  3069. (symbol
  3070. (lib_id "global:C")
  3071. (at 31.75 48.26 0)
  3072. (unit 1)
  3073. (exclude_from_sim no)
  3074. (in_bom yes)
  3075. (on_board yes)
  3076. (dnp no)
  3077. (fields_autoplaced yes)
  3078. (uuid "891db89c-fbf1-4d8f-aec8-934628d12278")
  3079. (property "Reference" "C?"
  3080. (at 35.56 46.9899 0)
  3081. (effects
  3082. (font
  3083. (size 1.27 1.27)
  3084. )
  3085. (justify left)
  3086. )
  3087. )
  3088. (property "Value" "47nF"
  3089. (at 35.56 49.5299 0)
  3090. (effects
  3091. (font
  3092. (size 1.27 1.27)
  3093. )
  3094. (justify left)
  3095. )
  3096. )
  3097. (property "Footprint" "C:0805"
  3098. (at 32.7152 52.07 0)
  3099. (effects
  3100. (font
  3101. (size 1.27 1.27)
  3102. )
  3103. (hide yes)
  3104. )
  3105. )
  3106. (property "Datasheet" ""
  3107. (at 31.75 48.26 0)
  3108. (effects
  3109. (font
  3110. (size 1.27 1.27)
  3111. )
  3112. )
  3113. )
  3114. (property "Description" ""
  3115. (at 31.75 48.26 0)
  3116. (effects
  3117. (font
  3118. (size 1.27 1.27)
  3119. )
  3120. (hide yes)
  3121. )
  3122. )
  3123. (property "Partkeepr" "Farnell"
  3124. (at 31.75 48.26 0)
  3125. (effects
  3126. (font
  3127. (size 1.27 1.27)
  3128. )
  3129. (hide yes)
  3130. )
  3131. )
  3132. (pin "1"
  3133. (uuid "d7b39e77-040e-4a3a-8795-9314b3019964")
  3134. )
  3135. (pin "2"
  3136. (uuid "f187769a-48fa-4dd9-89a7-4138202c2e9e")
  3137. )
  3138. (instances
  3139. (project "Salinity"
  3140. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  3141. (reference "C?")
  3142. (unit 1)
  3143. )
  3144. )
  3145. )
  3146. )
  3147. (symbol
  3148. (lib_id "global:R")
  3149. (at 130.81 46.99 0)
  3150. (unit 1)
  3151. (exclude_from_sim no)
  3152. (in_bom yes)
  3153. (on_board yes)
  3154. (dnp no)
  3155. (fields_autoplaced yes)
  3156. (uuid "8cb8d2f2-f9c0-4045-a46c-2959b03a6dc5")
  3157. (property "Reference" "R?"
  3158. (at 133.35 45.7199 0)
  3159. (effects
  3160. (font
  3161. (size 1.27 1.27)
  3162. )
  3163. (justify left)
  3164. )
  3165. )
  3166. (property "Value" "56Meg"
  3167. (at 133.35 48.2599 0)
  3168. (effects
  3169. (font
  3170. (size 1.27 1.27)
  3171. )
  3172. (justify left)
  3173. )
  3174. )
  3175. (property "Footprint" "R:0805"
  3176. (at 129.032 46.99 90)
  3177. (effects
  3178. (font
  3179. (size 1.27 1.27)
  3180. )
  3181. (hide yes)
  3182. )
  3183. )
  3184. (property "Datasheet" ""
  3185. (at 130.81 46.99 0)
  3186. (effects
  3187. (font
  3188. (size 1.27 1.27)
  3189. )
  3190. )
  3191. )
  3192. (property "Description" ""
  3193. (at 130.81 46.99 0)
  3194. (effects
  3195. (font
  3196. (size 1.27 1.27)
  3197. )
  3198. (hide yes)
  3199. )
  3200. )
  3201. (property "Partkeepr" "Farnell"
  3202. (at 130.81 46.99 0)
  3203. (effects
  3204. (font
  3205. (size 1.27 1.27)
  3206. )
  3207. (hide yes)
  3208. )
  3209. )
  3210. (pin "1"
  3211. (uuid "d7a80cad-ccb2-4195-a6b8-abca325a1496")
  3212. )
  3213. (pin "2"
  3214. (uuid "1911d5bb-00e3-4591-89b4-73e2a181069d")
  3215. )
  3216. (instances
  3217. (project "Salinity"
  3218. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  3219. (reference "R?")
  3220. (unit 1)
  3221. )
  3222. )
  3223. )
  3224. )
  3225. (symbol
  3226. (lib_id "global:R")
  3227. (at 53.34 57.15 90)
  3228. (unit 1)
  3229. (exclude_from_sim no)
  3230. (in_bom yes)
  3231. (on_board yes)
  3232. (dnp no)
  3233. (uuid "b4cbbe64-1a88-481e-8ec8-d5a1d5573fee")
  3234. (property "Reference" "R?"
  3235. (at 53.34 54.61 90)
  3236. (effects
  3237. (font
  3238. (size 1.27 1.27)
  3239. )
  3240. )
  3241. )
  3242. (property "Value" "1K"
  3243. (at 53.34 57.15 90)
  3244. (effects
  3245. (font
  3246. (size 1.27 1.27)
  3247. )
  3248. )
  3249. )
  3250. (property "Footprint" "R:0805"
  3251. (at 53.34 58.928 90)
  3252. (effects
  3253. (font
  3254. (size 1.27 1.27)
  3255. )
  3256. (hide yes)
  3257. )
  3258. )
  3259. (property "Datasheet" ""
  3260. (at 53.34 57.15 0)
  3261. (effects
  3262. (font
  3263. (size 1.27 1.27)
  3264. )
  3265. )
  3266. )
  3267. (property "Description" ""
  3268. (at 53.34 57.15 0)
  3269. (effects
  3270. (font
  3271. (size 1.27 1.27)
  3272. )
  3273. (hide yes)
  3274. )
  3275. )
  3276. (property "Partkeepr" "0915"
  3277. (at 53.34 57.15 0)
  3278. (effects
  3279. (font
  3280. (size 1.27 1.27)
  3281. )
  3282. (hide yes)
  3283. )
  3284. )
  3285. (pin "1"
  3286. (uuid "f5c970d1-47c5-4443-87f0-acda3263466f")
  3287. )
  3288. (pin "2"
  3289. (uuid "5c128de8-a008-43f4-9ea9-155d219672a5")
  3290. )
  3291. (instances
  3292. (project "Salinity"
  3293. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  3294. (reference "R?")
  3295. (unit 1)
  3296. )
  3297. )
  3298. )
  3299. )
  3300. (symbol
  3301. (lib_name "LMC6042_2")
  3302. (lib_id "TI:LMC6042")
  3303. (at 166.37 27.94 0)
  3304. (unit 3)
  3305. (exclude_from_sim no)
  3306. (in_bom yes)
  3307. (on_board yes)
  3308. (dnp no)
  3309. (fields_autoplaced yes)
  3310. (uuid "bed9992e-3332-4a5b-963b-43c165c05f0d")
  3311. (property "Reference" "U?"
  3312. (at 170.18 26.6699 0)
  3313. (effects
  3314. (font
  3315. (size 1.27 1.27)
  3316. )
  3317. (justify left)
  3318. )
  3319. )
  3320. (property "Value" "LMC6042"
  3321. (at 170.18 29.2099 0)
  3322. (effects
  3323. (font
  3324. (size 1.27 1.27)
  3325. )
  3326. (justify left)
  3327. )
  3328. )
  3329. (property "Footprint" "U:SO8N"
  3330. (at 166.37 27.94 0)
  3331. (effects
  3332. (font
  3333. (size 1.27 1.27)
  3334. )
  3335. (hide yes)
  3336. )
  3337. )
  3338. (property "Datasheet" ""
  3339. (at 166.37 27.94 0)
  3340. (effects
  3341. (font
  3342. (size 1.27 1.27)
  3343. )
  3344. (hide yes)
  3345. )
  3346. )
  3347. (property "Description" ""
  3348. (at 166.37 27.94 0)
  3349. (effects
  3350. (font
  3351. (size 1.27 1.27)
  3352. )
  3353. (hide yes)
  3354. )
  3355. )
  3356. (property "Partkeepr" "2400"
  3357. (at 166.37 27.94 0)
  3358. (effects
  3359. (font
  3360. (size 1.27 1.27)
  3361. )
  3362. (hide yes)
  3363. )
  3364. )
  3365. (pin "1"
  3366. (uuid "f32c6991-49f6-4697-aae5-69800531fe91")
  3367. )
  3368. (pin "2"
  3369. (uuid "50c9882b-7dad-42ee-b95c-9934178af736")
  3370. )
  3371. (pin "3"
  3372. (uuid "8b2833b9-33b5-4047-8154-2a847a793c77")
  3373. )
  3374. (pin "5"
  3375. (uuid "3cb5fc1d-02cf-4c3c-8915-908a7c4d3198")
  3376. )
  3377. (pin "6"
  3378. (uuid "128e2144-47ed-419a-9479-572585b6f0e3")
  3379. )
  3380. (pin "7"
  3381. (uuid "85aad1dc-cef2-43ee-a586-12a81cf4525f")
  3382. )
  3383. (pin "4"
  3384. (uuid "a4e5e9c5-ce65-4be9-8392-e03052197ee1")
  3385. )
  3386. (pin "8"
  3387. (uuid "3f7b491d-a79e-43a6-9fa4-c2e6707bc770")
  3388. )
  3389. (instances
  3390. (project "Salinity"
  3391. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  3392. (reference "U?")
  3393. (unit 3)
  3394. )
  3395. )
  3396. )
  3397. )
  3398. (symbol
  3399. (lib_id "global:R")
  3400. (at 40.64 57.15 180)
  3401. (unit 1)
  3402. (exclude_from_sim no)
  3403. (in_bom yes)
  3404. (on_board yes)
  3405. (dnp no)
  3406. (uuid "d251ab53-14f4-4595-a21c-c298c7bfd8ac")
  3407. (property "Reference" "R?"
  3408. (at 41.91 55.88 0)
  3409. (effects
  3410. (font
  3411. (size 1.27 1.27)
  3412. )
  3413. (justify right)
  3414. )
  3415. )
  3416. (property "Value" "1K"
  3417. (at 41.91 58.42 0)
  3418. (effects
  3419. (font
  3420. (size 1.27 1.27)
  3421. )
  3422. (justify right)
  3423. )
  3424. )
  3425. (property "Footprint" "R:0805"
  3426. (at 42.418 57.15 90)
  3427. (effects
  3428. (font
  3429. (size 1.27 1.27)
  3430. )
  3431. (hide yes)
  3432. )
  3433. )
  3434. (property "Datasheet" ""
  3435. (at 40.64 57.15 0)
  3436. (effects
  3437. (font
  3438. (size 1.27 1.27)
  3439. )
  3440. )
  3441. )
  3442. (property "Description" ""
  3443. (at 40.64 57.15 0)
  3444. (effects
  3445. (font
  3446. (size 1.27 1.27)
  3447. )
  3448. (hide yes)
  3449. )
  3450. )
  3451. (property "Partkeepr" "0915"
  3452. (at 40.64 57.15 0)
  3453. (effects
  3454. (font
  3455. (size 1.27 1.27)
  3456. )
  3457. (hide yes)
  3458. )
  3459. )
  3460. (pin "1"
  3461. (uuid "95547ce9-4c61-423e-813b-3a787fc334fc")
  3462. )
  3463. (pin "2"
  3464. (uuid "2c912a8c-cec5-4a86-b649-c23903b92095")
  3465. )
  3466. (instances
  3467. (project "Salinity"
  3468. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  3469. (reference "R?")
  3470. (unit 1)
  3471. )
  3472. )
  3473. )
  3474. )
  3475. (symbol
  3476. (lib_name "TEST_1P_5")
  3477. (lib_id "conn:TEST_1P")
  3478. (at 125.73 43.18 0)
  3479. (unit 1)
  3480. (exclude_from_sim no)
  3481. (in_bom yes)
  3482. (on_board yes)
  3483. (dnp no)
  3484. (uuid "d2b237b8-f4ce-42f4-99ff-d981c0b81fa8")
  3485. (property "Reference" "PT?"
  3486. (at 124.46 40.64 0)
  3487. (effects
  3488. (font
  3489. (size 1.27 1.27)
  3490. )
  3491. (justify left)
  3492. )
  3493. )
  3494. (property "Value" "Sal_OUT_FILT"
  3495. (at 128.27 41.1479 0)
  3496. (effects
  3497. (font
  3498. (size 1.27 1.27)
  3499. )
  3500. (justify left)
  3501. (hide yes)
  3502. )
  3503. )
  3504. (property "Footprint" "PinHeader:PinHeader1"
  3505. (at 130.81 43.18 0)
  3506. (effects
  3507. (font
  3508. (size 1.27 1.27)
  3509. )
  3510. (hide yes)
  3511. )
  3512. )
  3513. (property "Datasheet" ""
  3514. (at 130.81 43.18 0)
  3515. (effects
  3516. (font
  3517. (size 1.27 1.27)
  3518. )
  3519. )
  3520. )
  3521. (property "Description" ""
  3522. (at 125.73 43.18 0)
  3523. (effects
  3524. (font
  3525. (size 1.27 1.27)
  3526. )
  3527. (hide yes)
  3528. )
  3529. )
  3530. (property "Partkeepr" "N/A"
  3531. (at 125.73 43.18 0)
  3532. (effects
  3533. (font
  3534. (size 1.27 1.27)
  3535. )
  3536. (hide yes)
  3537. )
  3538. )
  3539. (pin "1"
  3540. (uuid "9fb8018f-216c-46b3-a248-a7201b4ea9d2")
  3541. )
  3542. (instances
  3543. (project "Salinity"
  3544. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  3545. (reference "PT?")
  3546. (unit 1)
  3547. )
  3548. )
  3549. )
  3550. )
  3551. (symbol
  3552. (lib_id "global:R")
  3553. (at 77.47 52.07 180)
  3554. (unit 1)
  3555. (exclude_from_sim no)
  3556. (in_bom yes)
  3557. (on_board yes)
  3558. (dnp no)
  3559. (uuid "daba3eff-ef3c-4a21-8eb7-33da5193c4b0")
  3560. (property "Reference" "R?"
  3561. (at 78.74 50.8 0)
  3562. (effects
  3563. (font
  3564. (size 1.27 1.27)
  3565. )
  3566. (justify right)
  3567. )
  3568. )
  3569. (property "Value" "1K"
  3570. (at 78.74 53.34 0)
  3571. (effects
  3572. (font
  3573. (size 1.27 1.27)
  3574. )
  3575. (justify right)
  3576. )
  3577. )
  3578. (property "Footprint" "R:0805"
  3579. (at 79.248 52.07 90)
  3580. (effects
  3581. (font
  3582. (size 1.27 1.27)
  3583. )
  3584. (hide yes)
  3585. )
  3586. )
  3587. (property "Datasheet" ""
  3588. (at 77.47 52.07 0)
  3589. (effects
  3590. (font
  3591. (size 1.27 1.27)
  3592. )
  3593. )
  3594. )
  3595. (property "Description" ""
  3596. (at 77.47 52.07 0)
  3597. (effects
  3598. (font
  3599. (size 1.27 1.27)
  3600. )
  3601. (hide yes)
  3602. )
  3603. )
  3604. (property "Partkeepr" "0915"
  3605. (at 77.47 52.07 0)
  3606. (effects
  3607. (font
  3608. (size 1.27 1.27)
  3609. )
  3610. (hide yes)
  3611. )
  3612. )
  3613. (pin "1"
  3614. (uuid "890fb26f-355f-4821-917f-eff9e3ae740f")
  3615. )
  3616. (pin "2"
  3617. (uuid "e3c7e62c-18bf-41d1-b399-a6c8355b6007")
  3618. )
  3619. (instances
  3620. (project "Salinity"
  3621. (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
  3622. (reference "R?")
  3623. (unit 1)
  3624. )
  3625. )
  3626. )
  3627. )
  3628. (sheet_instances
  3629. (path "/"
  3630. (page "1")
  3631. )
  3632. )
  3633. )