Ordinateur.net 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815
  1. (export (version D)
  2. (design
  3. (source C:\Users\e_rcluze\Documents\Autres\Projet\ordinateur_aquarium\Eda\Ordinateur.sch)
  4. (date "20/06/2019 14:32:04")
  5. (tool "Eeschema (5.0.2)-1")
  6. (sheet (number 1) (name /) (tstamps /)
  7. (title_block
  8. (title)
  9. (company)
  10. (rev)
  11. (date)
  12. (source Ordinateur.sch)
  13. (comment (number 1) (value ""))
  14. (comment (number 2) (value ""))
  15. (comment (number 3) (value ""))
  16. (comment (number 4) (value "")))))
  17. (components
  18. (comp (ref P5)
  19. (value Cuve_haut)
  20. (footprint Connector:Bornier2.54_1x2)
  21. (fields
  22. (field (name Partkeepr) 4))
  23. (libsource (lib conn) (part CONN_01X02) (description ""))
  24. (sheetpath (names /) (tstamps /))
  25. (tstamp 59AE6E30))
  26. (comp (ref P2)
  27. (value Technique_haut)
  28. (footprint Connector:Bornier2.54_1x2)
  29. (fields
  30. (field (name Partkeepr) 4))
  31. (libsource (lib conn) (part CONN_01X02) (description ""))
  32. (sheetpath (names /) (tstamps /))
  33. (tstamp 59AE6E9C))
  34. (comp (ref P1)
  35. (value Technique_Bas)
  36. (footprint Connector:Bornier2.54_1x2)
  37. (fields
  38. (field (name Partkeepr) 4))
  39. (libsource (lib conn) (part CONN_01X02) (description ""))
  40. (sheetpath (names /) (tstamps /))
  41. (tstamp 59AE6EE0))
  42. (comp (ref P4)
  43. (value Reserve_Bas)
  44. (footprint Connector:Bornier2.54_1x2)
  45. (fields
  46. (field (name Partkeepr) 4))
  47. (libsource (lib conn) (part CONN_01X02) (description ""))
  48. (sheetpath (names /) (tstamps /))
  49. (tstamp 59AE6F7C))
  50. (comp (ref P3)
  51. (value Reserve_haut)
  52. (footprint Connector:Bornier2.54_1x2)
  53. (fields
  54. (field (name Partkeepr) 4))
  55. (libsource (lib conn) (part CONN_01X02) (description ""))
  56. (sheetpath (names /) (tstamps /))
  57. (tstamp 59AE6FD7))
  58. (comp (ref P6)
  59. (value Temperature)
  60. (footprint Connector:Bornier2.54_1x3)
  61. (fields
  62. (field (name Partkeepr) 5))
  63. (libsource (lib conn) (part CONN_01X03) (description ""))
  64. (sheetpath (names /) (tstamps /))
  65. (tstamp 59AE70BC))
  66. (comp (ref U1)
  67. (value STM32F401RC)
  68. (footprint U:LQFP64)
  69. (fields
  70. (field (name Partkeepr) 2102))
  71. (libsource (lib ST) (part STM32F401RC) (description ""))
  72. (sheetpath (names /) (tstamps /))
  73. (tstamp 59AE71DE))
  74. (comp (ref K8)
  75. (value SRD-03VDC-SL-C)
  76. (footprint relay:SRD-03VDC-SL-C)
  77. (fields
  78. (field (name Partkeepr) 350))
  79. (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
  80. (sheetpath (names /) (tstamps /))
  81. (tstamp 59AEF830))
  82. (comp (ref P14)
  83. (value Ecumeur)
  84. (footprint Connector:Bornier5_1x2)
  85. (fields
  86. (field (name Partkeepr) 0))
  87. (libsource (lib conn) (part CONN_01X02) (description ""))
  88. (sheetpath (names /) (tstamps /))
  89. (tstamp 59AEF836))
  90. (comp (ref K4)
  91. (value SRD-03VDC-SL-C)
  92. (footprint relay:SRD-03VDC-SL-C)
  93. (fields
  94. (field (name Partkeepr) 350))
  95. (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
  96. (sheetpath (names /) (tstamps /))
  97. (tstamp 59B029E2))
  98. (comp (ref P10)
  99. (value Remonte)
  100. (footprint Connector:Bornier5_1x2)
  101. (fields
  102. (field (name Partkeepr) 0))
  103. (libsource (lib conn) (part CONN_01X02) (description ""))
  104. (sheetpath (names /) (tstamps /))
  105. (tstamp 59B029E8))
  106. (comp (ref K7)
  107. (value SRD-03VDC-SL-C)
  108. (footprint relay:SRD-03VDC-SL-C)
  109. (fields
  110. (field (name Partkeepr) 350))
  111. (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
  112. (sheetpath (names /) (tstamps /))
  113. (tstamp 59B02CDF))
  114. (comp (ref P13)
  115. (value Peristatique)
  116. (footprint Connector:Bornier2.54_1x2)
  117. (fields
  118. (field (name Partkeepr) 4))
  119. (libsource (lib conn) (part CONN_01X02) (description ""))
  120. (sheetpath (names /) (tstamps /))
  121. (tstamp 59B02CE5))
  122. (comp (ref K2)
  123. (value SRD-03VDC-SL-C)
  124. (footprint relay:SRD-03VDC-SL-C)
  125. (fields
  126. (field (name Partkeepr) 350))
  127. (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
  128. (sheetpath (names /) (tstamps /))
  129. (tstamp 59B02D12))
  130. (comp (ref P8)
  131. (value Relais1)
  132. (footprint Connector:Bornier5_1x2)
  133. (fields
  134. (field (name Partkeepr) 0))
  135. (libsource (lib conn) (part CONN_01X02) (description ""))
  136. (sheetpath (names /) (tstamps /))
  137. (tstamp 59B02D18))
  138. (comp (ref K6)
  139. (value SRD-03VDC-SL-C)
  140. (footprint relay:SRD-03VDC-SL-C)
  141. (fields
  142. (field (name Partkeepr) 350))
  143. (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
  144. (sheetpath (names /) (tstamps /))
  145. (tstamp 59B034D9))
  146. (comp (ref P12)
  147. (value Osmolateur)
  148. (footprint Connector:Bornier2.54_1x2)
  149. (fields
  150. (field (name Partkeepr) 4))
  151. (libsource (lib conn) (part CONN_01X02) (description ""))
  152. (sheetpath (names /) (tstamps /))
  153. (tstamp 59B034DF))
  154. (comp (ref K1)
  155. (value SRD-03VDC-SL-C)
  156. (footprint relay:SRD-03VDC-SL-C)
  157. (fields
  158. (field (name Partkeepr) 350))
  159. (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
  160. (sheetpath (names /) (tstamps /))
  161. (tstamp 59B0350C))
  162. (comp (ref P7)
  163. (value RAH)
  164. (footprint Connector:Bornier5_1x2)
  165. (fields
  166. (field (name Partkeepr) 0))
  167. (libsource (lib conn) (part CONN_01X02) (description ""))
  168. (sheetpath (names /) (tstamps /))
  169. (tstamp 59B03512))
  170. (comp (ref K5)
  171. (value SRD-03VDC-SL-C)
  172. (footprint relay:SRD-03VDC-SL-C)
  173. (fields
  174. (field (name Partkeepr) 350))
  175. (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
  176. (sheetpath (names /) (tstamps /))
  177. (tstamp 59B0353F))
  178. (comp (ref K3)
  179. (value SRD-03VDC-SL-C)
  180. (footprint relay:SRD-03VDC-SL-C)
  181. (fields
  182. (field (name Partkeepr) 350))
  183. (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
  184. (sheetpath (names /) (tstamps /))
  185. (tstamp 59B03572))
  186. (comp (ref P9)
  187. (value Chauffage)
  188. (footprint Connector:Bornier5_1x2)
  189. (fields
  190. (field (name Partkeepr) 0))
  191. (libsource (lib conn) (part CONN_01X02) (description ""))
  192. (sheetpath (names /) (tstamps /))
  193. (tstamp 59B03578))
  194. (comp (ref P11)
  195. (value Relais2)
  196. (footprint Connector:Bornier2.54_1x2)
  197. (fields
  198. (field (name Partkeepr) 4))
  199. (libsource (lib conn) (part CONN_01X02) (description ""))
  200. (sheetpath (names /) (tstamps /))
  201. (tstamp 59B03545))
  202. (comp (ref U6)
  203. (value ULN2803A)
  204. (footprint U:SOP18)
  205. (fields
  206. (field (name Partkeepr) 2400))
  207. (libsource (lib TI) (part ULN2803A) (description ""))
  208. (sheetpath (names /) (tstamps /))
  209. (tstamp 5AFAAE23))
  210. (comp (ref J1)
  211. (value Micro_USB)
  212. (footprint Connector:Micro-USB)
  213. (fields
  214. (field (name Partkeepr) 50))
  215. (libsource (lib conn) (part Micro_USB) (description ""))
  216. (sheetpath (names /) (tstamps /))
  217. (tstamp 5AFACA99))
  218. (comp (ref Y1)
  219. (value Crystal)
  220. (footprint Y:5032)
  221. (fields
  222. (field (name Partkeepr) 1650))
  223. (libsource (lib global) (part Crystal) (description ""))
  224. (sheetpath (names /) (tstamps /))
  225. (tstamp 5AFADCC2))
  226. (comp (ref C3)
  227. (value 1µF)
  228. (footprint C:0805)
  229. (fields
  230. (field (name Partkeepr) 608))
  231. (libsource (lib global) (part C) (description ""))
  232. (sheetpath (names /) (tstamps /))
  233. (tstamp 5AFADE87))
  234. (comp (ref C6)
  235. (value 100nF)
  236. (footprint C:0805)
  237. (fields
  238. (field (name Partkeepr) 605))
  239. (libsource (lib global) (part C) (description ""))
  240. (sheetpath (names /) (tstamps /))
  241. (tstamp 5AFADF5D))
  242. (comp (ref C7)
  243. (value 4.7µF)
  244. (footprint C:0805)
  245. (fields
  246. (field (name Partkeepr) 607))
  247. (libsource (lib global) (part C) (description ""))
  248. (sheetpath (names /) (tstamps /))
  249. (tstamp 5AFAE0D9))
  250. (comp (ref SW2)
  251. (value SW_PUSH)
  252. (footprint SW:SW)
  253. (fields
  254. (field (name Partkeepr) 200))
  255. (libsource (lib global) (part SW_PUSH) (description ""))
  256. (sheetpath (names /) (tstamps /))
  257. (tstamp 5AFAE368))
  258. (comp (ref SW1)
  259. (value SW_PUSH)
  260. (footprint SW:SW)
  261. (fields
  262. (field (name Partkeepr) 200))
  263. (libsource (lib global) (part SW_PUSH) (description ""))
  264. (sheetpath (names /) (tstamps /))
  265. (tstamp 5AFAE461))
  266. (comp (ref C11)
  267. (value 100nF)
  268. (footprint C:0805)
  269. (fields
  270. (field (name Partkeepr) 605))
  271. (libsource (lib global) (part C) (description ""))
  272. (sheetpath (names /) (tstamps /))
  273. (tstamp 5AFAE512))
  274. (comp (ref C10)
  275. (value 100nF)
  276. (footprint C:0805)
  277. (fields
  278. (field (name Partkeepr) 605))
  279. (libsource (lib global) (part C) (description ""))
  280. (sheetpath (names /) (tstamps /))
  281. (tstamp 5AFAE5F9))
  282. (comp (ref R13)
  283. (value 10K)
  284. (footprint C:0805)
  285. (fields
  286. (field (name Partkeepr) 910))
  287. (libsource (lib global) (part R) (description ""))
  288. (sheetpath (names /) (tstamps /))
  289. (tstamp 5AFAE6C4))
  290. (comp (ref R7)
  291. (value 10K)
  292. (footprint C:0805)
  293. (fields
  294. (field (name Partkeepr) 910))
  295. (libsource (lib global) (part R) (description ""))
  296. (sheetpath (names /) (tstamps /))
  297. (tstamp 5AFAE837))
  298. (comp (ref C1)
  299. (value C)
  300. (footprint C:0603)
  301. (fields
  302. (field (name Partkeepr) 600))
  303. (libsource (lib global) (part C) (description ""))
  304. (sheetpath (names /) (tstamps /))
  305. (tstamp 5AFB0814))
  306. (comp (ref C2)
  307. (value C)
  308. (footprint C:0603)
  309. (fields
  310. (field (name Partkeepr) 600))
  311. (libsource (lib global) (part C) (description ""))
  312. (sheetpath (names /) (tstamps /))
  313. (tstamp 5AFB08E5))
  314. (comp (ref C5)
  315. (value 100nF)
  316. (footprint C:0805)
  317. (fields
  318. (field (name Partkeepr) 605))
  319. (libsource (lib global) (part C) (description ""))
  320. (sheetpath (names /) (tstamps /))
  321. (tstamp 5AFB4DDE))
  322. (comp (ref C9)
  323. (value 100nF)
  324. (footprint C:0805)
  325. (fields
  326. (field (name Partkeepr) 605))
  327. (libsource (lib global) (part C) (description ""))
  328. (sheetpath (names /) (tstamps /))
  329. (tstamp 5AFB4EA5))
  330. (comp (ref C4)
  331. (value 100nF)
  332. (footprint C:0805)
  333. (fields
  334. (field (name Partkeepr) 605))
  335. (libsource (lib global) (part C) (description ""))
  336. (sheetpath (names /) (tstamps /))
  337. (tstamp 5AFB547F))
  338. (comp (ref C8)
  339. (value 100nF)
  340. (footprint C:0805)
  341. (fields
  342. (field (name Partkeepr) 605))
  343. (libsource (lib global) (part C) (description ""))
  344. (sheetpath (names /) (tstamps /))
  345. (tstamp 5AFB5DDF))
  346. (comp (ref U3)
  347. (value M24C32)
  348. (footprint U:SO8N)
  349. (fields
  350. (field (name Partkeepr) 1700))
  351. (libsource (lib ST) (part M24C32) (description ""))
  352. (sheetpath (names /) (tstamps /))
  353. (tstamp 5AFB6B89))
  354. (comp (ref U2)
  355. (value M41T83)
  356. (footprint U:SOX18)
  357. (fields
  358. (field (name Partkeepr) 1600))
  359. (libsource (lib ST) (part M41T83) (description ""))
  360. (sheetpath (names /) (tstamps /))
  361. (tstamp 5AFB6C98))
  362. (comp (ref C12)
  363. (value 100nF)
  364. (footprint C:0805)
  365. (fields
  366. (field (name Partkeepr) 605))
  367. (libsource (lib global) (part C) (description ""))
  368. (sheetpath (names /) (tstamps /))
  369. (tstamp 5AFBB161))
  370. (comp (ref P15)
  371. (value I2C)
  372. (footprint Connector:Bornier2.54_1x3)
  373. (fields
  374. (field (name Partkeepr) 5))
  375. (libsource (lib conn) (part CONN_01X03) (description ""))
  376. (sheetpath (names /) (tstamps /))
  377. (tstamp 5AFC4271))
  378. (comp (ref R12)
  379. (value 10K)
  380. (footprint C:0805)
  381. (fields
  382. (field (name Partkeepr) 910))
  383. (libsource (lib global) (part R) (description ""))
  384. (sheetpath (names /) (tstamps /))
  385. (tstamp 5AFC8C4D))
  386. (comp (ref R14)
  387. (value 10K)
  388. (footprint C:0805)
  389. (fields
  390. (field (name Partkeepr) 910))
  391. (libsource (lib global) (part R) (description ""))
  392. (sheetpath (names /) (tstamps /))
  393. (tstamp 5AFC8D8E))
  394. (comp (ref R15)
  395. (value 10K)
  396. (footprint C:0805)
  397. (fields
  398. (field (name Partkeepr) 910))
  399. (libsource (lib global) (part R) (description ""))
  400. (sheetpath (names /) (tstamps /))
  401. (tstamp 5AFC8E58))
  402. (comp (ref R24)
  403. (value 100)
  404. (footprint C:0805)
  405. (fields
  406. (field (name Partkeepr) 912))
  407. (libsource (lib global) (part R) (description ""))
  408. (sheetpath (names /) (tstamps /))
  409. (tstamp 5AFAF333))
  410. (comp (ref BT1)
  411. (value Battery)
  412. (footprint Connector:batterie)
  413. (fields
  414. (field (name Partkeepr) 3))
  415. (libsource (lib global) (part Battery) (description ""))
  416. (sheetpath (names /) (tstamps /))
  417. (tstamp 5AFAE8A3))
  418. (comp (ref R6)
  419. (value 10K)
  420. (footprint C:0805)
  421. (fields
  422. (field (name Partkeepr) 910))
  423. (libsource (lib global) (part R) (description ""))
  424. (sheetpath (names /) (tstamps /))
  425. (tstamp 5AFAF4AC))
  426. (comp (ref R1)
  427. (value 10K)
  428. (footprint C:0805)
  429. (fields
  430. (field (name Partkeepr) 910))
  431. (libsource (lib global) (part R) (description ""))
  432. (sheetpath (names /) (tstamps /))
  433. (tstamp 5AFDAA38))
  434. (comp (ref R3)
  435. (value 10K)
  436. (footprint C:0805)
  437. (fields
  438. (field (name Partkeepr) 910))
  439. (libsource (lib global) (part R) (description ""))
  440. (sheetpath (names /) (tstamps /))
  441. (tstamp 5AFDCA57))
  442. (comp (ref R5)
  443. (value 10K)
  444. (footprint C:0805)
  445. (fields
  446. (field (name Partkeepr) 910))
  447. (libsource (lib global) (part R) (description ""))
  448. (sheetpath (names /) (tstamps /))
  449. (tstamp 5AFDCBCC))
  450. (comp (ref R2)
  451. (value 10K)
  452. (footprint C:0805)
  453. (fields
  454. (field (name Partkeepr) 910))
  455. (libsource (lib global) (part R) (description ""))
  456. (sheetpath (names /) (tstamps /))
  457. (tstamp 5AFDCDBE))
  458. (comp (ref R4)
  459. (value 10K)
  460. (footprint C:0805)
  461. (fields
  462. (field (name Partkeepr) 910))
  463. (libsource (lib global) (part R) (description ""))
  464. (sheetpath (names /) (tstamps /))
  465. (tstamp 5AFDCEB7))
  466. (comp (ref D1)
  467. (value Relai1)
  468. (footprint LED:0805)
  469. (fields
  470. (field (name Partkeepr) 1101))
  471. (libsource (lib global) (part LED) (description ""))
  472. (sheetpath (names /) (tstamps /))
  473. (tstamp 5AFE2D75))
  474. (comp (ref R8)
  475. (value 120)
  476. (footprint C:0805)
  477. (fields
  478. (field (name Partkeepr) 911))
  479. (libsource (lib global) (part R) (description ""))
  480. (sheetpath (names /) (tstamps /))
  481. (tstamp 5AFE4987))
  482. (comp (ref D2)
  483. (value Relai2)
  484. (footprint LED:0805)
  485. (fields
  486. (field (name Partkeepr) 1101))
  487. (libsource (lib global) (part LED) (description ""))
  488. (sheetpath (names /) (tstamps /))
  489. (tstamp 5AFE4BE9))
  490. (comp (ref R9)
  491. (value 120)
  492. (footprint C:0805)
  493. (fields
  494. (field (name Partkeepr) 911))
  495. (libsource (lib global) (part R) (description ""))
  496. (sheetpath (names /) (tstamps /))
  497. (tstamp 5AFE4BF0))
  498. (comp (ref D3)
  499. (value Ecumeur)
  500. (footprint LED:0805)
  501. (fields
  502. (field (name Partkeepr) 1101))
  503. (libsource (lib global) (part LED) (description ""))
  504. (sheetpath (names /) (tstamps /))
  505. (tstamp 5AFE4CC8))
  506. (comp (ref R10)
  507. (value 120)
  508. (footprint C:0805)
  509. (fields
  510. (field (name Partkeepr) 911))
  511. (libsource (lib global) (part R) (description ""))
  512. (sheetpath (names /) (tstamps /))
  513. (tstamp 5AFE4CCF))
  514. (comp (ref D4)
  515. (value Chauffage)
  516. (footprint LED:0805)
  517. (fields
  518. (field (name Partkeepr) 1101))
  519. (libsource (lib global) (part LED) (description ""))
  520. (sheetpath (names /) (tstamps /))
  521. (tstamp 5AFE532F))
  522. (comp (ref R11)
  523. (value 120)
  524. (footprint C:0805)
  525. (fields
  526. (field (name Partkeepr) 911))
  527. (libsource (lib global) (part R) (description ""))
  528. (sheetpath (names /) (tstamps /))
  529. (tstamp 5AFE5336))
  530. (comp (ref D5)
  531. (value Osmolateur)
  532. (footprint LED:0805)
  533. (fields
  534. (field (name Partkeepr) 1101))
  535. (libsource (lib global) (part LED) (description ""))
  536. (sheetpath (names /) (tstamps /))
  537. (tstamp 5AFE5734))
  538. (comp (ref R21)
  539. (value 120)
  540. (footprint C:0805)
  541. (fields
  542. (field (name Partkeepr) 911))
  543. (libsource (lib global) (part R) (description ""))
  544. (sheetpath (names /) (tstamps /))
  545. (tstamp 5AFE573B))
  546. (comp (ref D6)
  547. (value Remonter)
  548. (footprint LED:0805)
  549. (fields
  550. (field (name Partkeepr) 1101))
  551. (libsource (lib global) (part LED) (description ""))
  552. (sheetpath (names /) (tstamps /))
  553. (tstamp 5AFE5741))
  554. (comp (ref R22)
  555. (value 120)
  556. (footprint C:0805)
  557. (fields
  558. (field (name Partkeepr) 911))
  559. (libsource (lib global) (part R) (description ""))
  560. (sheetpath (names /) (tstamps /))
  561. (tstamp 5AFE5748))
  562. (comp (ref D7)
  563. (value Peristatique)
  564. (footprint LED:0805)
  565. (fields
  566. (field (name Partkeepr) 1101))
  567. (libsource (lib global) (part LED) (description ""))
  568. (sheetpath (names /) (tstamps /))
  569. (tstamp 5AFE574E))
  570. (comp (ref R23)
  571. (value 120)
  572. (footprint C:0805)
  573. (fields
  574. (field (name Partkeepr) 911))
  575. (libsource (lib global) (part R) (description ""))
  576. (sheetpath (names /) (tstamps /))
  577. (tstamp 5AFE5755))
  578. (comp (ref SW3)
  579. (value mt-OO8a)
  580. (footprint SW:MT-008a)
  581. (fields
  582. (field (name Partkeepr) 201))
  583. (libsource (lib global) (part mt-OO8a) (description ""))
  584. (sheetpath (names /) (tstamps /))
  585. (tstamp 5AFEAC87))
  586. (comp (ref R16)
  587. (value 10K)
  588. (footprint C:0805)
  589. (fields
  590. (field (name Partkeepr) 910))
  591. (libsource (lib global) (part R) (description ""))
  592. (sheetpath (names /) (tstamps /))
  593. (tstamp 5AFED7CC))
  594. (comp (ref R17)
  595. (value 10K)
  596. (footprint C:0805)
  597. (fields
  598. (field (name Partkeepr) 910))
  599. (libsource (lib global) (part R) (description ""))
  600. (sheetpath (names /) (tstamps /))
  601. (tstamp 5AFEE164))
  602. (comp (ref R18)
  603. (value 10K)
  604. (footprint C:0805)
  605. (fields
  606. (field (name Partkeepr) 910))
  607. (libsource (lib global) (part R) (description ""))
  608. (sheetpath (names /) (tstamps /))
  609. (tstamp 5AFEE35C))
  610. (comp (ref R19)
  611. (value 10K)
  612. (footprint C:0805)
  613. (fields
  614. (field (name Partkeepr) 910))
  615. (libsource (lib global) (part R) (description ""))
  616. (sheetpath (names /) (tstamps /))
  617. (tstamp 5AFEE591))
  618. (comp (ref R20)
  619. (value 10K)
  620. (footprint C:0805)
  621. (fields
  622. (field (name Partkeepr) 910))
  623. (libsource (lib global) (part R) (description ""))
  624. (sheetpath (names /) (tstamps /))
  625. (tstamp 5AFEE68F))
  626. (comp (ref U4)
  627. (value HD44780)
  628. (footprint Connector:PinHeader2.54_1X16)
  629. (fields
  630. (field (name Partkeepr) 100))
  631. (libsource (lib afficheur) (part HD44780) (description ""))
  632. (sheetpath (names /) (tstamps /))
  633. (tstamp 5AFAE1CC))
  634. (comp (ref D8)
  635. (value RAH)
  636. (footprint LED:0805)
  637. (fields
  638. (field (name Partkeepr) 1101))
  639. (libsource (lib global) (part LED) (description ""))
  640. (sheetpath (names /) (tstamps /))
  641. (tstamp 5B4541F8))
  642. (comp (ref R25)
  643. (value 120)
  644. (footprint C:0805)
  645. (fields
  646. (field (name Partkeepr) 911))
  647. (libsource (lib global) (part R) (description ""))
  648. (sheetpath (names /) (tstamps /))
  649. (tstamp 5B4541FF))
  650. (comp (ref P17)
  651. (value CONN_01X05)
  652. (footprint Connector:PinHeader2.54_1X5)
  653. (fields
  654. (field (name Partkeepr) 100))
  655. (libsource (lib conn) (part CONN_01X05) (description ""))
  656. (sheetpath (names /) (tstamps /))
  657. (tstamp 5B5832B2))
  658. (comp (ref VR1)
  659. (value 10K)
  660. (footprint R:3296)
  661. (fields
  662. (field (name Partkeepr) NC))
  663. (libsource (lib global) (part Poten) (description ""))
  664. (sheetpath (names /) (tstamps /))
  665. (tstamp 5B58DB3E))
  666. (comp (ref Q1)
  667. (value N_MOSFET)
  668. (footprint U:SOT-223)
  669. (fields
  670. (field (name Partkeepr) 2002))
  671. (libsource (lib global) (part N_MOSFET) (description ""))
  672. (sheetpath (names /) (tstamps /))
  673. (tstamp 5B576977))
  674. (comp (ref P16)
  675. (value Alim)
  676. (footprint Connector:Bornier5_1x2)
  677. (fields
  678. (field (name Partkeepr) 0))
  679. (libsource (lib conn) (part CONN_01X02) (description ""))
  680. (sheetpath (names /) (tstamps /))
  681. (tstamp 5B573EE1))
  682. (comp (ref R27)
  683. (value 510)
  684. (footprint C:0805)
  685. (fields
  686. (field (name Partkeepr) 913))
  687. (libsource (lib global) (part R) (description ""))
  688. (sheetpath (names /) (tstamps /))
  689. (tstamp 5CF18B4B))
  690. (comp (ref R29)
  691. (value 330)
  692. (footprint C:0805)
  693. (fields
  694. (field (name Partkeepr) 914))
  695. (libsource (lib global) (part R) (description ""))
  696. (sheetpath (names /) (tstamps /))
  697. (tstamp 5CF18B53))
  698. (comp (ref C16)
  699. (value 10µF)
  700. (footprint C:CP_CMS5X5.8)
  701. (fields
  702. (field (name Partkeepr) 609))
  703. (libsource (lib global) (part CP) (description ""))
  704. (sheetpath (names /) (tstamps /))
  705. (tstamp 5CF18B5B))
  706. (comp (ref C14)
  707. (value 100nF)
  708. (footprint C:3216-18)
  709. (fields
  710. (field (name Partkeepr) 606))
  711. (libsource (lib global) (part CP) (description ""))
  712. (sheetpath (names /) (tstamps /))
  713. (tstamp 5CF18B65))
  714. (comp (ref U7)
  715. (value LM317)
  716. (footprint U:LM317)
  717. (fields
  718. (field (name Partkeepr) 1800))
  719. (libsource (lib global) (part LM317) (description ""))
  720. (sheetpath (names /) (tstamps /))
  721. (tstamp 5CF18B6D))
  722. (comp (ref C18)
  723. (value 1µF)
  724. (footprint C:CP_CMS4X5.8)
  725. (fields
  726. (field (name Partkeepr) 608))
  727. (libsource (lib global) (part CP) (description ""))
  728. (sheetpath (names /) (tstamps /))
  729. (tstamp 5CF18B8B))
  730. (comp (ref D10)
  731. (value D)
  732. (footprint D:SMA)
  733. (fields
  734. (field (name Partkeepr) 1302))
  735. (libsource (lib global) (part D) (description ""))
  736. (sheetpath (names /) (tstamps /))
  737. (tstamp 5CF18B9A))
  738. (comp (ref R26)
  739. (value 1K)
  740. (footprint C:0805)
  741. (fields
  742. (field (name Partkeepr) 915))
  743. (libsource (lib global) (part R) (description ""))
  744. (sheetpath (names /) (tstamps /))
  745. (tstamp 5CF18BA6))
  746. (comp (ref R28)
  747. (value 330)
  748. (footprint C:0805)
  749. (fields
  750. (field (name Partkeepr) 914))
  751. (libsource (lib global) (part R) (description ""))
  752. (sheetpath (names /) (tstamps /))
  753. (tstamp 5CF18BAE))
  754. (comp (ref C15)
  755. (value 10µF)
  756. (footprint C:CP_CMS5X5.8)
  757. (fields
  758. (field (name Partkeepr) 609))
  759. (libsource (lib global) (part CP) (description ""))
  760. (sheetpath (names /) (tstamps /))
  761. (tstamp 5CF18BB6))
  762. (comp (ref C13)
  763. (value 100nF)
  764. (footprint C:3216-18)
  765. (fields
  766. (field (name Partkeepr) 606))
  767. (libsource (lib global) (part CP) (description ""))
  768. (sheetpath (names /) (tstamps /))
  769. (tstamp 5CF18BC0))
  770. (comp (ref U5)
  771. (value LM317)
  772. (footprint U:LM317)
  773. (fields
  774. (field (name Partkeepr) 1800))
  775. (libsource (lib global) (part LM317) (description ""))
  776. (sheetpath (names /) (tstamps /))
  777. (tstamp 5CF18BC8))
  778. (comp (ref C17)
  779. (value 1µF)
  780. (footprint C:CP_CMS4X5.8)
  781. (fields
  782. (field (name Partkeepr) 608))
  783. (libsource (lib global) (part CP) (description ""))
  784. (sheetpath (names /) (tstamps /))
  785. (tstamp 5CF18BE6))
  786. (comp (ref D9)
  787. (value D)
  788. (footprint D:SMA)
  789. (fields
  790. (field (name Partkeepr) 1302))
  791. (libsource (lib global) (part D) (description ""))
  792. (sheetpath (names /) (tstamps /))
  793. (tstamp 5CF18BF5))
  794. (comp (ref U8)
  795. (value ESP-12F)
  796. (footprint Module:ESP-12F)
  797. (fields
  798. (field (name Partkeepr) 2500))
  799. (libsource (lib Module) (part ESP-12F) (description ""))
  800. (sheetpath (names /) (tstamps /))
  801. (tstamp 5CF5CDD9))
  802. (comp (ref R30)
  803. (value 10K)
  804. (footprint C:0805)
  805. (fields
  806. (field (name Partkeepr) 910))
  807. (libsource (lib global) (part R) (description ""))
  808. (sheetpath (names /) (tstamps /))
  809. (tstamp 5CF5CDE7))
  810. (comp (ref R31)
  811. (value 10K)
  812. (footprint C:0805)
  813. (fields
  814. (field (name Partkeepr) 910))
  815. (libsource (lib global) (part R) (description ""))
  816. (sheetpath (names /) (tstamps /))
  817. (tstamp 5CF5CDEF))
  818. (comp (ref C20)
  819. (value 100nF)
  820. (footprint C:0805)
  821. (fields
  822. (field (name Partkeepr) 605))
  823. (libsource (lib global) (part C) (description ""))
  824. (sheetpath (names /) (tstamps /))
  825. (tstamp 5CF5CE05))
  826. (comp (ref R32)
  827. (value 10K)
  828. (footprint C:0805)
  829. (fields
  830. (field (name Partkeepr) 910))
  831. (libsource (lib global) (part R) (description ""))
  832. (sheetpath (names /) (tstamps /))
  833. (tstamp 5CF5CE0F))
  834. (comp (ref R33)
  835. (value 10K)
  836. (footprint C:0805)
  837. (fields
  838. (field (name Partkeepr) 910))
  839. (libsource (lib global) (part R) (description ""))
  840. (sheetpath (names /) (tstamps /))
  841. (tstamp 5CF5CE19))
  842. (comp (ref SJ1)
  843. (value Mode)
  844. (footprint Jumper:Jumper_2.54mm)
  845. (fields
  846. (field (name Partkeepr) 100))
  847. (libsource (lib global) (part Jumper) (description ""))
  848. (sheetpath (names /) (tstamps /))
  849. (tstamp 5CF5CE26))
  850. (comp (ref C19)
  851. (value 4.7µF)
  852. (footprint C:0805)
  853. (fields
  854. (field (name Partkeepr) 607))
  855. (libsource (lib global) (part C) (description ""))
  856. (sheetpath (names /) (tstamps /))
  857. (tstamp 5CF5CE3A))
  858. (comp (ref P18)
  859. (value ProgESP)
  860. (footprint Connector:PinHeader2.54_1X2)
  861. (fields
  862. (field (name Partkeepr) 100))
  863. (libsource (lib conn) (part CONN_01X02) (description ""))
  864. (sheetpath (names /) (tstamps /))
  865. (tstamp 5CF5CE43))
  866. (comp (ref P19)
  867. (value CONN_01X01)
  868. (footprint MH:MH3mm)
  869. (libsource (lib conn) (part CONN_01X01) (description ""))
  870. (sheetpath (names /) (tstamps /))
  871. (tstamp 5D0CCC09))
  872. (comp (ref P20)
  873. (value CONN_01X01)
  874. (footprint MH:MH3mm)
  875. (libsource (lib conn) (part CONN_01X01) (description ""))
  876. (sheetpath (names /) (tstamps /))
  877. (tstamp 5D0D5B33))
  878. (comp (ref P21)
  879. (value CONN_01X01)
  880. (footprint MH:MH3mm)
  881. (libsource (lib conn) (part CONN_01X01) (description ""))
  882. (sheetpath (names /) (tstamps /))
  883. (tstamp 5D0D5C25))
  884. (comp (ref P22)
  885. (value CONN_01X01)
  886. (footprint MH:MH3mm)
  887. (libsource (lib conn) (part CONN_01X01) (description ""))
  888. (sheetpath (names /) (tstamps /))
  889. (tstamp 5D0D5D13)))
  890. (libparts
  891. (libpart (lib Module) (part ESP-12F)
  892. (fields
  893. (field (name Reference) U)
  894. (field (name Value) ESP-12F)
  895. (field (name Partkeepr) 2500))
  896. (pins
  897. (pin (num 1) (name RST) (type input))
  898. (pin (num 2) (name ADC) (type BiDi))
  899. (pin (num 3) (name EN) (type input))
  900. (pin (num 4) (name GPIO16) (type BiDi))
  901. (pin (num 5) (name GPIO14) (type BiDi))
  902. (pin (num 6) (name GPIO12) (type BiDi))
  903. (pin (num 7) (name GPIO13) (type BiDi))
  904. (pin (num 8) (name VCC) (type power_in))
  905. (pin (num 9) (name CS0) (type input))
  906. (pin (num 10) (name MISO) (type BiDi))
  907. (pin (num 11) (name GPIO9) (type BiDi))
  908. (pin (num 12) (name GPIO10) (type BiDi))
  909. (pin (num 13) (name MOSI) (type BiDi))
  910. (pin (num 14) (name SCLK) (type BiDi))
  911. (pin (num 15) (name GND) (type power_in))
  912. (pin (num 16) (name GPIO15) (type BiDi))
  913. (pin (num 17) (name GPIO2) (type BiDi))
  914. (pin (num 18) (name GPIO0) (type BiDi))
  915. (pin (num 19) (name GPIO4) (type BiDi))
  916. (pin (num 20) (name GPIO5) (type BiDi))
  917. (pin (num 21) (name RXD) (type input))
  918. (pin (num 22) (name TXD) (type output))))
  919. (libpart (lib ST) (part M24C32)
  920. (fields
  921. (field (name Reference) U)
  922. (field (name Value) M24C32)
  923. (field (name Partkeepr) 1700))
  924. (pins
  925. (pin (num 1) (name E0) (type input))
  926. (pin (num 2) (name E1) (type input))
  927. (pin (num 3) (name E2) (type input))
  928. (pin (num 4) (name VSS) (type power_in))
  929. (pin (num 5) (name VCC) (type power_in))
  930. (pin (num 6) (name ~WC) (type input))
  931. (pin (num 7) (name SCL) (type BiDi))
  932. (pin (num 8) (name SDA) (type BiDi))))
  933. (libpart (lib ST) (part M41T83)
  934. (fields
  935. (field (name Reference) U)
  936. (field (name Value) M41T83)
  937. (field (name Partkeepr) 1600))
  938. (pins
  939. (pin (num 1) (name NC) (type NotConnected))
  940. (pin (num 2) (name NF) (type input))
  941. (pin (num 3) (name NF) (type input))
  942. (pin (num 4) (name NC) (type input))
  943. (pin (num 5) (name ~RST) (type input))
  944. (pin (num 6) (name DU) (type input))
  945. (pin (num 7) (name SQW) (type input))
  946. (pin (num 8) (name VBAT) (type input))
  947. (pin (num 9) (name VSS) (type input))
  948. (pin (num 10) (name SDA) (type input))
  949. (pin (num 11) (name SCL) (type input))
  950. (pin (num 12) (name ~IRQ1~/FT/OUT) (type input))
  951. (pin (num 13) (name NC) (type input))
  952. (pin (num 14) (name ~IRQ2) (type input))
  953. (pin (num 15) (name VCC) (type input))
  954. (pin (num 16) (name NF) (type input))
  955. (pin (num 17) (name NF) (type input))
  956. (pin (num 18) (name NC) (type input))))
  957. (libpart (lib ST) (part STM32F401RC)
  958. (fields
  959. (field (name Reference) U)
  960. (field (name Value) STM32F401RC)
  961. (field (name Partkeepr) 2102))
  962. (pins
  963. (pin (num 1) (name VBAT) (type input))
  964. (pin (num 2) (name PC13) (type input))
  965. (pin (num 3) (name PC14) (type input))
  966. (pin (num 4) (name PC15) (type input))
  967. (pin (num 5) (name PH0) (type input))
  968. (pin (num 6) (name PH1) (type input))
  969. (pin (num 7) (name NRST) (type input))
  970. (pin (num 8) (name PC0) (type input))
  971. (pin (num 9) (name PC1) (type input))
  972. (pin (num 10) (name PC2) (type input))
  973. (pin (num 11) (name PC3) (type input))
  974. (pin (num 12) (name VSSA) (type input))
  975. (pin (num 13) (name VDDA) (type input))
  976. (pin (num 14) (name PA0) (type input))
  977. (pin (num 15) (name PA1) (type input))
  978. (pin (num 16) (name PA2) (type input))
  979. (pin (num 17) (name PA3) (type input))
  980. (pin (num 18) (name VSS) (type input))
  981. (pin (num 19) (name VDD) (type input))
  982. (pin (num 20) (name PA4) (type input))
  983. (pin (num 21) (name PA5) (type input))
  984. (pin (num 22) (name PA6) (type input))
  985. (pin (num 23) (name PA7) (type input))
  986. (pin (num 24) (name PC4) (type input))
  987. (pin (num 25) (name PC5) (type input))
  988. (pin (num 26) (name PB0) (type input))
  989. (pin (num 27) (name PB1) (type input))
  990. (pin (num 28) (name PB2) (type input))
  991. (pin (num 29) (name PB10) (type input))
  992. (pin (num 30) (name VCAP1) (type input))
  993. (pin (num 31) (name VSS) (type input))
  994. (pin (num 32) (name VDD) (type input))
  995. (pin (num 33) (name PB12) (type input))
  996. (pin (num 34) (name PB13) (type input))
  997. (pin (num 35) (name PB14) (type input))
  998. (pin (num 36) (name PB15) (type input))
  999. (pin (num 37) (name PC6) (type input))
  1000. (pin (num 38) (name PC7) (type input))
  1001. (pin (num 39) (name PC8) (type input))
  1002. (pin (num 40) (name PC9) (type input))
  1003. (pin (num 41) (name PA8) (type input))
  1004. (pin (num 42) (name PA9) (type input))
  1005. (pin (num 43) (name PA10) (type input))
  1006. (pin (num 44) (name PA11) (type input))
  1007. (pin (num 45) (name PA12) (type input))
  1008. (pin (num 46) (name PA13) (type input))
  1009. (pin (num 47) (name VDD) (type input))
  1010. (pin (num 48) (name VSS) (type input))
  1011. (pin (num 49) (name PA14) (type input))
  1012. (pin (num 50) (name PA15) (type input))
  1013. (pin (num 51) (name PC10) (type input))
  1014. (pin (num 52) (name PC11) (type input))
  1015. (pin (num 53) (name PC12) (type input))
  1016. (pin (num 54) (name PD2) (type input))
  1017. (pin (num 55) (name PB3) (type input))
  1018. (pin (num 56) (name PB4) (type input))
  1019. (pin (num 57) (name PB5) (type input))
  1020. (pin (num 58) (name PB6) (type input))
  1021. (pin (num 59) (name PB7) (type input))
  1022. (pin (num 60) (name BOOT0) (type input))
  1023. (pin (num 61) (name PB8) (type input))
  1024. (pin (num 62) (name PB9) (type input))
  1025. (pin (num 63) (name VSS) (type input))
  1026. (pin (num 64) (name VDD) (type input))))
  1027. (libpart (lib TI) (part ULN2803A)
  1028. (fields
  1029. (field (name Reference) U)
  1030. (field (name Value) ULN2803A))
  1031. (pins
  1032. (pin (num 1) (name 1B) (type input))
  1033. (pin (num 2) (name 2B) (type input))
  1034. (pin (num 3) (name 3B) (type input))
  1035. (pin (num 4) (name 4B) (type input))
  1036. (pin (num 5) (name 5B) (type input))
  1037. (pin (num 6) (name 6B) (type input))
  1038. (pin (num 7) (name 7B) (type input))
  1039. (pin (num 8) (name 8B) (type input))
  1040. (pin (num 9) (name GND) (type power_in))
  1041. (pin (num 10) (name VCC) (type power_in))
  1042. (pin (num 11) (name 8C) (type output))
  1043. (pin (num 12) (name 7C) (type output))
  1044. (pin (num 13) (name 6C) (type output))
  1045. (pin (num 14) (name 5C) (type output))
  1046. (pin (num 15) (name 4C) (type output))
  1047. (pin (num 16) (name 3C) (type output))
  1048. (pin (num 17) (name 2C) (type output))
  1049. (pin (num 18) (name 1C) (type output))))
  1050. (libpart (lib afficheur) (part HD44780)
  1051. (fields
  1052. (field (name Reference) U)
  1053. (field (name Value) HD44780))
  1054. (pins
  1055. (pin (num 1) (name VSS) (type power_in))
  1056. (pin (num 2) (name VDD) (type power_in))
  1057. (pin (num 3) (name Vee) (type power_in))
  1058. (pin (num 4) (name RS) (type input))
  1059. (pin (num 5) (name R/W) (type input))
  1060. (pin (num 6) (name E) (type input))
  1061. (pin (num 7) (name D0) (type input))
  1062. (pin (num 8) (name D1) (type input))
  1063. (pin (num 9) (name D2) (type input))
  1064. (pin (num 10) (name D3) (type input))
  1065. (pin (num 11) (name D4) (type input))
  1066. (pin (num 12) (name D5) (type input))
  1067. (pin (num 13) (name D6) (type input))
  1068. (pin (num 14) (name D7) (type input))
  1069. (pin (num 15) (name A) (type input))
  1070. (pin (num 16) (name K) (type input))))
  1071. (libpart (lib conn) (part CONN_01X01)
  1072. (footprints
  1073. (fp Pin_Header_Straight_1X01)
  1074. (fp Pin_Header_Angled_1X01)
  1075. (fp Socket_Strip_Straight_1X01)
  1076. (fp Socket_Strip_Angled_1X01))
  1077. (fields
  1078. (field (name Reference) P)
  1079. (field (name Value) CONN_01X01))
  1080. (pins
  1081. (pin (num 1) (name P1) (type passive))))
  1082. (libpart (lib conn) (part CONN_01X02)
  1083. (footprints
  1084. (fp Pin_Header_Straight_1X02)
  1085. (fp Pin_Header_Angled_1X02)
  1086. (fp Socket_Strip_Straight_1X02)
  1087. (fp Socket_Strip_Angled_1X02))
  1088. (fields
  1089. (field (name Reference) P)
  1090. (field (name Value) CONN_01X02))
  1091. (pins
  1092. (pin (num 1) (name P1) (type passive))
  1093. (pin (num 2) (name P2) (type passive))))
  1094. (libpart (lib conn) (part CONN_01X03)
  1095. (footprints
  1096. (fp Pin_Header_Straight_1X03)
  1097. (fp Pin_Header_Angled_1X03)
  1098. (fp Socket_Strip_Straight_1X03)
  1099. (fp Socket_Strip_Angled_1X03))
  1100. (fields
  1101. (field (name Reference) P)
  1102. (field (name Value) CONN_01X03))
  1103. (pins
  1104. (pin (num 1) (name P1) (type passive))
  1105. (pin (num 2) (name P2) (type passive))
  1106. (pin (num 3) (name P3) (type passive))))
  1107. (libpart (lib conn) (part CONN_01X05)
  1108. (footprints
  1109. (fp Pin_Header_Straight_1X05)
  1110. (fp Pin_Header_Angled_1X05)
  1111. (fp Socket_Strip_Straight_1X05)
  1112. (fp Socket_Strip_Angled_1X05))
  1113. (fields
  1114. (field (name Reference) P)
  1115. (field (name Value) CONN_01X05))
  1116. (pins
  1117. (pin (num 1) (name P1) (type passive))
  1118. (pin (num 2) (name P2) (type passive))
  1119. (pin (num 3) (name P3) (type passive))
  1120. (pin (num 4) (name P4) (type passive))
  1121. (pin (num 5) (name P5) (type passive))))
  1122. (libpart (lib conn) (part Micro_USB)
  1123. (fields
  1124. (field (name Reference) J)
  1125. (field (name Value) Micro_USB))
  1126. (pins
  1127. (pin (num 0) (name USB_SH) (type input))
  1128. (pin (num 1) (name USB_VBUS) (type input))
  1129. (pin (num 2) (name USB_N) (type input))
  1130. (pin (num 3) (name USB_P) (type input))
  1131. (pin (num 4) (name USB_ID) (type input))
  1132. (pin (num 5) (name USB_GND) (type input))))
  1133. (libpart (lib global) (part Battery)
  1134. (fields
  1135. (field (name Reference) BT)
  1136. (field (name Value) Battery))
  1137. (pins
  1138. (pin (num 1) (name ~) (type passive))
  1139. (pin (num 2) (name ~) (type passive))))
  1140. (libpart (lib global) (part C)
  1141. (footprints
  1142. (fp C?)
  1143. (fp C_????_*)
  1144. (fp C_????)
  1145. (fp SMD*_c)
  1146. (fp Capacitor*))
  1147. (fields
  1148. (field (name Reference) C)
  1149. (field (name Value) C))
  1150. (pins
  1151. (pin (num 1) (name ~) (type passive))
  1152. (pin (num 2) (name ~) (type passive))))
  1153. (libpart (lib global) (part CP)
  1154. (footprints
  1155. (fp CP*)
  1156. (fp Elko*)
  1157. (fp TantalC*)
  1158. (fp C*elec)
  1159. (fp c_elec*)
  1160. (fp SMD*_Pol))
  1161. (fields
  1162. (field (name Reference) C)
  1163. (field (name Value) CP))
  1164. (pins
  1165. (pin (num 1) (name ~) (type passive))
  1166. (pin (num 2) (name ~) (type passive))))
  1167. (libpart (lib global) (part Crystal)
  1168. (footprints
  1169. (fp Crystal_*))
  1170. (fields
  1171. (field (name Reference) Y)
  1172. (field (name Value) Crystal))
  1173. (pins
  1174. (pin (num 1) (name 1) (type passive))
  1175. (pin (num 2) (name 2) (type passive))))
  1176. (libpart (lib global) (part D)
  1177. (footprints
  1178. (fp Diode_*)
  1179. (fp D-Pak_TO252AA)
  1180. (fp *SingleDiode)
  1181. (fp *_Diode_*)
  1182. (fp *SingleDiode*))
  1183. (fields
  1184. (field (name Reference) D)
  1185. (field (name Value) D))
  1186. (pins
  1187. (pin (num 1) (name K) (type passive))
  1188. (pin (num 2) (name A) (type passive))))
  1189. (libpart (lib global) (part Jumper)
  1190. (fields
  1191. (field (name Reference) SJ)
  1192. (field (name Value) Jumper))
  1193. (pins
  1194. (pin (num 1) (name ~) (type passive))
  1195. (pin (num 2) (name ~) (type passive))))
  1196. (libpart (lib global) (part LED)
  1197. (footprints
  1198. (fp LED-3MM)
  1199. (fp LED-5MM)
  1200. (fp LED-10MM)
  1201. (fp LED-0603)
  1202. (fp LED-0805)
  1203. (fp LED-1206)
  1204. (fp LEDV))
  1205. (fields
  1206. (field (name Reference) D)
  1207. (field (name Value) LED))
  1208. (pins
  1209. (pin (num 1) (name K) (type passive))
  1210. (pin (num 2) (name A) (type passive))))
  1211. (libpart (lib global) (part LM317)
  1212. (fields
  1213. (field (name Reference) U)
  1214. (field (name Value) LM317))
  1215. (pins
  1216. (pin (num 1) (name Adj) (type input))
  1217. (pin (num 2) (name Vout) (type input))
  1218. (pin (num 3) (name Vin) (type input))))
  1219. (libpart (lib global) (part N_MOSFET)
  1220. (fields
  1221. (field (name Reference) Q)
  1222. (field (name Value) N_MOSFET))
  1223. (pins
  1224. (pin (num 1) (name G) (type input))
  1225. (pin (num 2) (name D) (type input))
  1226. (pin (num 3) (name S) (type input))))
  1227. (libpart (lib global) (part Poten)
  1228. (footprints
  1229. (fp R_*)
  1230. (fp Resistor_*))
  1231. (fields
  1232. (field (name Reference) VR)
  1233. (field (name Value) Poten))
  1234. (pins
  1235. (pin (num 1) (name ~) (type passive))
  1236. (pin (num 2) (name ~) (type passive))
  1237. (pin (num 3) (name ~) (type passive))))
  1238. (libpart (lib global) (part R)
  1239. (footprints
  1240. (fp R_*)
  1241. (fp Resistor_*))
  1242. (fields
  1243. (field (name Reference) R)
  1244. (field (name Value) R))
  1245. (pins
  1246. (pin (num 1) (name ~) (type passive))
  1247. (pin (num 2) (name ~) (type passive))))
  1248. (libpart (lib global) (part SW_PUSH)
  1249. (fields
  1250. (field (name Reference) SW)
  1251. (field (name Value) SW_PUSH))
  1252. (pins
  1253. (pin (num 1) (name 1) (type passive))
  1254. (pin (num 2) (name 2) (type passive))))
  1255. (libpart (lib global) (part mt-OO8a)
  1256. (fields
  1257. (field (name Reference) SW)
  1258. (field (name Value) mt-OO8a))
  1259. (pins
  1260. (pin (num 1) (name Left) (type input))
  1261. (pin (num 2) (name Select) (type input))
  1262. (pin (num 3) (name Down) (type input))
  1263. (pin (num 4) (name Right) (type input))
  1264. (pin (num 5) (name Com) (type input))
  1265. (pin (num 6) (name Up) (type input))))
  1266. (libpart (lib relay) (part SRD-03VDC-SL-C)
  1267. (fields
  1268. (field (name Reference) K)
  1269. (field (name Value) SRD-03VDC-SL-C)
  1270. (field (name Partkeepr) 350))
  1271. (pins
  1272. (pin (num 1) (name A1) (type input))
  1273. (pin (num 2) (name A2) (type input))
  1274. (pin (num 3) (name COM) (type input))
  1275. (pin (num 4) (name NO) (type input))
  1276. (pin (num 5) (name NC) (type input)))))
  1277. (libraries
  1278. (library (logical Module)
  1279. (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/Module.lib))
  1280. (library (logical ST)
  1281. (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/ST.lib))
  1282. (library (logical TI)
  1283. (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/TI.lib))
  1284. (library (logical afficheur)
  1285. (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/afficheur.lib))
  1286. (library (logical conn)
  1287. (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/conn.lib))
  1288. (library (logical global)
  1289. (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/global.lib))
  1290. (library (logical relay)
  1291. (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/relay.lib)))
  1292. (nets
  1293. (net (code 1) (name /GND)
  1294. (node (ref D3) (pin 1))
  1295. (node (ref U1) (pin 31))
  1296. (node (ref D2) (pin 1))
  1297. (node (ref U1) (pin 12))
  1298. (node (ref U1) (pin 63))
  1299. (node (ref SW3) (pin 5))
  1300. (node (ref P2) (pin 1))
  1301. (node (ref P1) (pin 1))
  1302. (node (ref D4) (pin 1))
  1303. (node (ref P12) (pin 2))
  1304. (node (ref U3) (pin 1))
  1305. (node (ref U3) (pin 2))
  1306. (node (ref D5) (pin 1))
  1307. (node (ref U3) (pin 3))
  1308. (node (ref U3) (pin 4))
  1309. (node (ref BT1) (pin 2))
  1310. (node (ref D1) (pin 1))
  1311. (node (ref P15) (pin 3))
  1312. (node (ref C5) (pin 1))
  1313. (node (ref C8) (pin 1))
  1314. (node (ref P13) (pin 2))
  1315. (node (ref K4) (pin 2))
  1316. (node (ref C7) (pin 2))
  1317. (node (ref C2) (pin 2))
  1318. (node (ref C1) (pin 2))
  1319. (node (ref P6) (pin 3))
  1320. (node (ref D6) (pin 1))
  1321. (node (ref P3) (pin 1))
  1322. (node (ref D7) (pin 1))
  1323. (node (ref P4) (pin 1))
  1324. (node (ref C4) (pin 1))
  1325. (node (ref Q1) (pin 3))
  1326. (node (ref SJ1) (pin 2))
  1327. (node (ref R27) (pin 2))
  1328. (node (ref C16) (pin 2))
  1329. (node (ref C14) (pin 2))
  1330. (node (ref C19) (pin 2))
  1331. (node (ref C18) (pin 2))
  1332. (node (ref U8) (pin 15))
  1333. (node (ref C20) (pin 2))
  1334. (node (ref P11) (pin 2))
  1335. (node (ref J1) (pin 5))
  1336. (node (ref U2) (pin 3))
  1337. (node (ref C3) (pin 1))
  1338. (node (ref C6) (pin 1))
  1339. (node (ref U2) (pin 2))
  1340. (node (ref C9) (pin 1))
  1341. (node (ref K5) (pin 2))
  1342. (node (ref K1) (pin 2))
  1343. (node (ref K3) (pin 2))
  1344. (node (ref C11) (pin 1))
  1345. (node (ref U8) (pin 16))
  1346. (node (ref U6) (pin 9))
  1347. (node (ref C13) (pin 2))
  1348. (node (ref C15) (pin 2))
  1349. (node (ref R7) (pin 1))
  1350. (node (ref R26) (pin 2))
  1351. (node (ref C17) (pin 2))
  1352. (node (ref U2) (pin 16))
  1353. (node (ref U2) (pin 17))
  1354. (node (ref VR1) (pin 1))
  1355. (node (ref U2) (pin 9))
  1356. (node (ref SW2) (pin 2))
  1357. (node (ref U1) (pin 18))
  1358. (node (ref D8) (pin 1))
  1359. (node (ref U4) (pin 16))
  1360. (node (ref P17) (pin 3))
  1361. (node (ref U4) (pin 1))
  1362. (node (ref K8) (pin 2))
  1363. (node (ref C12) (pin 2))
  1364. (node (ref P5) (pin 1))
  1365. (node (ref K7) (pin 2))
  1366. (node (ref K6) (pin 2))
  1367. (node (ref U1) (pin 48))
  1368. (node (ref K2) (pin 2)))
  1369. (net (code 2) (name /D7)
  1370. (node (ref U4) (pin 14))
  1371. (node (ref U1) (pin 24)))
  1372. (net (code 3) (name "Net-(U4-Pad3)")
  1373. (node (ref U4) (pin 3))
  1374. (node (ref VR1) (pin 2)))
  1375. (net (code 4) (name "Net-(U4-Pad7)")
  1376. (node (ref U4) (pin 7)))
  1377. (net (code 5) (name "Net-(U4-Pad8)")
  1378. (node (ref U4) (pin 8)))
  1379. (net (code 6) (name "Net-(U4-Pad9)")
  1380. (node (ref U4) (pin 9)))
  1381. (net (code 7) (name "Net-(D8-Pad2)")
  1382. (node (ref D8) (pin 2))
  1383. (node (ref R25) (pin 1)))
  1384. (net (code 8) (name /RAH_IN)
  1385. (node (ref U1) (pin 54))
  1386. (node (ref U6) (pin 5))
  1387. (node (ref R25) (pin 2)))
  1388. (net (code 9) (name /SWCLK)
  1389. (node (ref P17) (pin 2))
  1390. (node (ref U1) (pin 49)))
  1391. (net (code 10) (name /SWDIO)
  1392. (node (ref U1) (pin 46))
  1393. (node (ref P17) (pin 4)))
  1394. (net (code 11) (name /3.3V)
  1395. (node (ref R13) (pin 1))
  1396. (node (ref SW1) (pin 2))
  1397. (node (ref R14) (pin 2))
  1398. (node (ref C10) (pin 1))
  1399. (node (ref R3) (pin 1))
  1400. (node (ref R12) (pin 2))
  1401. (node (ref R18) (pin 1))
  1402. (node (ref U6) (pin 10))
  1403. (node (ref D10) (pin 1))
  1404. (node (ref R17) (pin 1))
  1405. (node (ref R16) (pin 1))
  1406. (node (ref C19) (pin 1))
  1407. (node (ref R4) (pin 1))
  1408. (node (ref C18) (pin 1))
  1409. (node (ref R33) (pin 1))
  1410. (node (ref R32) (pin 1))
  1411. (node (ref R29) (pin 1))
  1412. (node (ref R2) (pin 1))
  1413. (node (ref U7) (pin 2))
  1414. (node (ref P17) (pin 1))
  1415. (node (ref R19) (pin 1))
  1416. (node (ref C8) (pin 2))
  1417. (node (ref R5) (pin 1))
  1418. (node (ref C5) (pin 2))
  1419. (node (ref R1) (pin 1))
  1420. (node (ref U1) (pin 47))
  1421. (node (ref C12) (pin 1))
  1422. (node (ref C4) (pin 2))
  1423. (node (ref U2) (pin 6))
  1424. (node (ref R6) (pin 1))
  1425. (node (ref U1) (pin 19))
  1426. (node (ref U1) (pin 64))
  1427. (node (ref P6) (pin 1))
  1428. (node (ref U1) (pin 13))
  1429. (node (ref U2) (pin 15))
  1430. (node (ref U1) (pin 32))
  1431. (node (ref C9) (pin 2))
  1432. (node (ref R15) (pin 2))
  1433. (node (ref C20) (pin 1))
  1434. (node (ref U3) (pin 5))
  1435. (node (ref C3) (pin 2))
  1436. (node (ref R20) (pin 1))
  1437. (node (ref C6) (pin 2))
  1438. (node (ref R30) (pin 2))
  1439. (node (ref R31) (pin 2))
  1440. (node (ref U8) (pin 8)))
  1441. (net (code 12) (name /Right)
  1442. (node (ref R16) (pin 2))
  1443. (node (ref SW3) (pin 4))
  1444. (node (ref U1) (pin 38)))
  1445. (net (code 13) (name /nrst)
  1446. (node (ref C11) (pin 2))
  1447. (node (ref R13) (pin 2))
  1448. (node (ref U1) (pin 7))
  1449. (node (ref SW2) (pin 1))
  1450. (node (ref P17) (pin 5)))
  1451. (net (code 14) (name "Net-(U1-Pad1)")
  1452. (node (ref U1) (pin 1)))
  1453. (net (code 15) (name "Net-(U4-Pad10)")
  1454. (node (ref U4) (pin 10)))
  1455. (net (code 16) (name /5V)
  1456. (node (ref U5) (pin 2))
  1457. (node (ref R28) (pin 1))
  1458. (node (ref C17) (pin 1))
  1459. (node (ref VR1) (pin 3))
  1460. (node (ref D9) (pin 1))
  1461. (node (ref U4) (pin 2))
  1462. (node (ref R24) (pin 1)))
  1463. (net (code 17) (name /boot0)
  1464. (node (ref SW1) (pin 1))
  1465. (node (ref R7) (pin 2))
  1466. (node (ref U1) (pin 60))
  1467. (node (ref C10) (pin 2)))
  1468. (net (code 18) (name "Net-(R24-Pad2)")
  1469. (node (ref R24) (pin 2))
  1470. (node (ref U4) (pin 15)))
  1471. (net (code 19) (name "Net-(BT1-Pad1)")
  1472. (node (ref BT1) (pin 1))
  1473. (node (ref U2) (pin 8)))
  1474. (net (code 20) (name "Net-(U2-Pad5)")
  1475. (node (ref U2) (pin 5)))
  1476. (net (code 21) (name /Osomalteur_IN)
  1477. (node (ref U6) (pin 6))
  1478. (node (ref U1) (pin 56))
  1479. (node (ref R21) (pin 2)))
  1480. (net (code 22) (name "Net-(D6-Pad2)")
  1481. (node (ref D6) (pin 2))
  1482. (node (ref R22) (pin 1)))
  1483. (net (code 23) (name /Remonter_IN)
  1484. (node (ref U1) (pin 2))
  1485. (node (ref R22) (pin 2))
  1486. (node (ref U6) (pin 8)))
  1487. (net (code 24) (name "Net-(D7-Pad2)")
  1488. (node (ref R23) (pin 1))
  1489. (node (ref D7) (pin 2)))
  1490. (net (code 25) (name /Peristatique_IN)
  1491. (node (ref R23) (pin 2))
  1492. (node (ref U6) (pin 7))
  1493. (node (ref U1) (pin 57)))
  1494. (net (code 26) (name "Net-(D5-Pad2)")
  1495. (node (ref R21) (pin 1))
  1496. (node (ref D5) (pin 2)))
  1497. (net (code 27) (name "Net-(D1-Pad2)")
  1498. (node (ref D1) (pin 2))
  1499. (node (ref R8) (pin 1)))
  1500. (net (code 28) (name /Relais1_IN)
  1501. (node (ref U6) (pin 1))
  1502. (node (ref R8) (pin 2))
  1503. (node (ref U1) (pin 50)))
  1504. (net (code 29) (name "Net-(D2-Pad2)")
  1505. (node (ref R9) (pin 1))
  1506. (node (ref D2) (pin 2)))
  1507. (net (code 30) (name /Relais2_IN)
  1508. (node (ref R9) (pin 2))
  1509. (node (ref U6) (pin 2))
  1510. (node (ref U1) (pin 51)))
  1511. (net (code 31) (name "Net-(D3-Pad2)")
  1512. (node (ref D3) (pin 2))
  1513. (node (ref R10) (pin 1)))
  1514. (net (code 32) (name /Ecumeur_IN)
  1515. (node (ref R10) (pin 2))
  1516. (node (ref U1) (pin 52))
  1517. (node (ref U6) (pin 3)))
  1518. (net (code 33) (name "Net-(D4-Pad2)")
  1519. (node (ref D4) (pin 2))
  1520. (node (ref R11) (pin 1)))
  1521. (net (code 34) (name /Chauffage_IN)
  1522. (node (ref R11) (pin 2))
  1523. (node (ref U1) (pin 53))
  1524. (node (ref U6) (pin 4)))
  1525. (net (code 35) (name "Net-(U8-Pad4)")
  1526. (node (ref U8) (pin 4)))
  1527. (net (code 36) (name /CS_ESP)
  1528. (node (ref U8) (pin 9))
  1529. (node (ref U1) (pin 20)))
  1530. (net (code 37) (name "Net-(R30-Pad1)")
  1531. (node (ref U8) (pin 1))
  1532. (node (ref R30) (pin 1)))
  1533. (net (code 38) (name "Net-(R31-Pad1)")
  1534. (node (ref U8) (pin 3))
  1535. (node (ref R31) (pin 1)))
  1536. (net (code 39) (name "Net-(U8-Pad5)")
  1537. (node (ref U8) (pin 5)))
  1538. (net (code 40) (name "Net-(U8-Pad6)")
  1539. (node (ref U8) (pin 6)))
  1540. (net (code 41) (name "Net-(U8-Pad7)")
  1541. (node (ref U8) (pin 7)))
  1542. (net (code 42) (name "Net-(U8-Pad11)")
  1543. (node (ref U8) (pin 11)))
  1544. (net (code 43) (name "Net-(U8-Pad12)")
  1545. (node (ref U8) (pin 12)))
  1546. (net (code 44) (name "Net-(U8-Pad20)")
  1547. (node (ref U8) (pin 20)))
  1548. (net (code 45) (name "Net-(U8-Pad19)")
  1549. (node (ref U8) (pin 19)))
  1550. (net (code 46) (name "Net-(U8-Pad2)")
  1551. (node (ref U8) (pin 2)))
  1552. (net (code 47) (name /MISO)
  1553. (node (ref U8) (pin 10))
  1554. (node (ref U1) (pin 23)))
  1555. (net (code 48) (name /MOSI)
  1556. (node (ref U1) (pin 22))
  1557. (node (ref U8) (pin 13)))
  1558. (net (code 49) (name /CLK)
  1559. (node (ref U1) (pin 21))
  1560. (node (ref U8) (pin 14)))
  1561. (net (code 50) (name /RX)
  1562. (node (ref P18) (pin 1))
  1563. (node (ref U8) (pin 21)))
  1564. (net (code 51) (name /TX)
  1565. (node (ref U8) (pin 22))
  1566. (node (ref P18) (pin 2)))
  1567. (net (code 52) (name "Net-(U1-Pad15)")
  1568. (node (ref U1) (pin 15)))
  1569. (net (code 53) (name "Net-(U1-Pad16)")
  1570. (node (ref U1) (pin 16)))
  1571. (net (code 54) (name "Net-(U1-Pad35)")
  1572. (node (ref U1) (pin 35)))
  1573. (net (code 55) (name "Net-(U1-Pad17)")
  1574. (node (ref U1) (pin 17)))
  1575. (net (code 56) (name "Net-(U1-Pad61)")
  1576. (node (ref U1) (pin 61)))
  1577. (net (code 57) (name "Net-(U1-Pad62)")
  1578. (node (ref U1) (pin 62)))
  1579. (net (code 58) (name "Net-(P19-Pad1)")
  1580. (node (ref P19) (pin 1)))
  1581. (net (code 59) (name "Net-(P20-Pad1)")
  1582. (node (ref P20) (pin 1)))
  1583. (net (code 60) (name "Net-(P21-Pad1)")
  1584. (node (ref P21) (pin 1)))
  1585. (net (code 61) (name "Net-(P22-Pad1)")
  1586. (node (ref P22) (pin 1)))
  1587. (net (code 62) (name "Net-(R32-Pad2)")
  1588. (node (ref R32) (pin 2))
  1589. (node (ref U8) (pin 17)))
  1590. (net (code 63) (name /mode)
  1591. (node (ref R33) (pin 2))
  1592. (node (ref U8) (pin 18))
  1593. (node (ref SJ1) (pin 1)))
  1594. (net (code 65) (name "Net-(P16-Pad1)")
  1595. (node (ref P16) (pin 1))
  1596. (node (ref Q1) (pin 2)))
  1597. (net (code 66) (name /12V)
  1598. (node (ref K7) (pin 3))
  1599. (node (ref K6) (pin 3))
  1600. (node (ref Q1) (pin 1))
  1601. (node (ref K5) (pin 3))
  1602. (node (ref P16) (pin 2))
  1603. (node (ref C13) (pin 1))
  1604. (node (ref U5) (pin 3))
  1605. (node (ref C14) (pin 1))
  1606. (node (ref U7) (pin 3)))
  1607. (net (code 67) (name "Net-(C15-Pad1)")
  1608. (node (ref D9) (pin 2))
  1609. (node (ref R28) (pin 2))
  1610. (node (ref R26) (pin 1))
  1611. (node (ref C15) (pin 1))
  1612. (node (ref U5) (pin 1)))
  1613. (net (code 69) (name "Net-(C16-Pad1)")
  1614. (node (ref R27) (pin 1))
  1615. (node (ref U7) (pin 1))
  1616. (node (ref D10) (pin 2))
  1617. (node (ref R29) (pin 2))
  1618. (node (ref C16) (pin 1)))
  1619. (net (code 70) (name /Remonter_OUT)
  1620. (node (ref K4) (pin 1))
  1621. (node (ref U6) (pin 11)))
  1622. (net (code 71) (name /Peristatique_OUT)
  1623. (node (ref K7) (pin 1))
  1624. (node (ref U6) (pin 12)))
  1625. (net (code 72) (name /Relais2_OUT)
  1626. (node (ref U6) (pin 17))
  1627. (node (ref K5) (pin 1)))
  1628. (net (code 73) (name /RAH_OUT)
  1629. (node (ref U6) (pin 14))
  1630. (node (ref K1) (pin 1)))
  1631. (net (code 74) (name "Net-(K1-Pad5)")
  1632. (node (ref K1) (pin 5)))
  1633. (net (code 75) (name /RAHP)
  1634. (node (ref P7) (pin 1))
  1635. (node (ref K1) (pin 4)))
  1636. (net (code 76) (name /RAHM)
  1637. (node (ref P7) (pin 2))
  1638. (node (ref K1) (pin 3)))
  1639. (net (code 77) (name "Net-(K5-Pad5)")
  1640. (node (ref K5) (pin 5)))
  1641. (net (code 78) (name /Chauffage_OUT)
  1642. (node (ref K3) (pin 1))
  1643. (node (ref U6) (pin 15)))
  1644. (net (code 79) (name "Net-(K3-Pad5)")
  1645. (node (ref K3) (pin 5)))
  1646. (net (code 80) (name /chauffP)
  1647. (node (ref P9) (pin 1))
  1648. (node (ref K3) (pin 4)))
  1649. (net (code 81) (name /ChauffM)
  1650. (node (ref K3) (pin 3))
  1651. (node (ref P9) (pin 2)))
  1652. (net (code 82) (name /Relais2_12V)
  1653. (node (ref K5) (pin 4))
  1654. (node (ref P11) (pin 1)))
  1655. (net (code 83) (name /USB_OTG_FS_VBUS)
  1656. (node (ref J1) (pin 1))
  1657. (node (ref U1) (pin 42)))
  1658. (net (code 84) (name "Net-(K2-Pad5)")
  1659. (node (ref K2) (pin 5)))
  1660. (net (code 85) (name "Net-(K6-Pad5)")
  1661. (node (ref K6) (pin 5)))
  1662. (net (code 86) (name "Net-(K8-Pad5)")
  1663. (node (ref K8) (pin 5)))
  1664. (net (code 87) (name "Net-(K4-Pad5)")
  1665. (node (ref K4) (pin 5)))
  1666. (net (code 88) (name "Net-(K7-Pad5)")
  1667. (node (ref K7) (pin 5)))
  1668. (net (code 89) (name "Net-(J1-Pad0)")
  1669. (node (ref J1) (pin 0)))
  1670. (net (code 90) (name /USB_OTG_FS_P)
  1671. (node (ref U1) (pin 45))
  1672. (node (ref J1) (pin 3)))
  1673. (net (code 91) (name /USB_OTG_FS_ID)
  1674. (node (ref U1) (pin 43))
  1675. (node (ref J1) (pin 4)))
  1676. (net (code 92) (name /Select)
  1677. (node (ref U1) (pin 33))
  1678. (node (ref R20) (pin 2))
  1679. (node (ref SW3) (pin 2)))
  1680. (net (code 93) (name /Cuve_Haut_OUT)
  1681. (node (ref U1) (pin 11))
  1682. (node (ref P5) (pin 2))
  1683. (node (ref R5) (pin 2)))
  1684. (net (code 94) (name /Temp_Data)
  1685. (node (ref U1) (pin 14))
  1686. (node (ref P6) (pin 2)))
  1687. (net (code 95) (name /Left)
  1688. (node (ref R18) (pin 2))
  1689. (node (ref U1) (pin 34))
  1690. (node (ref SW3) (pin 1)))
  1691. (net (code 96) (name /USB_OTG_FS_N)
  1692. (node (ref J1) (pin 2))
  1693. (node (ref U1) (pin 44)))
  1694. (net (code 97) (name /D6)
  1695. (node (ref U4) (pin 13))
  1696. (node (ref U1) (pin 25)))
  1697. (net (code 98) (name /Autres_OUT)
  1698. (node (ref R3) (pin 2))
  1699. (node (ref U1) (pin 3))
  1700. (node (ref P3) (pin 2)))
  1701. (net (code 99) (name /wc)
  1702. (node (ref U1) (pin 4))
  1703. (node (ref R6) (pin 2))
  1704. (node (ref U3) (pin 6)))
  1705. (net (code 100) (name "Net-(C1-Pad1)")
  1706. (node (ref U1) (pin 5))
  1707. (node (ref C1) (pin 1))
  1708. (node (ref Y1) (pin 1)))
  1709. (net (code 101) (name "Net-(C2-Pad1)")
  1710. (node (ref U1) (pin 6))
  1711. (node (ref C2) (pin 1))
  1712. (node (ref Y1) (pin 2)))
  1713. (net (code 102) (name /Reserve_bas_OUT)
  1714. (node (ref R4) (pin 2))
  1715. (node (ref P4) (pin 2))
  1716. (node (ref U1) (pin 8)))
  1717. (net (code 103) (name /Technique_haut_OUT)
  1718. (node (ref R2) (pin 2))
  1719. (node (ref U1) (pin 9))
  1720. (node (ref P2) (pin 2)))
  1721. (net (code 104) (name /Technique_bas_OUT)
  1722. (node (ref U1) (pin 10))
  1723. (node (ref P1) (pin 2))
  1724. (node (ref R1) (pin 2)))
  1725. (net (code 105) (name "Net-(C7-Pad1)")
  1726. (node (ref C7) (pin 1))
  1727. (node (ref U1) (pin 30)))
  1728. (net (code 106) (name /RS)
  1729. (node (ref U4) (pin 4))
  1730. (node (ref U1) (pin 40)))
  1731. (net (code 107) (name /RemonteP)
  1732. (node (ref P10) (pin 1))
  1733. (node (ref K4) (pin 4)))
  1734. (net (code 108) (name /RemontM)
  1735. (node (ref P10) (pin 2))
  1736. (node (ref K4) (pin 3)))
  1737. (net (code 109) (name /peris_12V)
  1738. (node (ref P13) (pin 1))
  1739. (node (ref K7) (pin 4)))
  1740. (net (code 110) (name /Relais1_OUT)
  1741. (node (ref K2) (pin 1))
  1742. (node (ref U6) (pin 18)))
  1743. (net (code 111) (name /Relais1P)
  1744. (node (ref K2) (pin 4))
  1745. (node (ref P8) (pin 1)))
  1746. (net (code 112) (name /Relais1M)
  1747. (node (ref K2) (pin 3))
  1748. (node (ref P8) (pin 2)))
  1749. (net (code 113) (name /Osomalteur_OUT)
  1750. (node (ref K6) (pin 1))
  1751. (node (ref U6) (pin 13)))
  1752. (net (code 114) (name /OSM_12V)
  1753. (node (ref K6) (pin 4))
  1754. (node (ref P12) (pin 1)))
  1755. (net (code 115) (name /D5)
  1756. (node (ref U1) (pin 26))
  1757. (node (ref U4) (pin 12)))
  1758. (net (code 116) (name /UP)
  1759. (node (ref U1) (pin 36))
  1760. (node (ref SW3) (pin 6))
  1761. (node (ref R17) (pin 2)))
  1762. (net (code 117) (name /D4)
  1763. (node (ref U1) (pin 27))
  1764. (node (ref U4) (pin 11)))
  1765. (net (code 118) (name /Down)
  1766. (node (ref SW3) (pin 3))
  1767. (node (ref U1) (pin 37))
  1768. (node (ref R19) (pin 2)))
  1769. (net (code 119) (name /E)
  1770. (node (ref U4) (pin 6))
  1771. (node (ref U1) (pin 28)))
  1772. (net (code 120) (name /R/W)
  1773. (node (ref U4) (pin 5))
  1774. (node (ref U1) (pin 39)))
  1775. (net (code 121) (name /Ecumeur_OUT)
  1776. (node (ref U6) (pin 16))
  1777. (node (ref K8) (pin 1)))
  1778. (net (code 122) (name /EcuM)
  1779. (node (ref P14) (pin 2))
  1780. (node (ref K8) (pin 3)))
  1781. (net (code 123) (name /EcuP)
  1782. (node (ref P14) (pin 1))
  1783. (node (ref K8) (pin 4)))
  1784. (net (code 124) (name "Net-(U2-Pad7)")
  1785. (node (ref U2) (pin 7)))
  1786. (net (code 125) (name /SDA)
  1787. (node (ref R12) (pin 1))
  1788. (node (ref U2) (pin 10))
  1789. (node (ref U1) (pin 55))
  1790. (node (ref U3) (pin 8)))
  1791. (net (code 126) (name /SCL)
  1792. (node (ref U2) (pin 11))
  1793. (node (ref R14) (pin 1))
  1794. (node (ref U3) (pin 7))
  1795. (node (ref U1) (pin 29)))
  1796. (net (code 127) (name /MFP)
  1797. (node (ref R15) (pin 1))
  1798. (node (ref U1) (pin 41))
  1799. (node (ref U2) (pin 12)))
  1800. (net (code 128) (name "Net-(U2-Pad13)")
  1801. (node (ref U2) (pin 13)))
  1802. (net (code 129) (name "Net-(U2-Pad1)")
  1803. (node (ref U2) (pin 1)))
  1804. (net (code 130) (name "Net-(U2-Pad4)")
  1805. (node (ref U2) (pin 4)))
  1806. (net (code 131) (name /I2C2_SDL)
  1807. (node (ref U1) (pin 58))
  1808. (node (ref P15) (pin 1)))
  1809. (net (code 132) (name /I2C2_SDA)
  1810. (node (ref P15) (pin 2))
  1811. (node (ref U1) (pin 59)))
  1812. (net (code 133) (name "Net-(U2-Pad18)")
  1813. (node (ref U2) (pin 18)))
  1814. (net (code 134) (name "Net-(U2-Pad14)")
  1815. (node (ref U2) (pin 14)))))