Arrosage.kicad_sch 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid dfb02f5f-9239-40b3-93dc-decec4ca7122)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "NXP:PCF8574" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at 3.81 -11.43 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "PCF8574" (id 1) (at 0 11.43 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "" (id 3) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (symbol "PCF8574_0_1"
  19. (rectangle (start -5.08 10.16) (end 5.08 -10.16)
  20. (stroke (width 0) (type default) (color 0 0 0 0))
  21. (fill (type none))
  22. )
  23. )
  24. (symbol "PCF8574_1_1"
  25. (pin input line (at -7.62 8.89 0) (length 2.54)
  26. (name "A0" (effects (font (size 1.27 1.27))))
  27. (number "1" (effects (font (size 1.27 1.27))))
  28. )
  29. (pin output line (at 7.62 -6.35 180) (length 2.54)
  30. (name "P5" (effects (font (size 1.27 1.27))))
  31. (number "10" (effects (font (size 1.27 1.27))))
  32. )
  33. (pin output line (at 7.62 -3.81 180) (length 2.54)
  34. (name "P6" (effects (font (size 1.27 1.27))))
  35. (number "11" (effects (font (size 1.27 1.27))))
  36. )
  37. (pin output line (at 7.62 -1.27 180) (length 2.54)
  38. (name "P7" (effects (font (size 1.27 1.27))))
  39. (number "12" (effects (font (size 1.27 1.27))))
  40. )
  41. (pin input line (at 7.62 1.27 180) (length 2.54)
  42. (name "INT" (effects (font (size 1.27 1.27))))
  43. (number "13" (effects (font (size 1.27 1.27))))
  44. )
  45. (pin bidirectional line (at 7.62 3.81 180) (length 2.54)
  46. (name "SCL" (effects (font (size 1.27 1.27))))
  47. (number "14" (effects (font (size 1.27 1.27))))
  48. )
  49. (pin bidirectional line (at 7.62 6.35 180) (length 2.54)
  50. (name "SDA" (effects (font (size 1.27 1.27))))
  51. (number "15" (effects (font (size 1.27 1.27))))
  52. )
  53. (pin power_in line (at 7.62 8.89 180) (length 2.54)
  54. (name "VDD" (effects (font (size 1.27 1.27))))
  55. (number "16" (effects (font (size 1.27 1.27))))
  56. )
  57. (pin input line (at -7.62 6.35 0) (length 2.54)
  58. (name "A1" (effects (font (size 1.27 1.27))))
  59. (number "2" (effects (font (size 1.27 1.27))))
  60. )
  61. (pin input line (at -7.62 3.81 0) (length 2.54)
  62. (name "A2" (effects (font (size 1.27 1.27))))
  63. (number "3" (effects (font (size 1.27 1.27))))
  64. )
  65. (pin output line (at -7.62 1.27 0) (length 2.54)
  66. (name "P0" (effects (font (size 1.27 1.27))))
  67. (number "4" (effects (font (size 1.27 1.27))))
  68. )
  69. (pin output line (at -7.62 -1.27 0) (length 2.54)
  70. (name "P1" (effects (font (size 1.27 1.27))))
  71. (number "5" (effects (font (size 1.27 1.27))))
  72. )
  73. (pin output line (at -7.62 -3.81 0) (length 2.54)
  74. (name "P2" (effects (font (size 1.27 1.27))))
  75. (number "6" (effects (font (size 1.27 1.27))))
  76. )
  77. (pin output line (at -7.62 -6.35 0) (length 2.54)
  78. (name "P3" (effects (font (size 1.27 1.27))))
  79. (number "7" (effects (font (size 1.27 1.27))))
  80. )
  81. (pin power_in line (at -7.62 -8.89 0) (length 2.54)
  82. (name "VSS" (effects (font (size 1.27 1.27))))
  83. (number "8" (effects (font (size 1.27 1.27))))
  84. )
  85. (pin output line (at 7.62 -8.89 180) (length 2.54)
  86. (name "P4" (effects (font (size 1.27 1.27))))
  87. (number "9" (effects (font (size 1.27 1.27))))
  88. )
  89. )
  90. )
  91. (symbol "TI:ULN2803A" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  92. (property "Reference" "U" (id 0) (at 3.81 -12.7 0)
  93. (effects (font (size 1.524 1.524)))
  94. )
  95. (property "Value" "ULN2803A" (id 1) (at 0 12.7 0)
  96. (effects (font (size 1.524 1.524)))
  97. )
  98. (property "Footprint" "" (id 2) (at 6.35 1.27 0)
  99. (effects (font (size 1.524 1.524)) hide)
  100. )
  101. (property "Datasheet" "" (id 3) (at 6.35 1.27 0)
  102. (effects (font (size 1.524 1.524)) hide)
  103. )
  104. (symbol "ULN2803A_0_1"
  105. (rectangle (start -6.35 11.43) (end 6.35 -11.43)
  106. (stroke (width 0) (type default) (color 0 0 0 0))
  107. (fill (type none))
  108. )
  109. )
  110. (symbol "ULN2803A_1_1"
  111. (pin input line (at -11.43 10.16 0) (length 5.08)
  112. (name "1B" (effects (font (size 1.27 1.27))))
  113. (number "1" (effects (font (size 1.27 1.27))))
  114. )
  115. (pin power_in line (at 11.43 -10.16 180) (length 5.08)
  116. (name "COM" (effects (font (size 1.27 1.27))))
  117. (number "10" (effects (font (size 1.27 1.27))))
  118. )
  119. (pin output line (at 11.43 -7.62 180) (length 5.08)
  120. (name "8C" (effects (font (size 1.27 1.27))))
  121. (number "11" (effects (font (size 1.27 1.27))))
  122. )
  123. (pin output line (at 11.43 -5.08 180) (length 5.08)
  124. (name "7C" (effects (font (size 1.27 1.27))))
  125. (number "12" (effects (font (size 1.27 1.27))))
  126. )
  127. (pin output line (at 11.43 -2.54 180) (length 5.08)
  128. (name "6C" (effects (font (size 1.27 1.27))))
  129. (number "13" (effects (font (size 1.27 1.27))))
  130. )
  131. (pin output line (at 11.43 0 180) (length 5.08)
  132. (name "5C" (effects (font (size 1.27 1.27))))
  133. (number "14" (effects (font (size 1.27 1.27))))
  134. )
  135. (pin output line (at 11.43 2.54 180) (length 5.08)
  136. (name "4C" (effects (font (size 1.27 1.27))))
  137. (number "15" (effects (font (size 1.27 1.27))))
  138. )
  139. (pin output line (at 11.43 5.08 180) (length 5.08)
  140. (name "3C" (effects (font (size 1.27 1.27))))
  141. (number "16" (effects (font (size 1.27 1.27))))
  142. )
  143. (pin output line (at 11.43 7.62 180) (length 5.08)
  144. (name "2C" (effects (font (size 1.27 1.27))))
  145. (number "17" (effects (font (size 1.27 1.27))))
  146. )
  147. (pin output line (at 11.43 10.16 180) (length 5.08)
  148. (name "1C" (effects (font (size 1.27 1.27))))
  149. (number "18" (effects (font (size 1.27 1.27))))
  150. )
  151. (pin input line (at -11.43 7.62 0) (length 5.08)
  152. (name "2B" (effects (font (size 1.27 1.27))))
  153. (number "2" (effects (font (size 1.27 1.27))))
  154. )
  155. (pin input line (at -11.43 5.08 0) (length 5.08)
  156. (name "3B" (effects (font (size 1.27 1.27))))
  157. (number "3" (effects (font (size 1.27 1.27))))
  158. )
  159. (pin input line (at -11.43 2.54 0) (length 5.08)
  160. (name "4B" (effects (font (size 1.27 1.27))))
  161. (number "4" (effects (font (size 1.27 1.27))))
  162. )
  163. (pin input line (at -11.43 0 0) (length 5.08)
  164. (name "5B" (effects (font (size 1.27 1.27))))
  165. (number "5" (effects (font (size 1.27 1.27))))
  166. )
  167. (pin input line (at -11.43 -2.54 0) (length 5.08)
  168. (name "6B" (effects (font (size 1.27 1.27))))
  169. (number "6" (effects (font (size 1.27 1.27))))
  170. )
  171. (pin input line (at -11.43 -5.08 0) (length 5.08)
  172. (name "7B" (effects (font (size 1.27 1.27))))
  173. (number "7" (effects (font (size 1.27 1.27))))
  174. )
  175. (pin input line (at -11.43 -7.62 0) (length 5.08)
  176. (name "8B" (effects (font (size 1.27 1.27))))
  177. (number "8" (effects (font (size 1.27 1.27))))
  178. )
  179. (pin power_in line (at -11.43 -10.16 0) (length 5.08)
  180. (name "GND" (effects (font (size 1.27 1.27))))
  181. (number "9" (effects (font (size 1.27 1.27))))
  182. )
  183. )
  184. )
  185. (symbol "conn:CONN_01X01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  186. (property "Reference" "P" (id 0) (at 0 2.54 0)
  187. (effects (font (size 1.27 1.27)))
  188. )
  189. (property "Value" "CONN_01X01" (id 1) (at 2.54 0 90)
  190. (effects (font (size 1.27 1.27)))
  191. )
  192. (property "Footprint" "" (id 2) (at 0 0 0)
  193. (effects (font (size 1.27 1.27)))
  194. )
  195. (property "Datasheet" "" (id 3) (at 0 0 0)
  196. (effects (font (size 1.27 1.27)))
  197. )
  198. (property "ki_fp_filters" "Pin_Header_Straight_1X01 Pin_Header_Angled_1X01 Socket_Strip_Straight_1X01 Socket_Strip_Angled_1X01" (id 4) (at 0 0 0)
  199. (effects (font (size 1.27 1.27)) hide)
  200. )
  201. (symbol "CONN_01X01_0_1"
  202. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  203. (stroke (width 0) (type default) (color 0 0 0 0))
  204. (fill (type none))
  205. )
  206. (rectangle (start -1.27 1.27) (end 1.27 -1.27)
  207. (stroke (width 0) (type default) (color 0 0 0 0))
  208. (fill (type none))
  209. )
  210. )
  211. (symbol "CONN_01X01_1_1"
  212. (pin passive line (at -5.08 0 0) (length 3.81)
  213. (name "P1" (effects (font (size 1.27 1.27))))
  214. (number "1" (effects (font (size 1.27 1.27))))
  215. )
  216. )
  217. )
  218. (symbol "conn:CONN_01X02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  219. (property "Reference" "P" (id 0) (at 0 3.81 0)
  220. (effects (font (size 1.27 1.27)))
  221. )
  222. (property "Value" "CONN_01X02" (id 1) (at 2.54 0 90)
  223. (effects (font (size 1.27 1.27)))
  224. )
  225. (property "Footprint" "" (id 2) (at 0 0 0)
  226. (effects (font (size 1.27 1.27)))
  227. )
  228. (property "Datasheet" "" (id 3) (at 0 0 0)
  229. (effects (font (size 1.27 1.27)))
  230. )
  231. (property "ki_fp_filters" "Pin_Header_Straight_1X02 Pin_Header_Angled_1X02 Socket_Strip_Straight_1X02 Socket_Strip_Angled_1X02" (id 4) (at 0 0 0)
  232. (effects (font (size 1.27 1.27)) hide)
  233. )
  234. (symbol "CONN_01X02_0_1"
  235. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  236. (stroke (width 0) (type default) (color 0 0 0 0))
  237. (fill (type none))
  238. )
  239. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  240. (stroke (width 0) (type default) (color 0 0 0 0))
  241. (fill (type none))
  242. )
  243. (rectangle (start -1.27 2.54) (end 1.27 -2.54)
  244. (stroke (width 0) (type default) (color 0 0 0 0))
  245. (fill (type none))
  246. )
  247. )
  248. (symbol "CONN_01X02_1_1"
  249. (pin passive line (at -5.08 1.27 0) (length 3.81)
  250. (name "P1" (effects (font (size 1.27 1.27))))
  251. (number "1" (effects (font (size 1.27 1.27))))
  252. )
  253. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  254. (name "P2" (effects (font (size 1.27 1.27))))
  255. (number "2" (effects (font (size 1.27 1.27))))
  256. )
  257. )
  258. )
  259. (symbol "conn:CONN_01X03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  260. (property "Reference" "P" (id 0) (at 0 5.08 0)
  261. (effects (font (size 1.27 1.27)))
  262. )
  263. (property "Value" "CONN_01X03" (id 1) (at 2.54 0 90)
  264. (effects (font (size 1.27 1.27)))
  265. )
  266. (property "Footprint" "" (id 2) (at 0 0 0)
  267. (effects (font (size 1.27 1.27)))
  268. )
  269. (property "Datasheet" "" (id 3) (at 0 0 0)
  270. (effects (font (size 1.27 1.27)))
  271. )
  272. (property "ki_fp_filters" "Pin_Header_Straight_1X03 Pin_Header_Angled_1X03 Socket_Strip_Straight_1X03 Socket_Strip_Angled_1X03" (id 4) (at 0 0 0)
  273. (effects (font (size 1.27 1.27)) hide)
  274. )
  275. (symbol "CONN_01X03_0_1"
  276. (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
  277. (stroke (width 0) (type default) (color 0 0 0 0))
  278. (fill (type none))
  279. )
  280. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  281. (stroke (width 0) (type default) (color 0 0 0 0))
  282. (fill (type none))
  283. )
  284. (rectangle (start -1.27 2.667) (end 0.254 2.413)
  285. (stroke (width 0) (type default) (color 0 0 0 0))
  286. (fill (type none))
  287. )
  288. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  289. (stroke (width 0) (type default) (color 0 0 0 0))
  290. (fill (type none))
  291. )
  292. )
  293. (symbol "CONN_01X03_1_1"
  294. (pin passive line (at -5.08 2.54 0) (length 3.81)
  295. (name "P1" (effects (font (size 1.27 1.27))))
  296. (number "1" (effects (font (size 1.27 1.27))))
  297. )
  298. (pin passive line (at -5.08 0 0) (length 3.81)
  299. (name "P2" (effects (font (size 1.27 1.27))))
  300. (number "2" (effects (font (size 1.27 1.27))))
  301. )
  302. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  303. (name "P3" (effects (font (size 1.27 1.27))))
  304. (number "3" (effects (font (size 1.27 1.27))))
  305. )
  306. )
  307. )
  308. (symbol "conn:CONN_01X06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  309. (property "Reference" "P" (id 0) (at 0 8.89 0)
  310. (effects (font (size 1.27 1.27)))
  311. )
  312. (property "Value" "CONN_01X06" (id 1) (at 2.54 0 90)
  313. (effects (font (size 1.27 1.27)))
  314. )
  315. (property "Footprint" "" (id 2) (at 0 0 0)
  316. (effects (font (size 1.27 1.27)))
  317. )
  318. (property "Datasheet" "" (id 3) (at 0 0 0)
  319. (effects (font (size 1.27 1.27)))
  320. )
  321. (property "ki_fp_filters" "Pin_Header_Straight_1X06 Pin_Header_Angled_1X06 Socket_Strip_Straight_1X06 Socket_Strip_Angled_1X06" (id 4) (at 0 0 0)
  322. (effects (font (size 1.27 1.27)) hide)
  323. )
  324. (symbol "CONN_01X06_0_1"
  325. (rectangle (start -1.27 -6.223) (end 0.254 -6.477)
  326. (stroke (width 0) (type default) (color 0 0 0 0))
  327. (fill (type none))
  328. )
  329. (rectangle (start -1.27 -3.683) (end 0.254 -3.937)
  330. (stroke (width 0) (type default) (color 0 0 0 0))
  331. (fill (type none))
  332. )
  333. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  334. (stroke (width 0) (type default) (color 0 0 0 0))
  335. (fill (type none))
  336. )
  337. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  338. (stroke (width 0) (type default) (color 0 0 0 0))
  339. (fill (type none))
  340. )
  341. (rectangle (start -1.27 3.937) (end 0.254 3.683)
  342. (stroke (width 0) (type default) (color 0 0 0 0))
  343. (fill (type none))
  344. )
  345. (rectangle (start -1.27 6.477) (end 0.254 6.223)
  346. (stroke (width 0) (type default) (color 0 0 0 0))
  347. (fill (type none))
  348. )
  349. (rectangle (start -1.27 7.62) (end 1.27 -7.62)
  350. (stroke (width 0) (type default) (color 0 0 0 0))
  351. (fill (type none))
  352. )
  353. )
  354. (symbol "CONN_01X06_1_1"
  355. (pin passive line (at -5.08 6.35 0) (length 3.81)
  356. (name "P1" (effects (font (size 1.27 1.27))))
  357. (number "1" (effects (font (size 1.27 1.27))))
  358. )
  359. (pin passive line (at -5.08 3.81 0) (length 3.81)
  360. (name "P2" (effects (font (size 1.27 1.27))))
  361. (number "2" (effects (font (size 1.27 1.27))))
  362. )
  363. (pin passive line (at -5.08 1.27 0) (length 3.81)
  364. (name "P3" (effects (font (size 1.27 1.27))))
  365. (number "3" (effects (font (size 1.27 1.27))))
  366. )
  367. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  368. (name "P4" (effects (font (size 1.27 1.27))))
  369. (number "4" (effects (font (size 1.27 1.27))))
  370. )
  371. (pin passive line (at -5.08 -3.81 0) (length 3.81)
  372. (name "P5" (effects (font (size 1.27 1.27))))
  373. (number "5" (effects (font (size 1.27 1.27))))
  374. )
  375. (pin passive line (at -5.08 -6.35 0) (length 3.81)
  376. (name "P6" (effects (font (size 1.27 1.27))))
  377. (number "6" (effects (font (size 1.27 1.27))))
  378. )
  379. )
  380. )
  381. (symbol "conn:Jumper3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  382. (property "Reference" "JP" (id 0) (at 0 -3.81 0)
  383. (effects (font (size 1.27 1.27)))
  384. )
  385. (property "Value" "Jumper3" (id 1) (at 0 3.81 0)
  386. (effects (font (size 1.27 1.27)))
  387. )
  388. (property "Footprint" "" (id 2) (at 0 0 0)
  389. (effects (font (size 1.27 1.27)) hide)
  390. )
  391. (property "Datasheet" "" (id 3) (at 0 0 0)
  392. (effects (font (size 1.27 1.27)) hide)
  393. )
  394. (symbol "Jumper3_0_1"
  395. (rectangle (start -1.27 2.54) (end 1.27 -2.54)
  396. (stroke (width 0) (type default) (color 0 0 0 0))
  397. (fill (type none))
  398. )
  399. )
  400. (symbol "Jumper3_1_1"
  401. (pin passive line (at -3.81 0 0) (length 2.54)
  402. (name "~" (effects (font (size 1.27 1.27))))
  403. (number "1" (effects (font (size 1.27 1.27))))
  404. )
  405. (pin passive line (at 3.81 1.27 180) (length 2.54)
  406. (name "~" (effects (font (size 1.27 1.27))))
  407. (number "2" (effects (font (size 1.27 1.27))))
  408. )
  409. (pin passive line (at 3.81 -1.27 180) (length 2.54)
  410. (name "~" (effects (font (size 1.27 1.27))))
  411. (number "3" (effects (font (size 1.27 1.27))))
  412. )
  413. )
  414. )
  415. (symbol "global:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  416. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  417. (effects (font (size 1.27 1.27)) (justify left))
  418. )
  419. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  420. (effects (font (size 1.27 1.27)) (justify left))
  421. )
  422. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  423. (effects (font (size 1.27 1.27)))
  424. )
  425. (property "Datasheet" "" (id 3) (at 0 0 0)
  426. (effects (font (size 1.27 1.27)))
  427. )
  428. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*" (id 4) (at 0 0 0)
  429. (effects (font (size 1.27 1.27)) hide)
  430. )
  431. (symbol "C_0_1"
  432. (polyline
  433. (pts
  434. (xy -2.032 -0.762)
  435. (xy 2.032 -0.762)
  436. )
  437. (stroke (width 0.508) (type default) (color 0 0 0 0))
  438. (fill (type none))
  439. )
  440. (polyline
  441. (pts
  442. (xy -2.032 0.762)
  443. (xy 2.032 0.762)
  444. )
  445. (stroke (width 0.508) (type default) (color 0 0 0 0))
  446. (fill (type none))
  447. )
  448. )
  449. (symbol "C_1_1"
  450. (pin passive line (at 0 3.81 270) (length 2.794)
  451. (name "~" (effects (font (size 1.016 1.016))))
  452. (number "1" (effects (font (size 1.016 1.016))))
  453. )
  454. (pin passive line (at 0 -3.81 90) (length 2.794)
  455. (name "~" (effects (font (size 1.016 1.016))))
  456. (number "2" (effects (font (size 1.016 1.016))))
  457. )
  458. )
  459. )
  460. (symbol "global:CP" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  461. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  462. (effects (font (size 1.27 1.27)) (justify left))
  463. )
  464. (property "Value" "CP" (id 1) (at 0.635 -2.54 0)
  465. (effects (font (size 1.27 1.27)) (justify left))
  466. )
  467. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  468. (effects (font (size 1.27 1.27)))
  469. )
  470. (property "Datasheet" "" (id 3) (at 0 0 0)
  471. (effects (font (size 1.27 1.27)))
  472. )
  473. (property "ki_fp_filters" "CP* Elko* TantalC* C*elec c_elec* SMD*_Pol" (id 4) (at 0 0 0)
  474. (effects (font (size 1.27 1.27)) hide)
  475. )
  476. (symbol "CP_0_1"
  477. (rectangle (start -2.286 0.508) (end -2.286 1.016)
  478. (stroke (width 0) (type default) (color 0 0 0 0))
  479. (fill (type none))
  480. )
  481. (rectangle (start -2.286 0.508) (end 2.286 0.508)
  482. (stroke (width 0) (type default) (color 0 0 0 0))
  483. (fill (type none))
  484. )
  485. (polyline
  486. (pts
  487. (xy -1.778 2.286)
  488. (xy -0.762 2.286)
  489. )
  490. (stroke (width 0) (type default) (color 0 0 0 0))
  491. (fill (type none))
  492. )
  493. (polyline
  494. (pts
  495. (xy -1.27 2.794)
  496. (xy -1.27 1.778)
  497. )
  498. (stroke (width 0) (type default) (color 0 0 0 0))
  499. (fill (type none))
  500. )
  501. (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
  502. (stroke (width 0) (type default) (color 0 0 0 0))
  503. (fill (type outline))
  504. )
  505. (rectangle (start 2.286 1.016) (end -2.286 1.016)
  506. (stroke (width 0) (type default) (color 0 0 0 0))
  507. (fill (type none))
  508. )
  509. (rectangle (start 2.286 1.016) (end 2.286 0.508)
  510. (stroke (width 0) (type default) (color 0 0 0 0))
  511. (fill (type none))
  512. )
  513. )
  514. (symbol "CP_1_1"
  515. (pin passive line (at 0 3.81 270) (length 2.794)
  516. (name "~" (effects (font (size 1.016 1.016))))
  517. (number "1" (effects (font (size 1.016 1.016))))
  518. )
  519. (pin passive line (at 0 -3.81 90) (length 2.794)
  520. (name "~" (effects (font (size 1.016 1.016))))
  521. (number "2" (effects (font (size 1.016 1.016))))
  522. )
  523. )
  524. )
  525. (symbol "global:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  526. (property "Reference" "D" (id 0) (at 0 2.54 0)
  527. (effects (font (size 1.27 1.27)))
  528. )
  529. (property "Value" "D" (id 1) (at 0 -2.54 0)
  530. (effects (font (size 1.27 1.27)))
  531. )
  532. (property "Footprint" "" (id 2) (at 0 0 0)
  533. (effects (font (size 1.27 1.27)))
  534. )
  535. (property "Datasheet" "" (id 3) (at 0 0 0)
  536. (effects (font (size 1.27 1.27)))
  537. )
  538. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (id 4) (at 0 0 0)
  539. (effects (font (size 1.27 1.27)) hide)
  540. )
  541. (symbol "D_0_1"
  542. (polyline
  543. (pts
  544. (xy -1.27 1.27)
  545. (xy -1.27 -1.27)
  546. )
  547. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  548. (fill (type none))
  549. )
  550. (polyline
  551. (pts
  552. (xy 1.27 1.27)
  553. (xy -1.27 0)
  554. (xy 1.27 -1.27)
  555. )
  556. (stroke (width 0) (type default) (color 0 0 0 0))
  557. (fill (type outline))
  558. )
  559. )
  560. (symbol "D_1_1"
  561. (pin passive line (at -3.81 0 0) (length 2.54)
  562. (name "K" (effects (font (size 1.27 1.27))))
  563. (number "1" (effects (font (size 1.27 1.27))))
  564. )
  565. (pin passive line (at 3.81 0 180) (length 2.54)
  566. (name "A" (effects (font (size 1.27 1.27))))
  567. (number "2" (effects (font (size 1.27 1.27))))
  568. )
  569. )
  570. )
  571. (symbol "global:LM317" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  572. (property "Reference" "U" (id 0) (at 3.81 -6.35 0)
  573. (effects (font (size 1.524 1.524)))
  574. )
  575. (property "Value" "LM317" (id 1) (at 0 5.08 0)
  576. (effects (font (size 1.524 1.524)))
  577. )
  578. (property "Footprint" "" (id 2) (at 0 0 0)
  579. (effects (font (size 1.524 1.524)))
  580. )
  581. (property "Datasheet" "" (id 3) (at 0 0 0)
  582. (effects (font (size 1.524 1.524)))
  583. )
  584. (symbol "LM317_0_1"
  585. (rectangle (start -5.08 3.81) (end 5.08 -5.08)
  586. (stroke (width 0) (type default) (color 0 0 0 0))
  587. (fill (type none))
  588. )
  589. )
  590. (symbol "LM317_1_1"
  591. (pin input line (at 0 -10.16 90) (length 5.08)
  592. (name "Adj" (effects (font (size 1.27 1.27))))
  593. (number "1" (effects (font (size 1.27 1.27))))
  594. )
  595. (pin power_out line (at 10.16 0 180) (length 5.08)
  596. (name "Vout" (effects (font (size 1.27 1.27))))
  597. (number "2" (effects (font (size 1.27 1.27))))
  598. )
  599. (pin power_in line (at -10.16 0 0) (length 5.08)
  600. (name "Vin" (effects (font (size 1.27 1.27))))
  601. (number "3" (effects (font (size 1.27 1.27))))
  602. )
  603. )
  604. )
  605. (symbol "global:N_MOSFET" (pin_names (offset 0)) (in_bom yes) (on_board yes)
  606. (property "Reference" "Q" (id 0) (at 4.064 3.556 0)
  607. (effects (font (size 1.524 1.524)))
  608. )
  609. (property "Value" "N_MOSFET" (id 1) (at 0 -3.556 0)
  610. (effects (font (size 1.524 1.524)))
  611. )
  612. (property "Footprint" "" (id 2) (at 0 0 0)
  613. (effects (font (size 1.524 1.524)) hide)
  614. )
  615. (property "Datasheet" "" (id 3) (at 0 0 0)
  616. (effects (font (size 1.524 1.524)) hide)
  617. )
  618. (symbol "N_MOSFET_0_1"
  619. (polyline
  620. (pts
  621. (xy -1.27 1.016)
  622. (xy 1.27 1.016)
  623. )
  624. (stroke (width 0) (type default) (color 0 0 0 0))
  625. (fill (type none))
  626. )
  627. (polyline
  628. (pts
  629. (xy -1.016 0.508)
  630. (xy -1.016 -1.27)
  631. )
  632. (stroke (width 0) (type default) (color 0 0 0 0))
  633. (fill (type none))
  634. )
  635. (polyline
  636. (pts
  637. (xy -0.762 0.508)
  638. (xy -1.27 0.508)
  639. )
  640. (stroke (width 0) (type default) (color 0 0 0 0))
  641. (fill (type none))
  642. )
  643. (polyline
  644. (pts
  645. (xy -0.254 -0.508)
  646. (xy 0 -0.254)
  647. )
  648. (stroke (width 0) (type default) (color 0 0 0 0))
  649. (fill (type none))
  650. )
  651. (polyline
  652. (pts
  653. (xy -0.254 0.508)
  654. (xy 0.254 0.508)
  655. )
  656. (stroke (width 0) (type default) (color 0 0 0 0))
  657. (fill (type none))
  658. )
  659. (polyline
  660. (pts
  661. (xy 0 -0.254)
  662. (xy 0 -0.254)
  663. )
  664. (stroke (width 0) (type default) (color 0 0 0 0))
  665. (fill (type none))
  666. )
  667. (polyline
  668. (pts
  669. (xy 0 -0.254)
  670. (xy 0.254 -0.508)
  671. )
  672. (stroke (width 0) (type default) (color 0 0 0 0))
  673. (fill (type none))
  674. )
  675. (polyline
  676. (pts
  677. (xy 0 0.508)
  678. (xy 0 -0.508)
  679. )
  680. (stroke (width 0) (type default) (color 0 0 0 0))
  681. (fill (type none))
  682. )
  683. (polyline
  684. (pts
  685. (xy 0 1.27)
  686. (xy 0 1.016)
  687. )
  688. (stroke (width 0) (type default) (color 0 0 0 0))
  689. (fill (type none))
  690. )
  691. (polyline
  692. (pts
  693. (xy 0.254 -0.508)
  694. (xy 0 -0.254)
  695. )
  696. (stroke (width 0) (type default) (color 0 0 0 0))
  697. (fill (type none))
  698. )
  699. (polyline
  700. (pts
  701. (xy 0.762 0.508)
  702. (xy 1.27 0.508)
  703. )
  704. (stroke (width 0) (type default) (color 0 0 0 0))
  705. (fill (type none))
  706. )
  707. (polyline
  708. (pts
  709. (xy -1.27 -1.27)
  710. (xy 0 -1.27)
  711. (xy 0 0)
  712. )
  713. (stroke (width 0) (type default) (color 0 0 0 0))
  714. (fill (type none))
  715. )
  716. (polyline
  717. (pts
  718. (xy 1.016 0.508)
  719. (xy 1.016 -1.27)
  720. (xy 1.27 -1.27)
  721. )
  722. (stroke (width 0) (type default) (color 0 0 0 0))
  723. (fill (type none))
  724. )
  725. (polyline
  726. (pts
  727. (xy 0 0.254)
  728. (xy -0.254 -0.508)
  729. (xy 0.254 -0.508)
  730. (xy 0 0.254)
  731. )
  732. (stroke (width 0) (type default) (color 0 0 0 0))
  733. (fill (type none))
  734. )
  735. (circle (center 0 0) (radius 2.032)
  736. (stroke (width 0) (type default) (color 0 0 0 0))
  737. (fill (type none))
  738. )
  739. )
  740. (symbol "N_MOSFET_1_1"
  741. (pin input line (at 0 6.35 270) (length 5.08)
  742. (name "G" (effects (font (size 1.27 1.27))))
  743. (number "1" (effects (font (size 1.27 1.27))))
  744. )
  745. (pin input line (at 6.35 -1.27 180) (length 5.08)
  746. (name "D" (effects (font (size 1.27 1.27))))
  747. (number "2" (effects (font (size 1.27 1.27))))
  748. )
  749. (pin input line (at -6.35 -1.27 0) (length 5.08)
  750. (name "S" (effects (font (size 1.27 1.27))))
  751. (number "3" (effects (font (size 1.27 1.27))))
  752. )
  753. )
  754. )
  755. (symbol "global:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  756. (property "Reference" "R" (id 0) (at 2.032 0 90)
  757. (effects (font (size 1.27 1.27)))
  758. )
  759. (property "Value" "R" (id 1) (at 0 0 90)
  760. (effects (font (size 1.27 1.27)))
  761. )
  762. (property "Footprint" "" (id 2) (at -1.778 0 90)
  763. (effects (font (size 1.27 1.27)))
  764. )
  765. (property "Datasheet" "" (id 3) (at 0 0 0)
  766. (effects (font (size 1.27 1.27)))
  767. )
  768. (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0)
  769. (effects (font (size 1.27 1.27)) hide)
  770. )
  771. (symbol "R_0_1"
  772. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  773. (stroke (width 0.254) (type default) (color 0 0 0 0))
  774. (fill (type none))
  775. )
  776. )
  777. (symbol "R_1_1"
  778. (pin passive line (at 0 3.81 270) (length 1.27)
  779. (name "~" (effects (font (size 1.27 1.27))))
  780. (number "1" (effects (font (size 1.27 1.27))))
  781. )
  782. (pin passive line (at 0 -3.81 90) (length 1.27)
  783. (name "~" (effects (font (size 1.27 1.27))))
  784. (number "2" (effects (font (size 1.27 1.27))))
  785. )
  786. )
  787. )
  788. (symbol "relay:SRD-03VDC-SL-C" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  789. (property "Reference" "K" (id 0) (at 6.985 -6.35 0)
  790. (effects (font (size 1.524 1.524)))
  791. )
  792. (property "Value" "SRD-03VDC-SL-C" (id 1) (at -9.525 0 90)
  793. (effects (font (size 1.524 1.524)))
  794. )
  795. (property "Footprint" "" (id 2) (at -1.27 0 0)
  796. (effects (font (size 1.524 1.524)) hide)
  797. )
  798. (property "Datasheet" "" (id 3) (at -1.27 0 0)
  799. (effects (font (size 1.524 1.524)) hide)
  800. )
  801. (symbol "SRD-03VDC-SL-C_0_1"
  802. (rectangle (start -7.62 5.08) (end 7.62 -5.08)
  803. (stroke (width 0) (type default) (color 0 0 0 0))
  804. (fill (type none))
  805. )
  806. (arc (start -5.08 -0.635) (mid -5.3848 -0.9398) (end -5.08 -1.27)
  807. (stroke (width 0) (type default) (color 0 0 0 0))
  808. (fill (type none))
  809. )
  810. (arc (start -5.08 -0.635) (mid -4.7752 -0.3302) (end -5.08 0)
  811. (stroke (width 0) (type default) (color 0 0 0 0))
  812. (fill (type none))
  813. )
  814. (arc (start -5.08 0.635) (mid -5.3848 0.3302) (end -5.08 0)
  815. (stroke (width 0) (type default) (color 0 0 0 0))
  816. (fill (type none))
  817. )
  818. (arc (start -5.08 0.635) (mid -4.7752 0.9398) (end -5.08 1.27)
  819. (stroke (width 0) (type default) (color 0 0 0 0))
  820. (fill (type none))
  821. )
  822. )
  823. (symbol "SRD-03VDC-SL-C_1_1"
  824. (pin input line (at -5.08 10.16 270) (length 5.08)
  825. (name "A1" (effects (font (size 1.27 1.27))))
  826. (number "1" (effects (font (size 1.27 1.27))))
  827. )
  828. (pin input line (at -5.08 -10.16 90) (length 5.08)
  829. (name "A2" (effects (font (size 1.27 1.27))))
  830. (number "2" (effects (font (size 1.27 1.27))))
  831. )
  832. (pin input line (at 5.08 -10.16 90) (length 5.08)
  833. (name "COM" (effects (font (size 1.27 1.27))))
  834. (number "3" (effects (font (size 1.27 1.27))))
  835. )
  836. (pin input line (at 2.54 10.16 270) (length 5.08)
  837. (name "NO" (effects (font (size 1.27 1.27))))
  838. (number "4" (effects (font (size 1.27 1.27))))
  839. )
  840. (pin input line (at 6.35 10.16 270) (length 5.08)
  841. (name "NC" (effects (font (size 1.27 1.27))))
  842. (number "5" (effects (font (size 1.27 1.27))))
  843. )
  844. )
  845. )
  846. )
  847. (junction (at 151.13 22.86) (diameter 0) (color 0 0 0 0)
  848. (uuid 12cab5ba-fc88-48ed-85c8-4736776eead4)
  849. )
  850. (junction (at 163.195 22.86) (diameter 0) (color 0 0 0 0)
  851. (uuid 27c4a43d-475e-4442-8a4f-1614fa569c1e)
  852. )
  853. (junction (at 123.825 22.86) (diameter 0) (color 0 0 0 0)
  854. (uuid 3667df37-8b6b-45a2-b1cf-0caa02e9cbf7)
  855. )
  856. (junction (at 146.685 44.45) (diameter 0) (color 0 0 0 0)
  857. (uuid 36cc4cd8-8ee2-4330-ad93-a9b452920a59)
  858. )
  859. (junction (at 151.13 33.02) (diameter 0) (color 0 0 0 0)
  860. (uuid 9dfff5a7-b152-467d-9ee8-03c873f99150)
  861. )
  862. (junction (at 146.685 33.02) (diameter 0) (color 0 0 0 0)
  863. (uuid b68e8bb4-1b33-40cd-883c-3ecaef6088c0)
  864. )
  865. (junction (at 137.795 44.45) (diameter 0) (color 0 0 0 0)
  866. (uuid dcdc9b64-fc5c-44f5-bfee-3bb6a7067acf)
  867. )
  868. (junction (at 137.795 33.02) (diameter 0) (color 0 0 0 0)
  869. (uuid e7ec5feb-0d8c-485f-9105-2472bb2bd9ac)
  870. )
  871. (junction (at 155.575 22.86) (diameter 0) (color 0 0 0 0)
  872. (uuid f24dfdde-64f5-4e3e-8400-c20e223b4a27)
  873. )
  874. (no_connect (at 146.685 189.23) (uuid 032d65c2-7329-4437-9bca-645a5a19ea0d))
  875. (no_connect (at 49.53 107.95) (uuid 19760018-33b7-4424-9ad6-110ecafffd4d))
  876. (no_connect (at 146.685 180.34) (uuid 2935555b-0281-41d0-88d2-580ab2521939))
  877. (no_connect (at 49.53 105.41) (uuid 47ed39b6-afbe-4cdf-be2b-3f1627c01ff1))
  878. (no_connect (at 146.685 193.04) (uuid 64c44090-b7d9-495d-8f8b-f4f8507eead2))
  879. (no_connect (at 224.79 144.78) (uuid 6bfb5651-827a-4595-b2df-edc4f44c6792))
  880. (no_connect (at 72.39 107.95) (uuid 7bf4ccb3-3a6f-4d3f-b302-6dd0a55dc487))
  881. (no_connect (at 72.39 105.41) (uuid 9ca03e6c-cd2c-432f-aadf-28215cf987d6))
  882. (no_connect (at 146.685 184.785) (uuid ba4b8921-d5c4-4a24-ab7c-70ef29dd94df))
  883. (no_connect (at 262.89 146.05) (uuid c533ac37-ca25-480a-b095-2a69f3c33481))
  884. (wire (pts (xy 151.13 33.02) (xy 155.575 33.02))
  885. (stroke (width 0) (type default) (color 0 0 0 0))
  886. (uuid 049a65be-1c50-4096-a9f0-29be3b0966b1)
  887. )
  888. (wire (pts (xy 46.99 187.96) (xy 49.53 187.96))
  889. (stroke (width 0) (type default) (color 0 0 0 0))
  890. (uuid 056b4145-87c8-4b0d-9109-59cd85115e44)
  891. )
  892. (wire (pts (xy 155.575 22.86) (xy 163.195 22.86))
  893. (stroke (width 0) (type default) (color 0 0 0 0))
  894. (uuid 0b0bc7c8-975a-444d-85b1-ee2365056185)
  895. )
  896. (wire (pts (xy 40.64 68.58) (xy 38.1 68.58))
  897. (stroke (width 0) (type default) (color 0 0 0 0))
  898. (uuid 191d2b00-ca8c-4858-9f41-3f4c7d0039d2)
  899. )
  900. (polyline (pts (xy 177.8 165.1) (xy 177.8 124.46))
  901. (stroke (width 0) (type default) (color 0 0 0 0))
  902. (uuid 20e98b95-5df8-4c23-ba7c-b8992347c93b)
  903. )
  904. (wire (pts (xy 80.01 26.67) (xy 77.47 26.67))
  905. (stroke (width 0) (type default) (color 0 0 0 0))
  906. (uuid 211f0f9d-2ff8-4a7c-bd19-f260e2752d2b)
  907. )
  908. (wire (pts (xy 151.13 24.765) (xy 151.13 22.86))
  909. (stroke (width 0) (type default) (color 0 0 0 0))
  910. (uuid 26384a53-f634-4042-b9b6-48b41dd5a076)
  911. )
  912. (wire (pts (xy 163.195 22.86) (xy 169.545 22.86))
  913. (stroke (width 0) (type default) (color 0 0 0 0))
  914. (uuid 33fda79b-8e95-42b6-877c-e18611268b35)
  915. )
  916. (polyline (pts (xy 106.68 12.7) (xy 106.68 120.65))
  917. (stroke (width 0) (type default) (color 0 0 0 0))
  918. (uuid 37a1e64f-b6ed-41d8-80a6-fbd054a23da7)
  919. )
  920. (wire (pts (xy 146.685 34.925) (xy 146.685 33.02))
  921. (stroke (width 0) (type default) (color 0 0 0 0))
  922. (uuid 47834d79-b590-44a9-89b9-70730ed537f4)
  923. )
  924. (polyline (pts (xy 177.8 124.46) (xy 284.48 124.46))
  925. (stroke (width 0) (type default) (color 0 0 0 0))
  926. (uuid 49fde31f-9d60-4c61-a0ec-ec43d2a5c48c)
  927. )
  928. (polyline (pts (xy 106.68 50.8) (xy 284.48 50.8))
  929. (stroke (width 0) (type default) (color 0 0 0 0))
  930. (uuid 58ef96df-3565-4203-8c1f-47b64d65bf9b)
  931. )
  932. (wire (pts (xy 109.22 191.77) (xy 109.22 190.5))
  933. (stroke (width 0) (type default) (color 0 0 0 0))
  934. (uuid 5a6b158d-56e4-4138-846c-01af3f5b62c7)
  935. )
  936. (wire (pts (xy 137.795 44.45) (xy 137.795 45.72))
  937. (stroke (width 0) (type default) (color 0 0 0 0))
  938. (uuid 5e7c3709-c720-485d-bf26-f3e0f1179b67)
  939. )
  940. (wire (pts (xy 163.195 44.45) (xy 163.195 39.37))
  941. (stroke (width 0) (type default) (color 0 0 0 0))
  942. (uuid 6030a262-b12f-4684-8abf-b24ef9ee2731)
  943. )
  944. (wire (pts (xy 46.99 167.64) (xy 46.99 166.37))
  945. (stroke (width 0) (type default) (color 0 0 0 0))
  946. (uuid 60e50bb0-bcb4-4c7e-9a91-a11e3df64469)
  947. )
  948. (wire (pts (xy 46.99 140.97) (xy 49.53 140.97))
  949. (stroke (width 0) (type default) (color 0 0 0 0))
  950. (uuid 665a2750-6a96-4ef0-bdfb-d251122be3c2)
  951. )
  952. (wire (pts (xy 109.22 144.78) (xy 109.22 143.51))
  953. (stroke (width 0) (type default) (color 0 0 0 0))
  954. (uuid 7034858b-006d-4d38-ae1e-d64468b9d5a0)
  955. )
  956. (wire (pts (xy 137.795 44.45) (xy 146.685 44.45))
  957. (stroke (width 0) (type default) (color 0 0 0 0))
  958. (uuid 7148843c-4cb9-4241-be80-fa247081dd5f)
  959. )
  960. (wire (pts (xy 155.575 33.02) (xy 155.575 31.75))
  961. (stroke (width 0) (type default) (color 0 0 0 0))
  962. (uuid 75d71280-7fd1-4dd7-9da7-c4c7bc3282be)
  963. )
  964. (wire (pts (xy 30.48 25.4) (xy 27.94 25.4))
  965. (stroke (width 0) (type default) (color 0 0 0 0))
  966. (uuid 77298cdf-043c-4b5e-ac90-7a472ef0c50c)
  967. )
  968. (wire (pts (xy 40.64 25.4) (xy 38.1 25.4))
  969. (stroke (width 0) (type default) (color 0 0 0 0))
  970. (uuid 7b8e6be9-bb23-40a7-bdcc-af8b61120789)
  971. )
  972. (wire (pts (xy 120.015 22.86) (xy 123.825 22.86))
  973. (stroke (width 0) (type default) (color 0 0 0 0))
  974. (uuid 7d07a3ae-1ea0-43f0-9808-70134cfe8b2f)
  975. )
  976. (wire (pts (xy 40.64 46.99) (xy 38.1 46.99))
  977. (stroke (width 0) (type default) (color 0 0 0 0))
  978. (uuid 80f2d838-583b-4c51-b5f8-1b80478a616d)
  979. )
  980. (wire (pts (xy 155.575 24.13) (xy 155.575 22.86))
  981. (stroke (width 0) (type default) (color 0 0 0 0))
  982. (uuid 8391b1c5-6dc9-4fc1-a678-da6c0d728c7e)
  983. )
  984. (wire (pts (xy 151.13 33.02) (xy 151.13 32.385))
  985. (stroke (width 0) (type default) (color 0 0 0 0))
  986. (uuid 85dab7a4-9a88-486d-b958-86a38a3b4fd6)
  987. )
  988. (wire (pts (xy 123.825 30.48) (xy 123.825 22.86))
  989. (stroke (width 0) (type default) (color 0 0 0 0))
  990. (uuid 889a8e49-df29-41a8-94fd-e1b6c32734ef)
  991. )
  992. (wire (pts (xy 69.85 26.67) (xy 67.31 26.67))
  993. (stroke (width 0) (type default) (color 0 0 0 0))
  994. (uuid 8e93e18d-65ee-4fec-a868-b5c262a89a01)
  995. )
  996. (wire (pts (xy 146.685 33.02) (xy 151.13 33.02))
  997. (stroke (width 0) (type default) (color 0 0 0 0))
  998. (uuid 926c953c-076c-4cc2-a1f9-c5e73322aa99)
  999. )
  1000. (polyline (pts (xy 135.89 120.65) (xy 12.7 120.65))
  1001. (stroke (width 0) (type default) (color 0 0 0 0))
  1002. (uuid 96cbe833-195f-4cfd-8a45-24a70913e686)
  1003. )
  1004. (wire (pts (xy 46.99 191.77) (xy 46.99 190.5))
  1005. (stroke (width 0) (type default) (color 0 0 0 0))
  1006. (uuid 9b0a4a24-2301-4211-91da-6014155694fd)
  1007. )
  1008. (wire (pts (xy 109.22 140.97) (xy 111.76 140.97))
  1009. (stroke (width 0) (type default) (color 0 0 0 0))
  1010. (uuid 9d0c028d-cdf6-4359-9e86-5e3901fcba1f)
  1011. )
  1012. (wire (pts (xy 80.01 48.26) (xy 77.47 48.26))
  1013. (stroke (width 0) (type default) (color 0 0 0 0))
  1014. (uuid 9eb90413-0bcb-4368-8379-fdd39b87809d)
  1015. )
  1016. (wire (pts (xy 109.22 163.83) (xy 111.76 163.83))
  1017. (stroke (width 0) (type default) (color 0 0 0 0))
  1018. (uuid a3f4d251-47de-49ab-a8f3-7e6144167d1d)
  1019. )
  1020. (wire (pts (xy 137.795 33.02) (xy 146.685 33.02))
  1021. (stroke (width 0) (type default) (color 0 0 0 0))
  1022. (uuid a8741338-f49e-4272-adf5-177861d61fc5)
  1023. )
  1024. (wire (pts (xy 137.795 33.02) (xy 137.795 36.83))
  1025. (stroke (width 0) (type default) (color 0 0 0 0))
  1026. (uuid a9e3f1f3-39d6-4fe3-a2f5-3897a01d127f)
  1027. )
  1028. (wire (pts (xy 30.48 68.58) (xy 27.94 68.58))
  1029. (stroke (width 0) (type default) (color 0 0 0 0))
  1030. (uuid a9f06535-a3eb-447a-9fcd-2ffcf2dff613)
  1031. )
  1032. (wire (pts (xy 151.13 22.86) (xy 155.575 22.86))
  1033. (stroke (width 0) (type default) (color 0 0 0 0))
  1034. (uuid b1149e7a-7c6f-47c9-a6a3-c54104a1b04d)
  1035. )
  1036. (wire (pts (xy 109.22 190.5) (xy 111.76 190.5))
  1037. (stroke (width 0) (type default) (color 0 0 0 0))
  1038. (uuid b29edaad-6674-478f-89ec-0896a463f0f7)
  1039. )
  1040. (wire (pts (xy 46.99 143.51) (xy 49.53 143.51))
  1041. (stroke (width 0) (type default) (color 0 0 0 0))
  1042. (uuid b4368ff1-bc59-4616-a691-81a509c5041d)
  1043. )
  1044. (wire (pts (xy 146.685 42.545) (xy 146.685 44.45))
  1045. (stroke (width 0) (type default) (color 0 0 0 0))
  1046. (uuid b4490558-6ee9-4d84-8e69-e5a0059a26a0)
  1047. )
  1048. (polyline (pts (xy 12.7 83.82) (xy 106.68 83.82))
  1049. (stroke (width 0) (type default) (color 0 0 0 0))
  1050. (uuid b49a42bc-1123-4a4d-95e1-16790072a667)
  1051. )
  1052. (wire (pts (xy 46.99 163.83) (xy 49.53 163.83))
  1053. (stroke (width 0) (type default) (color 0 0 0 0))
  1054. (uuid b4f8db63-3a7a-453a-9083-71697e802252)
  1055. )
  1056. (wire (pts (xy 46.99 144.78) (xy 46.99 143.51))
  1057. (stroke (width 0) (type default) (color 0 0 0 0))
  1058. (uuid b5a1ea2e-6cd6-4b40-83e5-ab008a80d9fa)
  1059. )
  1060. (wire (pts (xy 109.22 143.51) (xy 111.76 143.51))
  1061. (stroke (width 0) (type default) (color 0 0 0 0))
  1062. (uuid c26d6e4d-ba6b-4443-92d5-594286d90600)
  1063. )
  1064. (wire (pts (xy 123.825 44.45) (xy 137.795 44.45))
  1065. (stroke (width 0) (type default) (color 0 0 0 0))
  1066. (uuid c34d8c10-a1ea-4eec-827f-935b3779d37e)
  1067. )
  1068. (wire (pts (xy 109.22 167.64) (xy 109.22 166.37))
  1069. (stroke (width 0) (type default) (color 0 0 0 0))
  1070. (uuid d0be9dfe-8ece-4f73-abba-06053543c895)
  1071. )
  1072. (wire (pts (xy 163.195 22.86) (xy 163.195 31.75))
  1073. (stroke (width 0) (type default) (color 0 0 0 0))
  1074. (uuid d2566c46-f325-4b14-a460-18a1efeba86e)
  1075. )
  1076. (wire (pts (xy 109.22 187.96) (xy 111.76 187.96))
  1077. (stroke (width 0) (type default) (color 0 0 0 0))
  1078. (uuid d443036b-4ce3-4ff8-a3b5-657b2cdbe14d)
  1079. )
  1080. (polyline (pts (xy 180.34 50.8) (xy 180.34 11.43))
  1081. (stroke (width 0) (type default) (color 0 0 0 0))
  1082. (uuid d5bf2714-3e68-49b7-878f-2f2d0d5d778e)
  1083. )
  1084. (wire (pts (xy 247.65 138.43) (xy 245.11 138.43))
  1085. (stroke (width 0) (type default) (color 0 0 0 0))
  1086. (uuid d6168d31-c76e-4c6f-8cc8-ab039b7d5246)
  1087. )
  1088. (wire (pts (xy 80.01 69.85) (xy 77.47 69.85))
  1089. (stroke (width 0) (type default) (color 0 0 0 0))
  1090. (uuid d769fe99-fc70-4b3a-bd89-20cca10966d9)
  1091. )
  1092. (wire (pts (xy 30.48 46.99) (xy 27.94 46.99))
  1093. (stroke (width 0) (type default) (color 0 0 0 0))
  1094. (uuid dc122d52-f966-4692-b252-4561167225be)
  1095. )
  1096. (wire (pts (xy 46.99 166.37) (xy 49.53 166.37))
  1097. (stroke (width 0) (type default) (color 0 0 0 0))
  1098. (uuid dde350ad-9b9c-440e-9b95-2050124de0c1)
  1099. )
  1100. (wire (pts (xy 69.85 48.26) (xy 67.31 48.26))
  1101. (stroke (width 0) (type default) (color 0 0 0 0))
  1102. (uuid e1bc5ac9-8885-404c-a0e0-64f1be99c08c)
  1103. )
  1104. (wire (pts (xy 146.685 44.45) (xy 163.195 44.45))
  1105. (stroke (width 0) (type default) (color 0 0 0 0))
  1106. (uuid e1df89f7-7fe5-4628-b5f5-025ec9946479)
  1107. )
  1108. (polyline (pts (xy 135.89 198.12) (xy 135.89 120.65))
  1109. (stroke (width 0) (type default) (color 0 0 0 0))
  1110. (uuid e2c47f33-a0fa-42e1-94f0-cf06e95526d7)
  1111. )
  1112. (wire (pts (xy 109.22 166.37) (xy 111.76 166.37))
  1113. (stroke (width 0) (type default) (color 0 0 0 0))
  1114. (uuid e7519d59-493a-4049-8d91-67ad836540f5)
  1115. )
  1116. (wire (pts (xy 123.825 38.1) (xy 123.825 44.45))
  1117. (stroke (width 0) (type default) (color 0 0 0 0))
  1118. (uuid e7806100-743c-4fb8-9807-29edcc5aee9d)
  1119. )
  1120. (wire (pts (xy 147.955 22.86) (xy 151.13 22.86))
  1121. (stroke (width 0) (type default) (color 0 0 0 0))
  1122. (uuid e91f61d1-583a-4f58-8231-4a7f30206a02)
  1123. )
  1124. (wire (pts (xy 123.825 22.86) (xy 127.635 22.86))
  1125. (stroke (width 0) (type default) (color 0 0 0 0))
  1126. (uuid eedbb543-4cea-4f91-b7db-103623aa4a33)
  1127. )
  1128. (wire (pts (xy 46.99 190.5) (xy 49.53 190.5))
  1129. (stroke (width 0) (type default) (color 0 0 0 0))
  1130. (uuid efd3511d-4a19-4fd8-a0da-72bc25c8195d)
  1131. )
  1132. (wire (pts (xy 69.85 69.85) (xy 67.31 69.85))
  1133. (stroke (width 0) (type default) (color 0 0 0 0))
  1134. (uuid f27de6b1-ef83-46fc-84f7-c7375ca423cd)
  1135. )
  1136. (text "A Faire:\n- Sonde PH\n- Sonde EC\n- 4 niveau d'eau" (at 3.81 -4.445 0)
  1137. (effects (font (size 2.54 2.54)) (justify left bottom))
  1138. (uuid e18f5fbc-ade5-4ad9-bd75-77e3d06bdec1)
  1139. )
  1140. (label "RelayIn_5" (at 224.79 154.94 0)
  1141. (effects (font (size 1.27 1.27)) (justify left bottom))
  1142. (uuid 001b152f-b017-4c09-a89f-b06696bbd143)
  1143. )
  1144. (label "230V" (at 191.77 36.83 0)
  1145. (effects (font (size 1.27 1.27)) (justify left bottom))
  1146. (uuid 0105dd59-d166-4cd7-b878-8c2bd1b415e4)
  1147. )
  1148. (label "3.3V" (at 169.545 22.86 0)
  1149. (effects (font (size 1.524 1.524)) (justify left bottom))
  1150. (uuid 01cd3226-03b9-40ed-8e21-47bb912927c4)
  1151. )
  1152. (label "3.3V" (at 26.67 180.34 180)
  1153. (effects (font (size 1.27 1.27)) (justify right bottom))
  1154. (uuid 0235a78a-2da2-486d-8eb4-4ca4c946b557)
  1155. )
  1156. (label "relayOUT_5" (at 119.38 165.1 0)
  1157. (effects (font (size 1.27 1.27)) (justify left bottom))
  1158. (uuid 034d3e75-11a3-48d3-83a9-0be7d22fdb92)
  1159. )
  1160. (label "Pompe_5" (at 67.31 48.26 180)
  1161. (effects (font (size 1.27 1.27)) (justify right bottom))
  1162. (uuid 05ba2a42-2656-4f6a-8468-1a004c26597b)
  1163. )
  1164. (label "GND" (at 48.26 53.34 270)
  1165. (effects (font (size 1.27 1.27)) (justify right bottom))
  1166. (uuid 0ae99969-20f8-4055-b9b2-9569218f1a75)
  1167. )
  1168. (label "Niveau_4" (at 262.89 148.59 0)
  1169. (effects (font (size 1.27 1.27)) (justify left bottom))
  1170. (uuid 0d801c2e-3bc1-4145-850e-41f8229cb027)
  1171. )
  1172. (label "12V" (at 120.015 22.86 180)
  1173. (effects (font (size 1.524 1.524)) (justify right bottom))
  1174. (uuid 0dc790ff-0266-4901-8cad-fd1feefcb7bc)
  1175. )
  1176. (label "RelayIn_6" (at 49.53 100.33 180)
  1177. (effects (font (size 1.27 1.27)) (justify right bottom))
  1178. (uuid 10163896-60e4-40b8-bbd4-ba16c67a503f)
  1179. )
  1180. (label "sda" (at 191.77 41.91 0)
  1181. (effects (font (size 1.524 1.524)) (justify left bottom))
  1182. (uuid 11a012ad-0631-4540-b0eb-24666d745aab)
  1183. )
  1184. (label "GND" (at 191.77 44.45 0)
  1185. (effects (font (size 1.27 1.27)) (justify left bottom))
  1186. (uuid 11cbbc1b-b5ef-4557-b6f8-4d85853c067a)
  1187. )
  1188. (label "Bobine_1" (at 46.99 133.35 0)
  1189. (effects (font (size 1.27 1.27)) (justify left bottom))
  1190. (uuid 150cba5e-a7e5-4339-985b-d460badb261b)
  1191. )
  1192. (label "12V" (at 81.28 142.24 180)
  1193. (effects (font (size 1.524 1.524)) (justify right bottom))
  1194. (uuid 152bd07f-1d36-4b68-b67c-4ece805a0c70)
  1195. )
  1196. (label "Pompe_3" (at 27.94 68.58 180)
  1197. (effects (font (size 1.27 1.27)) (justify right bottom))
  1198. (uuid 18d71a0b-7ded-4c14-a932-a8fd64ebbf11)
  1199. )
  1200. (label "Niveau_1" (at 224.79 149.86 0)
  1201. (effects (font (size 1.27 1.27)) (justify left bottom))
  1202. (uuid 1e3342f5-01f6-42a4-8be4-5a734ec3fe7f)
  1203. )
  1204. (label "12V" (at 213.36 29.21 0)
  1205. (effects (font (size 1.27 1.27)) (justify left bottom))
  1206. (uuid 1e997b66-7e5b-45a2-9775-b752867b59ee)
  1207. )
  1208. (label "relayOUT_6" (at 119.38 189.23 0)
  1209. (effects (font (size 1.27 1.27)) (justify left bottom))
  1210. (uuid 209c7bff-b1fe-4f28-ac77-2c3e8f146950)
  1211. )
  1212. (label "3.3V" (at 245.11 130.81 0)
  1213. (effects (font (size 1.524 1.524)) (justify left bottom))
  1214. (uuid 20e6488f-1b83-4022-ac96-e71a7aa5f82d)
  1215. )
  1216. (label "3.3V" (at 88.9 156.21 180)
  1217. (effects (font (size 1.27 1.27)) (justify right bottom))
  1218. (uuid 238b6ece-95d8-4f89-bfa6-cc7175e14fdd)
  1219. )
  1220. (label "relayOUT_4" (at 213.36 40.64 0)
  1221. (effects (font (size 1.27 1.27)) (justify left bottom))
  1222. (uuid 28fb0381-8d32-4e7b-b872-2122ed1e5a84)
  1223. )
  1224. (label "GND" (at 237.49 29.21 0)
  1225. (effects (font (size 1.27 1.27)) (justify left bottom))
  1226. (uuid 2a2dc186-b844-4b74-9d96-5c94a13d0e71)
  1227. )
  1228. (label "PompeOut_1" (at 191.77 26.67 0)
  1229. (effects (font (size 1.27 1.27)) (justify left bottom))
  1230. (uuid 31eb1fb2-d45f-4fb5-bead-7528fac637a1)
  1231. )
  1232. (label "PompeOut_3" (at 191.77 16.51 0)
  1233. (effects (font (size 1.27 1.27)) (justify left bottom))
  1234. (uuid 32c30a9c-672a-4b02-991c-7f1a5ddcae88)
  1235. )
  1236. (label "GND" (at 27.94 33.02 270)
  1237. (effects (font (size 1.27 1.27)) (justify right bottom))
  1238. (uuid 3370eab9-86e0-4c9f-bead-2462428970e9)
  1239. )
  1240. (label "PompeOut_2" (at 191.77 21.59 0)
  1241. (effects (font (size 1.27 1.27)) (justify left bottom))
  1242. (uuid 347a438d-00e1-41bc-865a-ca0b4050417a)
  1243. )
  1244. (label "Neutre" (at 237.49 16.51 0)
  1245. (effects (font (size 1.27 1.27)) (justify left bottom))
  1246. (uuid 36545c09-abb0-49ec-8df6-f286fdd62568)
  1247. )
  1248. (label "Bobine_3" (at 46.99 180.34 0)
  1249. (effects (font (size 1.27 1.27)) (justify left bottom))
  1250. (uuid 3fbe492f-7074-4c0a-bfa2-d2d6d51c2205)
  1251. )
  1252. (label "GND" (at 87.63 54.61 270)
  1253. (effects (font (size 1.27 1.27)) (justify right bottom))
  1254. (uuid 4237e7ba-7669-40ef-8a33-df65cef9bfb0)
  1255. )
  1256. (label "RelayIn_3" (at 209.55 149.86 180)
  1257. (effects (font (size 1.27 1.27)) (justify right bottom))
  1258. (uuid 426bf105-d652-4210-b91b-1a79c506c00e)
  1259. )
  1260. (label "Bobine_3" (at 72.39 95.25 0)
  1261. (effects (font (size 1.27 1.27)) (justify left bottom))
  1262. (uuid 42d5bced-ab3c-4099-aa34-ff5824e82eb0)
  1263. )
  1264. (label "GND" (at 67.31 77.47 270)
  1265. (effects (font (size 1.27 1.27)) (justify right bottom))
  1266. (uuid 44171ece-bb55-40fa-a83e-59241d46f557)
  1267. )
  1268. (label "GND" (at 48.26 74.93 270)
  1269. (effects (font (size 1.27 1.27)) (justify right bottom))
  1270. (uuid 46132384-18b9-4330-8462-c5871721d315)
  1271. )
  1272. (label "RelayIn_4" (at 209.55 152.4 180)
  1273. (effects (font (size 1.27 1.27)) (justify right bottom))
  1274. (uuid 469339ba-9b60-4801-91a7-ffd4579a032a)
  1275. )
  1276. (label "12V" (at 81.28 189.23 180)
  1277. (effects (font (size 1.524 1.524)) (justify right bottom))
  1278. (uuid 46fff5f6-bc98-4329-8935-6db1aeed912d)
  1279. )
  1280. (label "GND" (at 27.94 76.2 270)
  1281. (effects (font (size 1.27 1.27)) (justify right bottom))
  1282. (uuid 49e104bb-cbe7-437b-8417-4e9bbb1d536c)
  1283. )
  1284. (label "PompeOut_5" (at 87.63 41.91 0)
  1285. (effects (font (size 1.27 1.27)) (justify left bottom))
  1286. (uuid 49e67aa1-3a4a-4a7c-acd0-a3f386d4e5ce)
  1287. )
  1288. (label "Neutre" (at 237.49 19.05 0)
  1289. (effects (font (size 1.27 1.27)) (justify left bottom))
  1290. (uuid 4a4a6381-78ca-4fac-b1d6-86e0ff8d0e27)
  1291. )
  1292. (label "RelayIn_4" (at 49.53 97.79 180)
  1293. (effects (font (size 1.27 1.27)) (justify right bottom))
  1294. (uuid 4df3a5a2-18ea-46f6-a64a-19b743d0797b)
  1295. )
  1296. (label "GND" (at 209.55 142.24 180)
  1297. (effects (font (size 1.524 1.524)) (justify right bottom))
  1298. (uuid 504d3f9a-0229-4dce-88f6-a99a060bbfe1)
  1299. )
  1300. (label "GND" (at 247.65 143.51 180)
  1301. (effects (font (size 1.524 1.524)) (justify right bottom))
  1302. (uuid 511123b9-c5fb-4030-9237-7ce904aea3eb)
  1303. )
  1304. (label "GND" (at 247.65 156.21 180)
  1305. (effects (font (size 1.524 1.524)) (justify right bottom))
  1306. (uuid 53571905-25f3-4be4-90b5-3280a06044af)
  1307. )
  1308. (label "PompeOut_5" (at 213.36 21.59 0)
  1309. (effects (font (size 1.27 1.27)) (justify left bottom))
  1310. (uuid 53a20c67-329d-4cfc-8366-79816b4420ea)
  1311. )
  1312. (label "GND" (at 27.94 54.61 270)
  1313. (effects (font (size 1.27 1.27)) (justify right bottom))
  1314. (uuid 57c7a84e-7520-42e0-a28e-a3fcb0a9f8a5)
  1315. )
  1316. (label "GND" (at 87.63 33.02 270)
  1317. (effects (font (size 1.27 1.27)) (justify right bottom))
  1318. (uuid 57ddd81c-8b8c-41d0-b942-098f804cdc8f)
  1319. )
  1320. (label "230V" (at 81.28 144.78 180)
  1321. (effects (font (size 1.27 1.27)) (justify right bottom))
  1322. (uuid 5951a93e-2c13-4263-8f2e-b96e79b6a787)
  1323. )
  1324. (label "relayOUT_2" (at 57.15 165.1 0)
  1325. (effects (font (size 1.27 1.27)) (justify left bottom))
  1326. (uuid 614ac11f-061c-497c-95e1-fcdae05673e8)
  1327. )
  1328. (label "GND" (at 237.49 31.75 0)
  1329. (effects (font (size 1.27 1.27)) (justify left bottom))
  1330. (uuid 61cbc97c-9fd1-4c13-b4cc-a2a016d141f3)
  1331. )
  1332. (label "230V" (at 19.05 144.78 180)
  1333. (effects (font (size 1.27 1.27)) (justify right bottom))
  1334. (uuid 6304e9cd-9f51-430c-a069-edf334002353)
  1335. )
  1336. (label "GND" (at 251.46 162.56 180)
  1337. (effects (font (size 1.524 1.524)) (justify right bottom))
  1338. (uuid 660b8a46-caa3-4af1-9fb7-44b6e432abb7)
  1339. )
  1340. (label "RelayIn_3" (at 49.53 95.25 180)
  1341. (effects (font (size 1.27 1.27)) (justify right bottom))
  1342. (uuid 685f9d56-6c0c-4495-85e4-90f1247f93e8)
  1343. )
  1344. (label "12V" (at 81.28 165.1 180)
  1345. (effects (font (size 1.524 1.524)) (justify right bottom))
  1346. (uuid 68ba9ef1-5698-4407-b43c-82a99a01848d)
  1347. )
  1348. (label "RelayIn_6" (at 224.79 152.4 0)
  1349. (effects (font (size 1.27 1.27)) (justify left bottom))
  1350. (uuid 6c17ab68-a9c5-4c13-826f-0a98948c322e)
  1351. )
  1352. (label "PompeOut_6" (at 213.36 16.51 0)
  1353. (effects (font (size 1.27 1.27)) (justify left bottom))
  1354. (uuid 6e10f160-3ca4-452a-99d2-c5c9f13b568d)
  1355. )
  1356. (label "GND" (at 48.26 31.75 270)
  1357. (effects (font (size 1.27 1.27)) (justify right bottom))
  1358. (uuid 7173f1ce-ec4e-4e4b-a940-cbe6117cef66)
  1359. )
  1360. (label "12V" (at 213.36 24.13 0)
  1361. (effects (font (size 1.27 1.27)) (justify left bottom))
  1362. (uuid 7605761f-cf96-44cd-a98d-96eb69ad43f2)
  1363. )
  1364. (label "Pompe_1" (at 27.94 25.4 180)
  1365. (effects (font (size 1.27 1.27)) (justify right bottom))
  1366. (uuid 7879945c-7a27-4de8-bc85-19f08deb1280)
  1367. )
  1368. (label "3.3V" (at 262.89 138.43 0)
  1369. (effects (font (size 1.524 1.524)) (justify left bottom))
  1370. (uuid 7967eeda-ecda-4ff4-ad48-5bcfb477ea29)
  1371. )
  1372. (label "230V" (at 81.28 167.64 180)
  1373. (effects (font (size 1.27 1.27)) (justify right bottom))
  1374. (uuid 7977391f-8c46-4426-80ee-e8b247beee06)
  1375. )
  1376. (label "3.3V" (at 220.98 161.29 0)
  1377. (effects (font (size 1.524 1.524)) (justify left bottom))
  1378. (uuid 7b6b8370-5a87-41a5-bc0a-09df4afe2291)
  1379. )
  1380. (label "3.3V" (at 26.67 133.35 180)
  1381. (effects (font (size 1.27 1.27)) (justify right bottom))
  1382. (uuid 84fb0312-7118-4c1f-aaf2-ab6389ba2dad)
  1383. )
  1384. (label "3.3V" (at 259.08 162.56 0)
  1385. (effects (font (size 1.524 1.524)) (justify left bottom))
  1386. (uuid 85398fbb-014e-4092-b3a7-cd712599d0ed)
  1387. )
  1388. (label "RelayIn_1" (at 209.55 144.78 180)
  1389. (effects (font (size 1.27 1.27)) (justify right bottom))
  1390. (uuid 881b6b66-763a-479b-97d0-b35b65db68d8)
  1391. )
  1392. (label "12V" (at 213.36 19.05 0)
  1393. (effects (font (size 1.27 1.27)) (justify left bottom))
  1394. (uuid 889a73ff-3f2f-4233-895a-784a8cbb1624)
  1395. )
  1396. (label "sda" (at 224.79 139.7 0)
  1397. (effects (font (size 1.524 1.524)) (justify left bottom))
  1398. (uuid 8c446bc6-f2fe-42c9-881c-3788d8856632)
  1399. )
  1400. (label "RelayIn_2" (at 209.55 147.32 180)
  1401. (effects (font (size 1.27 1.27)) (justify right bottom))
  1402. (uuid 8d7c661d-13de-4a7d-a3ce-e7233edef1e5)
  1403. )
  1404. (label "Bobine_5" (at 72.39 100.33 0)
  1405. (effects (font (size 1.27 1.27)) (justify left bottom))
  1406. (uuid 8eeb71f9-9f86-410e-9e09-ce21b358793f)
  1407. )
  1408. (label "relayOUT_1" (at 57.15 142.24 0)
  1409. (effects (font (size 1.27 1.27)) (justify left bottom))
  1410. (uuid 923e5ff8-8f9f-499c-9b64-b020bc421c63)
  1411. )
  1412. (label "GND" (at 209.55 139.7 180)
  1413. (effects (font (size 1.524 1.524)) (justify right bottom))
  1414. (uuid 92e499da-2228-4824-8710-fefc68179fa0)
  1415. )
  1416. (label "Niveau_3" (at 262.89 151.13 0)
  1417. (effects (font (size 1.27 1.27)) (justify left bottom))
  1418. (uuid 9611a1d4-c5c5-4a14-9c64-9f5b82ef1ba4)
  1419. )
  1420. (label "Neutre" (at 237.49 21.59 0)
  1421. (effects (font (size 1.27 1.27)) (justify left bottom))
  1422. (uuid 989519da-3721-4db0-8ba2-79ef3be3c26a)
  1423. )
  1424. (label "Niveau_2" (at 224.79 147.32 0)
  1425. (effects (font (size 1.27 1.27)) (justify left bottom))
  1426. (uuid 9ceed9ea-67b1-4cef-9898-081376de7146)
  1427. )
  1428. (label "3.3V" (at 224.79 137.16 0)
  1429. (effects (font (size 1.524 1.524)) (justify left bottom))
  1430. (uuid 9d769249-722e-4d5a-bd47-4b6edff57d23)
  1431. )
  1432. (label "sdl" (at 262.89 143.51 0)
  1433. (effects (font (size 1.524 1.524)) (justify left bottom))
  1434. (uuid 9e2ac863-bcfa-4f82-9e18-dd6bc6aaa596)
  1435. )
  1436. (label "12V" (at 19.05 165.1 180)
  1437. (effects (font (size 1.524 1.524)) (justify right bottom))
  1438. (uuid 9f6b9108-50a0-477c-9a6e-4dcdfb149725)
  1439. )
  1440. (label "Pompe_3" (at 247.65 151.13 180)
  1441. (effects (font (size 1.27 1.27)) (justify right bottom))
  1442. (uuid a071ec41-b813-4873-a7a0-a9d836212d71)
  1443. )
  1444. (label "Bobine_6" (at 72.39 102.87 0)
  1445. (effects (font (size 1.27 1.27)) (justify left bottom))
  1446. (uuid a37465b5-ef88-4166-bbc5-dfb4868a7fc7)
  1447. )
  1448. (label "Pompe_1" (at 247.65 146.05 180)
  1449. (effects (font (size 1.27 1.27)) (justify right bottom))
  1450. (uuid a98fcf75-dfb5-44db-b354-64077916238e)
  1451. )
  1452. (label "GND" (at 87.63 76.2 270)
  1453. (effects (font (size 1.27 1.27)) (justify right bottom))
  1454. (uuid a9ab815e-d6d4-45f6-9f75-30b58c167791)
  1455. )
  1456. (label "Bobine_2" (at 46.99 156.21 0)
  1457. (effects (font (size 1.27 1.27)) (justify left bottom))
  1458. (uuid aa0c34b5-8795-43b6-9d59-0b813ac927ba)
  1459. )
  1460. (label "Bobine_4" (at 109.22 133.35 0)
  1461. (effects (font (size 1.27 1.27)) (justify left bottom))
  1462. (uuid aa199f8a-8316-46b7-8291-9a2ccd806b60)
  1463. )
  1464. (label "Bobine_2" (at 72.39 92.71 0)
  1465. (effects (font (size 1.27 1.27)) (justify left bottom))
  1466. (uuid aa563e66-2bb9-46f5-9a03-384d09fad725)
  1467. )
  1468. (label "Pompe_2" (at 27.94 46.99 180)
  1469. (effects (font (size 1.27 1.27)) (justify right bottom))
  1470. (uuid ac073b46-6687-4b27-ba2a-fd16c45a5515)
  1471. )
  1472. (label "3.3V" (at 88.9 180.34 180)
  1473. (effects (font (size 1.27 1.27)) (justify right bottom))
  1474. (uuid ad342722-b51e-4ba2-8cb5-80d97de938ad)
  1475. )
  1476. (label "RelayIn_1" (at 49.53 90.17 180)
  1477. (effects (font (size 1.27 1.27)) (justify right bottom))
  1478. (uuid afa8271d-fa34-4392-9a1e-1919bad47bf1)
  1479. )
  1480. (label "Pompe_6" (at 67.31 69.85 180)
  1481. (effects (font (size 1.27 1.27)) (justify right bottom))
  1482. (uuid b09a0402-86a2-404c-9955-12906ce6db83)
  1483. )
  1484. (label "PompeOut_4" (at 87.63 20.32 0)
  1485. (effects (font (size 1.27 1.27)) (justify left bottom))
  1486. (uuid b20299db-1c86-4701-8232-17ab04d228b5)
  1487. )
  1488. (label "12V" (at 191.77 46.99 0)
  1489. (effects (font (size 1.524 1.524)) (justify left bottom))
  1490. (uuid b2bfbdb4-d339-4269-a9e2-597170b684ff)
  1491. )
  1492. (label "relayOUT_3" (at 57.15 189.23 0)
  1493. (effects (font (size 1.27 1.27)) (justify left bottom))
  1494. (uuid b67762ea-37a0-4f29-8b1f-c8167023b9a5)
  1495. )
  1496. (label "GND" (at 237.49 26.67 0)
  1497. (effects (font (size 1.27 1.27)) (justify left bottom))
  1498. (uuid b684044c-8de3-4c2b-95c4-17ad60a99042)
  1499. )
  1500. (label "GND" (at 67.31 34.29 270)
  1501. (effects (font (size 1.27 1.27)) (justify right bottom))
  1502. (uuid b705b624-3c8d-4fc5-a51a-73d70aa4c559)
  1503. )
  1504. (label "Bobine_5" (at 109.22 156.21 0)
  1505. (effects (font (size 1.27 1.27)) (justify left bottom))
  1506. (uuid b718cfe7-bb4a-4ce1-9d55-7bf1a49a405a)
  1507. )
  1508. (label "RelayIn_5" (at 49.53 102.87 180)
  1509. (effects (font (size 1.27 1.27)) (justify right bottom))
  1510. (uuid b74e8568-9206-4fbb-a28b-dd3a595c0734)
  1511. )
  1512. (label "PompeOut_3" (at 48.26 62.23 0)
  1513. (effects (font (size 1.27 1.27)) (justify left bottom))
  1514. (uuid b98fe80b-4f2e-497d-a5ec-fc5c8515b96b)
  1515. )
  1516. (label "Bobine_6" (at 109.22 180.34 0)
  1517. (effects (font (size 1.27 1.27)) (justify left bottom))
  1518. (uuid b9a116d4-532c-4bcd-a19b-cec395ac8568)
  1519. )
  1520. (label "GND" (at 209.55 154.94 180)
  1521. (effects (font (size 1.524 1.524)) (justify right bottom))
  1522. (uuid b9edf2ca-f752-48dd-8089-663b955e4298)
  1523. )
  1524. (label "PompeOut_6" (at 87.63 63.5 0)
  1525. (effects (font (size 1.27 1.27)) (justify left bottom))
  1526. (uuid ba407883-d57e-4095-a04e-6617f26cfd89)
  1527. )
  1528. (label "12V" (at 191.77 24.13 0)
  1529. (effects (font (size 1.27 1.27)) (justify left bottom))
  1530. (uuid ba79e6cb-e427-4779-ab1c-2e2ce1e20772)
  1531. )
  1532. (label "Pompe_4" (at 67.31 26.67 180)
  1533. (effects (font (size 1.27 1.27)) (justify right bottom))
  1534. (uuid bb0ef6e0-b6f7-4438-af9d-9410d01e2634)
  1535. )
  1536. (label "PompeOut_1" (at 48.26 19.05 0)
  1537. (effects (font (size 1.27 1.27)) (justify left bottom))
  1538. (uuid bbfe0480-4ae5-4ba6-9f64-7f49c39a878b)
  1539. )
  1540. (label "PompeOut_4" (at 213.36 26.67 0)
  1541. (effects (font (size 1.27 1.27)) (justify left bottom))
  1542. (uuid bc600272-a7d0-4549-88f8-3562eaba9fda)
  1543. )
  1544. (label "3.3V" (at 26.67 156.21 180)
  1545. (effects (font (size 1.27 1.27)) (justify right bottom))
  1546. (uuid be5e7bec-39c3-469f-80ac-8bae1bb640b0)
  1547. )
  1548. (label "relayOUT_4" (at 119.38 142.24 0)
  1549. (effects (font (size 1.27 1.27)) (justify left bottom))
  1550. (uuid c17fcbce-a136-469c-ae49-a22cbbedd386)
  1551. )
  1552. (label "relayOUT_5" (at 213.36 38.1 0)
  1553. (effects (font (size 1.27 1.27)) (justify left bottom))
  1554. (uuid c2b2855b-dade-4127-8d01-9b14396314be)
  1555. )
  1556. (label "Neutre" (at 191.77 34.29 0)
  1557. (effects (font (size 1.27 1.27)) (justify left bottom))
  1558. (uuid c3f2f979-2bf8-4b13-808f-9171f88404e1)
  1559. )
  1560. (label "GND" (at 209.55 137.16 180)
  1561. (effects (font (size 1.524 1.524)) (justify right bottom))
  1562. (uuid c6e9b466-aab6-4e6c-b5ec-f92aadff8c89)
  1563. )
  1564. (label "relayOUT_2" (at 213.36 45.72 0)
  1565. (effects (font (size 1.27 1.27)) (justify left bottom))
  1566. (uuid ced56e9c-d90f-4582-8d48-3fbb7b8f6c36)
  1567. )
  1568. (label "Pompe_5" (at 262.89 156.21 0)
  1569. (effects (font (size 1.27 1.27)) (justify left bottom))
  1570. (uuid d297169f-e147-4e51-a663-e546efecfc69)
  1571. )
  1572. (label "12V" (at 19.05 189.23 180)
  1573. (effects (font (size 1.524 1.524)) (justify right bottom))
  1574. (uuid d505fa7a-4e17-479d-acf9-ca4dd07c894c)
  1575. )
  1576. (label "PompeOut_2" (at 48.26 40.64 0)
  1577. (effects (font (size 1.27 1.27)) (justify left bottom))
  1578. (uuid d56f8015-e2b3-48ca-ad91-6bf08e48eb70)
  1579. )
  1580. (label "GND" (at 67.31 55.88 270)
  1581. (effects (font (size 1.27 1.27)) (justify right bottom))
  1582. (uuid d5949464-4749-4767-9fc4-6653f66e247b)
  1583. )
  1584. (label "Pompe_2" (at 247.65 148.59 180)
  1585. (effects (font (size 1.27 1.27)) (justify right bottom))
  1586. (uuid d5d8fb41-13cd-4fd2-ba1a-bdc27fe563e7)
  1587. )
  1588. (label "GND" (at 213.36 161.29 180)
  1589. (effects (font (size 1.524 1.524)) (justify right bottom))
  1590. (uuid d7eb8033-0fdd-4b9c-a112-5a53504fc058)
  1591. )
  1592. (label "Bobine_1" (at 72.39 90.17 0)
  1593. (effects (font (size 1.27 1.27)) (justify left bottom))
  1594. (uuid d954fcdf-d698-4412-84f1-e98bd871913d)
  1595. )
  1596. (label "12V" (at 191.77 19.05 0)
  1597. (effects (font (size 1.27 1.27)) (justify left bottom))
  1598. (uuid dc75429f-4547-4325-b154-26cd1a130abd)
  1599. )
  1600. (label "sda" (at 262.89 140.97 0)
  1601. (effects (font (size 1.524 1.524)) (justify left bottom))
  1602. (uuid e02d5a8b-6e94-478a-9637-fd03f776fd9a)
  1603. )
  1604. (label "3.3V" (at 88.9 133.35 180)
  1605. (effects (font (size 1.27 1.27)) (justify right bottom))
  1606. (uuid e1e38240-f962-44fc-ace3-cecf7eb3a92a)
  1607. )
  1608. (label "230V" (at 81.28 191.77 180)
  1609. (effects (font (size 1.27 1.27)) (justify right bottom))
  1610. (uuid e379c82b-69b0-421b-b757-a100629e3c92)
  1611. )
  1612. (label "relayOUT_3" (at 213.36 43.18 0)
  1613. (effects (font (size 1.27 1.27)) (justify left bottom))
  1614. (uuid e5d7bed7-a292-42ca-8096-cd74112a8c14)
  1615. )
  1616. (label "Bobine_4" (at 72.39 97.79 0)
  1617. (effects (font (size 1.27 1.27)) (justify left bottom))
  1618. (uuid eb9a5d30-9642-44a5-b547-9e859921de2d)
  1619. )
  1620. (label "relayOUT_1" (at 213.36 48.26 0)
  1621. (effects (font (size 1.27 1.27)) (justify left bottom))
  1622. (uuid edf999ac-859b-4be8-87b6-c246dd1e76fa)
  1623. )
  1624. (label "RelayIn_2" (at 49.53 92.71 180)
  1625. (effects (font (size 1.27 1.27)) (justify right bottom))
  1626. (uuid f089debe-c828-441b-ae13-0cee59b2dd62)
  1627. )
  1628. (label "230V" (at 19.05 167.64 180)
  1629. (effects (font (size 1.27 1.27)) (justify right bottom))
  1630. (uuid f16e8bc9-39ac-4377-8121-163096dd890b)
  1631. )
  1632. (label "GND" (at 247.65 140.97 180)
  1633. (effects (font (size 1.524 1.524)) (justify right bottom))
  1634. (uuid f5c5a2f6-50fa-40ed-8d79-94ec3aa5e74f)
  1635. )
  1636. (label "230V" (at 19.05 191.77 180)
  1637. (effects (font (size 1.27 1.27)) (justify right bottom))
  1638. (uuid f704a251-4b48-4b02-977f-38c57c187f86)
  1639. )
  1640. (label "12V" (at 191.77 29.21 0)
  1641. (effects (font (size 1.27 1.27)) (justify left bottom))
  1642. (uuid f73fbe7f-3ec0-431f-9599-5580ff95f250)
  1643. )
  1644. (label "relayOUT_6" (at 213.36 35.56 0)
  1645. (effects (font (size 1.27 1.27)) (justify left bottom))
  1646. (uuid f9c5a76b-3e50-4e36-b529-cb9b5ba9b998)
  1647. )
  1648. (label "GND" (at 137.795 45.72 270)
  1649. (effects (font (size 1.524 1.524)) (justify right bottom))
  1650. (uuid fa414e9a-7d82-431d-b725-d7476175744e)
  1651. )
  1652. (label "Pompe_4" (at 247.65 153.67 180)
  1653. (effects (font (size 1.27 1.27)) (justify right bottom))
  1654. (uuid fbb89801-e99d-4f13-93f9-90542c9acdf9)
  1655. )
  1656. (label "sdl" (at 191.77 39.37 0)
  1657. (effects (font (size 1.524 1.524)) (justify left bottom))
  1658. (uuid fd50eac4-210e-47ce-948c-8f93f04575ea)
  1659. )
  1660. (label "12V" (at 19.05 142.24 180)
  1661. (effects (font (size 1.524 1.524)) (justify right bottom))
  1662. (uuid fec97162-8f8c-4810-84c1-67fd30638b2c)
  1663. )
  1664. (label "sdl" (at 224.79 142.24 0)
  1665. (effects (font (size 1.524 1.524)) (justify left bottom))
  1666. (uuid ff30c665-7c2e-4335-b4cf-1678debd0b42)
  1667. )
  1668. (label "Pompe_6" (at 262.89 153.67 0)
  1669. (effects (font (size 1.27 1.27)) (justify left bottom))
  1670. (uuid ff559bee-746a-4778-86c4-6cb4480facdf)
  1671. )
  1672. (symbol (lib_id "global:R") (at 137.795 40.64 0) (unit 1)
  1673. (in_bom yes) (on_board yes)
  1674. (uuid 00000000-0000-0000-0000-000061085c78)
  1675. (property "Reference" "R33" (id 0) (at 139.827 40.64 90))
  1676. (property "Value" "" (id 1) (at 137.795 40.64 90))
  1677. (property "Footprint" "" (id 2) (at 136.017 40.64 90)
  1678. (effects (font (size 1.27 1.27)) hide)
  1679. )
  1680. (property "Datasheet" "" (id 3) (at 137.795 40.64 0))
  1681. (property "Partkeepr" "913" (id 4) (at -96.52 157.48 0)
  1682. (effects (font (size 1.27 1.27)) hide)
  1683. )
  1684. (pin "1" (uuid 5447958f-ed8d-41c2-b626-b9a7ab93b8a9))
  1685. (pin "2" (uuid 943966ca-6d39-46ad-b2f0-ad18a7ec43c9))
  1686. )
  1687. (symbol (lib_id "global:R") (at 151.13 28.575 0) (unit 1)
  1688. (in_bom yes) (on_board yes)
  1689. (uuid 00000000-0000-0000-0000-000061085c7f)
  1690. (property "Reference" "R35" (id 0) (at 153.162 28.575 90))
  1691. (property "Value" "" (id 1) (at 151.13 28.575 90))
  1692. (property "Footprint" "" (id 2) (at 149.352 28.575 90)
  1693. (effects (font (size 1.27 1.27)) hide)
  1694. )
  1695. (property "Datasheet" "" (id 3) (at 151.13 28.575 0))
  1696. (property "Partkeepr" "914" (id 4) (at -100.965 133.985 0)
  1697. (effects (font (size 1.27 1.27)) hide)
  1698. )
  1699. (pin "1" (uuid fac04735-f2c2-490f-b61b-bf87579c90b9))
  1700. (pin "2" (uuid e321a3d9-7d02-4d1f-8c8b-edd7dab32ac9))
  1701. )
  1702. (symbol (lib_id "global:CP") (at 146.685 38.735 0) (unit 1)
  1703. (in_bom yes) (on_board yes)
  1704. (uuid 00000000-0000-0000-0000-000061085c86)
  1705. (property "Reference" "C17" (id 0) (at 147.32 36.195 0)
  1706. (effects (font (size 1.27 1.27)) (justify left))
  1707. )
  1708. (property "Value" "" (id 1) (at 147.32 41.275 0)
  1709. (effects (font (size 1.27 1.27)) (justify left))
  1710. )
  1711. (property "Footprint" "" (id 2) (at 146.685 38.735 0)
  1712. (effects (font (size 1.27 1.27)) hide)
  1713. )
  1714. (property "Datasheet" "" (id 3) (at 146.685 38.735 0))
  1715. (property "Partkeepr" "609" (id 4) (at -96.52 153.67 0)
  1716. (effects (font (size 1.27 1.27)) hide)
  1717. )
  1718. (pin "1" (uuid 36dd24f7-efd6-4037-a288-69973fe1c61e))
  1719. (pin "2" (uuid 146c3f84-6b41-401c-a42b-7b6fd3a5ae20))
  1720. )
  1721. (symbol (lib_id "global:CP") (at 123.825 34.29 0) (unit 1)
  1722. (in_bom yes) (on_board yes)
  1723. (uuid 00000000-0000-0000-0000-000061085c90)
  1724. (property "Reference" "C15" (id 0) (at 124.46 31.75 0)
  1725. (effects (font (size 1.27 1.27)) (justify left))
  1726. )
  1727. (property "Value" "" (id 1) (at 124.46 36.83 0)
  1728. (effects (font (size 1.27 1.27)) (justify left))
  1729. )
  1730. (property "Footprint" "" (id 2) (at 123.825 34.29 0)
  1731. (effects (font (size 1.27 1.27)) hide)
  1732. )
  1733. (property "Datasheet" "" (id 3) (at 123.825 34.29 0))
  1734. (property "Partkeepr" "0610" (id 4) (at 123.825 34.29 0)
  1735. (effects (font (size 1.27 1.27)) hide)
  1736. )
  1737. (pin "1" (uuid 1f1269bd-8dd0-4c7d-a0e4-c1629224dc2c))
  1738. (pin "2" (uuid e0793e39-74f5-43b2-aaf6-99cc92353959))
  1739. )
  1740. (symbol (lib_id "global:CP") (at 163.195 35.56 0) (unit 1)
  1741. (in_bom yes) (on_board yes)
  1742. (uuid 00000000-0000-0000-0000-000061085cb4)
  1743. (property "Reference" "C19" (id 0) (at 163.83 33.02 0)
  1744. (effects (font (size 1.27 1.27)) (justify left))
  1745. )
  1746. (property "Value" "" (id 1) (at 163.83 38.1 0)
  1747. (effects (font (size 1.27 1.27)) (justify left))
  1748. )
  1749. (property "Footprint" "" (id 2) (at 163.195 35.56 0)
  1750. (effects (font (size 1.27 1.27)) hide)
  1751. )
  1752. (property "Datasheet" "" (id 3) (at 163.195 35.56 0))
  1753. (property "Partkeepr" "608" (id 4) (at -96.52 147.32 0)
  1754. (effects (font (size 1.27 1.27)) hide)
  1755. )
  1756. (pin "1" (uuid 1d05ab86-732f-4d6e-9e63-9fbc0c9371c9))
  1757. (pin "2" (uuid c73d4f34-acaa-4b8a-b26a-7b6f9453c0b7))
  1758. )
  1759. (symbol (lib_id "global:D") (at 155.575 27.94 270) (unit 1)
  1760. (in_bom yes) (on_board yes)
  1761. (uuid 00000000-0000-0000-0000-000061085cc2)
  1762. (property "Reference" "D5" (id 0) (at 157.5562 26.7716 90)
  1763. (effects (font (size 1.27 1.27)) (justify left))
  1764. )
  1765. (property "Value" "" (id 1) (at 157.5562 29.083 90)
  1766. (effects (font (size 1.27 1.27)) (justify left))
  1767. )
  1768. (property "Footprint" "" (id 2) (at 155.575 27.94 0)
  1769. (effects (font (size 1.27 1.27)) hide)
  1770. )
  1771. (property "Datasheet" "" (id 3) (at 155.575 27.94 0))
  1772. (property "Partkeepr" "1302" (id 4) (at 51.435 -224.155 0)
  1773. (effects (font (size 1.27 1.27)) hide)
  1774. )
  1775. (pin "1" (uuid edd53d05-d48a-408d-965f-14c747ecacbe))
  1776. (pin "2" (uuid fbebc350-0c20-4b54-b916-23bcd51e3596))
  1777. )
  1778. (symbol (lib_id "global:LM317") (at 137.795 22.86 0) (unit 1)
  1779. (in_bom yes) (on_board yes)
  1780. (uuid 00000000-0000-0000-0000-0000610a57a7)
  1781. (property "Reference" "U4" (id 0) (at 137.795 14.3002 0)
  1782. (effects (font (size 1.524 1.524)))
  1783. )
  1784. (property "Value" "" (id 1) (at 137.795 16.9926 0)
  1785. (effects (font (size 1.524 1.524)))
  1786. )
  1787. (property "Footprint" "" (id 2) (at 137.795 22.86 0)
  1788. (effects (font (size 1.524 1.524)))
  1789. )
  1790. (property "Datasheet" "" (id 3) (at 137.795 22.86 0)
  1791. (effects (font (size 1.524 1.524)))
  1792. )
  1793. (pin "1" (uuid f4fa8f99-d85e-4345-88a4-e22683aa75ed))
  1794. (pin "2" (uuid a8e1d309-4d6c-4ab6-9ecd-d75410734083))
  1795. (pin "3" (uuid 58266d5d-0dfe-409d-9a2f-a787e6714a02))
  1796. )
  1797. (symbol (lib_id "conn:CONN_01X06") (at 186.69 40.64 180) (unit 1)
  1798. (in_bom yes) (on_board yes)
  1799. (uuid 00000000-0000-0000-0000-00006187edec)
  1800. (property "Reference" "P6" (id 0) (at 186.69 31.75 0))
  1801. (property "Value" "" (id 1) (at 184.15 40.64 90))
  1802. (property "Footprint" "" (id 2) (at 186.69 40.64 0))
  1803. (property "Datasheet" "" (id 3) (at 186.69 40.64 0))
  1804. (pin "1" (uuid 22e845f4-47b6-475c-acbf-85363e168eff))
  1805. (pin "2" (uuid 0d625d1c-f11f-44ef-a669-de2a66a632f3))
  1806. (pin "3" (uuid ad95709b-7496-494f-a73c-5ed7c1e804c4))
  1807. (pin "4" (uuid dff3572e-3139-4ebf-9e25-9261b7f054d1))
  1808. (pin "5" (uuid 9dba5b13-8476-4310-830e-33268effbdf6))
  1809. (pin "6" (uuid 439e6629-b6b5-40bf-9da0-c378d036c3b6))
  1810. )
  1811. (symbol (lib_id "NXP:PCF8574") (at 255.27 147.32 0) (unit 1)
  1812. (in_bom yes) (on_board yes)
  1813. (uuid 00000000-0000-0000-0000-000061885823)
  1814. (property "Reference" "U3" (id 0) (at 255.27 132.715 0))
  1815. (property "Value" "" (id 1) (at 255.27 135.0264 0))
  1816. (property "Footprint" "" (id 2) (at 255.27 147.32 0)
  1817. (effects (font (size 1.27 1.27)) hide)
  1818. )
  1819. (property "Datasheet" "" (id 3) (at 255.27 147.32 0)
  1820. (effects (font (size 1.27 1.27)) hide)
  1821. )
  1822. (pin "1" (uuid 50fe2019-b86a-4f03-9bb5-3f1120c775d4))
  1823. (pin "10" (uuid 16bc9b2e-b939-4984-9077-85791c1ebf2b))
  1824. (pin "11" (uuid 1fcc6aa5-2e82-4b0d-930f-2ff6bcabfcdd))
  1825. (pin "12" (uuid 14fba775-678c-4347-90be-e514e397645b))
  1826. (pin "13" (uuid 891c1eac-3efb-4142-ac2f-67943117b77b))
  1827. (pin "14" (uuid 73bd676e-9e7c-419d-ad2b-6b96ea61aa2e))
  1828. (pin "15" (uuid 881b47d5-5729-4bc4-a17a-e7ef85f11b79))
  1829. (pin "16" (uuid 5c4bcc6b-8918-497a-99d7-a97dd56af06d))
  1830. (pin "2" (uuid a8ebe4b9-d092-4141-996f-6803e796f15c))
  1831. (pin "3" (uuid 827bb4b4-7d6f-4417-9e44-e0fb47ad12f3))
  1832. (pin "4" (uuid 372dc523-c12f-4d58-a04d-2d58079236ae))
  1833. (pin "5" (uuid b4acfff2-8033-425c-87a4-df8e92b5da09))
  1834. (pin "6" (uuid 6b5bed13-74fa-4159-92d2-358da10e8ed3))
  1835. (pin "7" (uuid 2321fac7-9050-4fe9-8cd5-76b36287c84f))
  1836. (pin "8" (uuid 82b53ac5-2666-43cd-a218-50588c668ae0))
  1837. (pin "9" (uuid 6bb20bea-bfc1-40df-beee-6a5e4f942249))
  1838. )
  1839. (symbol (lib_id "NXP:PCF8574") (at 217.17 146.05 0) (unit 1)
  1840. (in_bom yes) (on_board yes)
  1841. (uuid 00000000-0000-0000-0000-000061886f1c)
  1842. (property "Reference" "U2" (id 0) (at 217.17 131.445 0))
  1843. (property "Value" "" (id 1) (at 217.17 133.7564 0))
  1844. (property "Footprint" "" (id 2) (at 217.17 146.05 0)
  1845. (effects (font (size 1.27 1.27)) hide)
  1846. )
  1847. (property "Datasheet" "" (id 3) (at 217.17 146.05 0)
  1848. (effects (font (size 1.27 1.27)) hide)
  1849. )
  1850. (pin "1" (uuid 9aa543e6-eb01-49c3-99d6-3694ae39dad2))
  1851. (pin "10" (uuid 90e1f00c-2532-4942-a5c5-bc88a9e953a2))
  1852. (pin "11" (uuid 88f68856-dab5-41f1-b4aa-9544d5ffdd58))
  1853. (pin "12" (uuid 080e7a50-f9ae-4631-8674-2e3b7d4111be))
  1854. (pin "13" (uuid 870ff8ea-af2c-4a84-a106-6772f0388f6a))
  1855. (pin "14" (uuid 262f218f-ee8f-4da1-bea5-eee7d7237ce9))
  1856. (pin "15" (uuid 612a0d6e-850a-425d-b3c1-d744975d304a))
  1857. (pin "16" (uuid 87e5159d-943d-43a9-a62b-faa1249dd93c))
  1858. (pin "2" (uuid fa25708b-0372-4148-949c-d15a7e86b62c))
  1859. (pin "3" (uuid 105daa9f-653c-4097-9052-56d9fac17b79))
  1860. (pin "4" (uuid 8e4582d8-7a78-4fd4-8aa4-95d3bb6cb583))
  1861. (pin "5" (uuid ecfdf0e8-db68-4d7d-b4bf-5a1d2c29c100))
  1862. (pin "6" (uuid ad6cb09b-3342-44d6-b97f-0ee8b0d0f40b))
  1863. (pin "7" (uuid ad0a5037-6518-41ee-a358-9619f6541216))
  1864. (pin "8" (uuid 7b679aef-35d7-4585-ba26-b7af4dcfcb38))
  1865. (pin "9" (uuid bca46aa8-f88b-4fe1-86fd-b2ffe208ba56))
  1866. )
  1867. (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 99.06 161.29 270) (unit 1)
  1868. (in_bom yes) (on_board yes)
  1869. (uuid 00000000-0000-0000-0000-000061888843)
  1870. (property "Reference" "K5" (id 0) (at 99.06 148.9202 90)
  1871. (effects (font (size 1.524 1.524)))
  1872. )
  1873. (property "Value" "" (id 1) (at 99.06 151.6126 90)
  1874. (effects (font (size 1.524 1.524)))
  1875. )
  1876. (property "Footprint" "" (id 2) (at 99.06 160.02 0)
  1877. (effects (font (size 1.524 1.524)) hide)
  1878. )
  1879. (property "Datasheet" "" (id 3) (at 99.06 160.02 0)
  1880. (effects (font (size 1.524 1.524)) hide)
  1881. )
  1882. (pin "1" (uuid 8d348a40-dc1a-409d-9bfd-84c479fcdd47))
  1883. (pin "2" (uuid 279c0554-c28c-4e4b-8a1e-6fa0067a908f))
  1884. (pin "3" (uuid 5446c661-d40f-4e6f-88dc-22bf6648703d))
  1885. (pin "4" (uuid d663539d-f951-4f81-be82-85fa75a6c842))
  1886. (pin "5" (uuid 53356d6a-3a0d-45f4-b54d-81a20427a866))
  1887. )
  1888. (symbol (lib_id "conn:Jumper3") (at 85.09 166.37 180) (unit 1)
  1889. (in_bom yes) (on_board yes)
  1890. (uuid 00000000-0000-0000-0000-000061888849)
  1891. (property "Reference" "JP8" (id 0) (at 85.09 159.639 0))
  1892. (property "Value" "" (id 1) (at 85.09 161.9504 0))
  1893. (property "Footprint" "" (id 2) (at 85.09 166.37 0)
  1894. (effects (font (size 1.27 1.27)) hide)
  1895. )
  1896. (property "Datasheet" "" (id 3) (at 85.09 166.37 0)
  1897. (effects (font (size 1.27 1.27)) hide)
  1898. )
  1899. (pin "1" (uuid e2fd5a20-c897-428a-ab7d-02e84090947a))
  1900. (pin "2" (uuid 1d917051-bd87-4797-b31c-8f050d9bdeb0))
  1901. (pin "3" (uuid 8ef93eba-9bde-4a4d-8db6-d8bdac58675b))
  1902. )
  1903. (symbol (lib_id "conn:Jumper3") (at 115.57 165.1 180) (unit 1)
  1904. (in_bom yes) (on_board yes)
  1905. (uuid 00000000-0000-0000-0000-00006188884f)
  1906. (property "Reference" "JP11" (id 0) (at 115.57 158.369 0))
  1907. (property "Value" "" (id 1) (at 115.57 160.6804 0))
  1908. (property "Footprint" "" (id 2) (at 115.57 165.1 0)
  1909. (effects (font (size 1.27 1.27)) hide)
  1910. )
  1911. (property "Datasheet" "" (id 3) (at 115.57 165.1 0)
  1912. (effects (font (size 1.27 1.27)) hide)
  1913. )
  1914. (pin "1" (uuid 6c12f2b8-e0b9-4ed3-9f0f-f7d9231738ec))
  1915. (pin "2" (uuid 794d7436-e729-416a-990e-aad16c486850))
  1916. (pin "3" (uuid 5f3e8a5a-6727-49a5-a1c6-b3e6b29d6eef))
  1917. )
  1918. (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 99.06 185.42 270) (unit 1)
  1919. (in_bom yes) (on_board yes)
  1920. (uuid 00000000-0000-0000-0000-0000618897a8)
  1921. (property "Reference" "K6" (id 0) (at 99.06 173.0502 90)
  1922. (effects (font (size 1.524 1.524)))
  1923. )
  1924. (property "Value" "" (id 1) (at 99.06 175.7426 90)
  1925. (effects (font (size 1.524 1.524)))
  1926. )
  1927. (property "Footprint" "" (id 2) (at 99.06 184.15 0)
  1928. (effects (font (size 1.524 1.524)) hide)
  1929. )
  1930. (property "Datasheet" "" (id 3) (at 99.06 184.15 0)
  1931. (effects (font (size 1.524 1.524)) hide)
  1932. )
  1933. (pin "1" (uuid 4a55a32f-4baa-4ef7-b2cd-83a3ce1f814d))
  1934. (pin "2" (uuid 8bba4719-a549-4df4-ae22-df29549810d6))
  1935. (pin "3" (uuid e2ed4497-8004-49df-8d57-5786dccdc78f))
  1936. (pin "4" (uuid f3b6f6bb-346c-4a33-8389-3b68dfe5e395))
  1937. (pin "5" (uuid 6296943c-c314-4f64-aff8-cdf862919a0c))
  1938. )
  1939. (symbol (lib_id "conn:Jumper3") (at 85.09 190.5 180) (unit 1)
  1940. (in_bom yes) (on_board yes)
  1941. (uuid 00000000-0000-0000-0000-0000618897ae)
  1942. (property "Reference" "JP9" (id 0) (at 85.09 183.769 0))
  1943. (property "Value" "" (id 1) (at 85.09 186.0804 0))
  1944. (property "Footprint" "" (id 2) (at 85.09 190.5 0)
  1945. (effects (font (size 1.27 1.27)) hide)
  1946. )
  1947. (property "Datasheet" "" (id 3) (at 85.09 190.5 0)
  1948. (effects (font (size 1.27 1.27)) hide)
  1949. )
  1950. (pin "1" (uuid e28bce97-1d2e-482f-a6d5-9274a01646e3))
  1951. (pin "2" (uuid 6c1e8aa3-f02b-43b4-889f-96ac22a34521))
  1952. (pin "3" (uuid 85583640-979a-4443-b4fa-c0e8e8f8f306))
  1953. )
  1954. (symbol (lib_id "conn:Jumper3") (at 115.57 189.23 180) (unit 1)
  1955. (in_bom yes) (on_board yes)
  1956. (uuid 00000000-0000-0000-0000-0000618897b4)
  1957. (property "Reference" "JP12" (id 0) (at 115.57 182.499 0))
  1958. (property "Value" "" (id 1) (at 115.57 184.8104 0))
  1959. (property "Footprint" "" (id 2) (at 115.57 189.23 0)
  1960. (effects (font (size 1.27 1.27)) hide)
  1961. )
  1962. (property "Datasheet" "" (id 3) (at 115.57 189.23 0)
  1963. (effects (font (size 1.27 1.27)) hide)
  1964. )
  1965. (pin "1" (uuid c7e3f6d7-6ac4-41f8-94dc-41a330d3da50))
  1966. (pin "2" (uuid e1d7c086-b385-446f-a60c-62ce73bf31e2))
  1967. (pin "3" (uuid 55311644-0d08-4a5f-b5dc-bf36166a582e))
  1968. )
  1969. (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 36.83 138.43 270) (unit 1)
  1970. (in_bom yes) (on_board yes)
  1971. (uuid 00000000-0000-0000-0000-000061890ede)
  1972. (property "Reference" "K1" (id 0) (at 36.83 126.0602 90)
  1973. (effects (font (size 1.524 1.524)))
  1974. )
  1975. (property "Value" "" (id 1) (at 36.83 128.7526 90)
  1976. (effects (font (size 1.524 1.524)))
  1977. )
  1978. (property "Footprint" "" (id 2) (at 36.83 137.16 0)
  1979. (effects (font (size 1.524 1.524)) hide)
  1980. )
  1981. (property "Datasheet" "" (id 3) (at 36.83 137.16 0)
  1982. (effects (font (size 1.524 1.524)) hide)
  1983. )
  1984. (pin "1" (uuid f5d57253-aa0f-41cc-b7f3-3486dc7d553c))
  1985. (pin "2" (uuid 52a0d4b1-f57a-402c-b5fc-69635f32e129))
  1986. (pin "3" (uuid cae4100b-18f6-497c-8c5d-8e52b3a4bb08))
  1987. (pin "4" (uuid fae29d7b-6836-44ab-918e-b592fee5518f))
  1988. (pin "5" (uuid c80caea5-edf1-4ec4-a416-68710dcf6937))
  1989. )
  1990. (symbol (lib_id "conn:Jumper3") (at 22.86 143.51 180) (unit 1)
  1991. (in_bom yes) (on_board yes)
  1992. (uuid 00000000-0000-0000-0000-000061890ee4)
  1993. (property "Reference" "JP1" (id 0) (at 22.86 136.779 0))
  1994. (property "Value" "" (id 1) (at 22.86 139.0904 0))
  1995. (property "Footprint" "" (id 2) (at 22.86 143.51 0)
  1996. (effects (font (size 1.27 1.27)) hide)
  1997. )
  1998. (property "Datasheet" "" (id 3) (at 22.86 143.51 0)
  1999. (effects (font (size 1.27 1.27)) hide)
  2000. )
  2001. (pin "1" (uuid a6450e66-4719-474d-94be-c7d37b426880))
  2002. (pin "2" (uuid 2d23d341-c9b3-42ed-a3c7-933c4c40f380))
  2003. (pin "3" (uuid 74fa655e-a292-4a0f-b6fc-489be3138e30))
  2004. )
  2005. (symbol (lib_id "conn:Jumper3") (at 53.34 142.24 180) (unit 1)
  2006. (in_bom yes) (on_board yes)
  2007. (uuid 00000000-0000-0000-0000-000061890eea)
  2008. (property "Reference" "JP4" (id 0) (at 53.34 135.509 0))
  2009. (property "Value" "" (id 1) (at 53.34 137.8204 0))
  2010. (property "Footprint" "" (id 2) (at 53.34 142.24 0)
  2011. (effects (font (size 1.27 1.27)) hide)
  2012. )
  2013. (property "Datasheet" "" (id 3) (at 53.34 142.24 0)
  2014. (effects (font (size 1.27 1.27)) hide)
  2015. )
  2016. (pin "1" (uuid 889eb089-c12b-492a-b188-40bc9e87969e))
  2017. (pin "2" (uuid 56540b76-8222-4f5f-b077-f651c3616108))
  2018. (pin "3" (uuid 032eb27d-6d63-404b-b847-95c4cddf6e19))
  2019. )
  2020. (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 36.83 161.29 270) (unit 1)
  2021. (in_bom yes) (on_board yes)
  2022. (uuid 00000000-0000-0000-0000-000061890ef6)
  2023. (property "Reference" "K2" (id 0) (at 36.83 148.9202 90)
  2024. (effects (font (size 1.524 1.524)))
  2025. )
  2026. (property "Value" "" (id 1) (at 36.83 151.6126 90)
  2027. (effects (font (size 1.524 1.524)))
  2028. )
  2029. (property "Footprint" "" (id 2) (at 36.83 160.02 0)
  2030. (effects (font (size 1.524 1.524)) hide)
  2031. )
  2032. (property "Datasheet" "" (id 3) (at 36.83 160.02 0)
  2033. (effects (font (size 1.524 1.524)) hide)
  2034. )
  2035. (pin "1" (uuid bcb31922-4a69-4dbc-93dd-f8e79e53bc99))
  2036. (pin "2" (uuid 42ecd0e9-adf7-44bd-bd11-ea0bc56add1a))
  2037. (pin "3" (uuid ab223fcb-816c-4c6f-a284-57e2fc275758))
  2038. (pin "4" (uuid bf222c0a-5926-4757-8e10-228fccaa9ef5))
  2039. (pin "5" (uuid 9b34205f-7ff8-4c16-b79d-aedfb4653f2c))
  2040. )
  2041. (symbol (lib_id "conn:Jumper3") (at 22.86 166.37 180) (unit 1)
  2042. (in_bom yes) (on_board yes)
  2043. (uuid 00000000-0000-0000-0000-000061890efc)
  2044. (property "Reference" "JP2" (id 0) (at 22.86 159.639 0))
  2045. (property "Value" "" (id 1) (at 22.86 161.9504 0))
  2046. (property "Footprint" "" (id 2) (at 22.86 166.37 0)
  2047. (effects (font (size 1.27 1.27)) hide)
  2048. )
  2049. (property "Datasheet" "" (id 3) (at 22.86 166.37 0)
  2050. (effects (font (size 1.27 1.27)) hide)
  2051. )
  2052. (pin "1" (uuid 6796d1b5-10a2-42a0-a9c0-683bd13798b7))
  2053. (pin "2" (uuid f95a38c1-d900-4e19-8454-b03d906df3c5))
  2054. (pin "3" (uuid 5f121c8a-89d4-4050-a803-5ab44d10151f))
  2055. )
  2056. (symbol (lib_id "conn:Jumper3") (at 53.34 165.1 180) (unit 1)
  2057. (in_bom yes) (on_board yes)
  2058. (uuid 00000000-0000-0000-0000-000061890f02)
  2059. (property "Reference" "JP5" (id 0) (at 53.34 158.369 0))
  2060. (property "Value" "" (id 1) (at 53.34 160.6804 0))
  2061. (property "Footprint" "" (id 2) (at 53.34 165.1 0)
  2062. (effects (font (size 1.27 1.27)) hide)
  2063. )
  2064. (property "Datasheet" "" (id 3) (at 53.34 165.1 0)
  2065. (effects (font (size 1.27 1.27)) hide)
  2066. )
  2067. (pin "1" (uuid 0c993658-b496-476f-845a-1275b2fb5e44))
  2068. (pin "2" (uuid ed9ad881-64e0-4495-8bf4-75fa678e7242))
  2069. (pin "3" (uuid 9a51e2a1-798a-4988-9150-e4ed140bf41f))
  2070. )
  2071. (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 36.83 185.42 270) (unit 1)
  2072. (in_bom yes) (on_board yes)
  2073. (uuid 00000000-0000-0000-0000-000061890f0e)
  2074. (property "Reference" "K3" (id 0) (at 36.83 173.0502 90)
  2075. (effects (font (size 1.524 1.524)))
  2076. )
  2077. (property "Value" "" (id 1) (at 36.83 175.7426 90)
  2078. (effects (font (size 1.524 1.524)))
  2079. )
  2080. (property "Footprint" "" (id 2) (at 36.83 184.15 0)
  2081. (effects (font (size 1.524 1.524)) hide)
  2082. )
  2083. (property "Datasheet" "" (id 3) (at 36.83 184.15 0)
  2084. (effects (font (size 1.524 1.524)) hide)
  2085. )
  2086. (pin "1" (uuid 67dc0315-cae0-401a-9cce-09b3260036a5))
  2087. (pin "2" (uuid 8c0b6a47-0493-44df-a67b-54e7a9187ecb))
  2088. (pin "3" (uuid 86816ea0-4629-4d68-a359-5a37aa527e2c))
  2089. (pin "4" (uuid fca0e4c9-9676-4b59-b947-a2abf4de63e5))
  2090. (pin "5" (uuid 865c9782-7b26-458e-8438-ffcf16b19635))
  2091. )
  2092. (symbol (lib_id "conn:Jumper3") (at 22.86 190.5 180) (unit 1)
  2093. (in_bom yes) (on_board yes)
  2094. (uuid 00000000-0000-0000-0000-000061890f14)
  2095. (property "Reference" "JP3" (id 0) (at 22.86 183.769 0))
  2096. (property "Value" "" (id 1) (at 22.86 186.0804 0))
  2097. (property "Footprint" "" (id 2) (at 22.86 190.5 0)
  2098. (effects (font (size 1.27 1.27)) hide)
  2099. )
  2100. (property "Datasheet" "" (id 3) (at 22.86 190.5 0)
  2101. (effects (font (size 1.27 1.27)) hide)
  2102. )
  2103. (pin "1" (uuid fda0aecd-1460-41cb-af8d-b2c02589f200))
  2104. (pin "2" (uuid e90ba1b6-c433-481a-9561-7e33308f250e))
  2105. (pin "3" (uuid 113ae371-3304-40ef-9740-8c1085275ee3))
  2106. )
  2107. (symbol (lib_id "conn:Jumper3") (at 53.34 189.23 180) (unit 1)
  2108. (in_bom yes) (on_board yes)
  2109. (uuid 00000000-0000-0000-0000-000061890f1a)
  2110. (property "Reference" "JP6" (id 0) (at 53.34 182.499 0))
  2111. (property "Value" "" (id 1) (at 53.34 184.8104 0))
  2112. (property "Footprint" "" (id 2) (at 53.34 189.23 0)
  2113. (effects (font (size 1.27 1.27)) hide)
  2114. )
  2115. (property "Datasheet" "" (id 3) (at 53.34 189.23 0)
  2116. (effects (font (size 1.27 1.27)) hide)
  2117. )
  2118. (pin "1" (uuid e8601d96-54ed-49cb-b067-6f14af095c26))
  2119. (pin "2" (uuid c044437f-081a-4239-acbc-bb76b560c957))
  2120. (pin "3" (uuid 10b22e28-8b74-4183-905a-d7322d441f54))
  2121. )
  2122. (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 99.06 138.43 270) (unit 1)
  2123. (in_bom yes) (on_board yes)
  2124. (uuid 00000000-0000-0000-0000-00006189a34c)
  2125. (property "Reference" "K4" (id 0) (at 99.06 126.0602 90)
  2126. (effects (font (size 1.524 1.524)))
  2127. )
  2128. (property "Value" "" (id 1) (at 99.06 128.7526 90)
  2129. (effects (font (size 1.524 1.524)))
  2130. )
  2131. (property "Footprint" "" (id 2) (at 99.06 137.16 0)
  2132. (effects (font (size 1.524 1.524)) hide)
  2133. )
  2134. (property "Datasheet" "" (id 3) (at 99.06 137.16 0)
  2135. (effects (font (size 1.524 1.524)) hide)
  2136. )
  2137. (pin "1" (uuid fe8d3283-ffea-4b06-8db5-d7b93b29186c))
  2138. (pin "2" (uuid 4fec3aaf-a402-4f77-a3a7-fa71953a8768))
  2139. (pin "3" (uuid 4b9fcd16-c8d5-486b-b333-e4aee50d4b39))
  2140. (pin "4" (uuid 5ffba441-e620-4ca8-ba29-40cb54c706dc))
  2141. (pin "5" (uuid 93ec0a94-8dfe-48ea-9bc9-400a010165ec))
  2142. )
  2143. (symbol (lib_id "TI:ULN2803A") (at 60.96 100.33 0) (unit 1)
  2144. (in_bom yes) (on_board yes)
  2145. (uuid 00000000-0000-0000-0000-00006189e6b2)
  2146. (property "Reference" "U1" (id 0) (at 64.77 113.03 0)
  2147. (effects (font (size 1.524 1.524)) (justify left))
  2148. )
  2149. (property "Value" "" (id 1) (at 54.61 87.63 0)
  2150. (effects (font (size 1.524 1.524)) (justify left))
  2151. )
  2152. (property "Footprint" "" (id 2) (at 67.31 99.06 0)
  2153. (effects (font (size 1.524 1.524)) hide)
  2154. )
  2155. (property "Datasheet" "" (id 3) (at 67.31 99.06 0)
  2156. (effects (font (size 1.524 1.524)) hide)
  2157. )
  2158. (pin "1" (uuid 499afab4-e7c0-4cc3-a455-e733103ef5c4))
  2159. (pin "10" (uuid e1050755-aa25-4559-aa8d-94c281d18b72))
  2160. (pin "11" (uuid aa2a1b5e-b453-46c3-85cb-93e5f7dc3712))
  2161. (pin "12" (uuid 09a0b84e-cf7c-4730-a4d6-c852c9edc7c7))
  2162. (pin "13" (uuid bf546a98-bbad-4ad3-b469-4da707fe3191))
  2163. (pin "14" (uuid b38a1427-ae54-41b1-8775-852d9c06fb3e))
  2164. (pin "15" (uuid 710804d8-ada1-4d3f-bd1b-15eb4a0966ee))
  2165. (pin "16" (uuid a31909dc-e2d5-4330-8634-80490cc2f887))
  2166. (pin "17" (uuid 3d6f5816-3372-4df5-8f7c-fbd392513709))
  2167. (pin "18" (uuid 8150d847-09d2-4482-8119-26b6ec12b0c0))
  2168. (pin "2" (uuid be01c234-1446-4cba-944d-1f2504145985))
  2169. (pin "3" (uuid ba7f4a99-9e85-4da9-a215-a7afc1d0c8ed))
  2170. (pin "4" (uuid 1f2ea4a5-81c5-4c0e-a683-c8ef793736ad))
  2171. (pin "5" (uuid 16a4ee8f-73f4-47d1-95f5-83d5545a3774))
  2172. (pin "6" (uuid 102c79ef-b5d7-4b49-8ea8-6ae9263e50fd))
  2173. (pin "7" (uuid aa1bf6df-0b0f-42f4-8205-5a1b4f932953))
  2174. (pin "8" (uuid dfff6172-ca95-4484-91f9-6c76b81ff0d7))
  2175. (pin "9" (uuid df177bad-cd84-4ef7-ba6f-eac8dd2b1f1d))
  2176. )
  2177. (symbol (lib_id "global:N_MOSFET") (at 86.36 48.26 90) (unit 1)
  2178. (in_bom yes) (on_board yes)
  2179. (uuid 00000000-0000-0000-0000-0000618ac2a8)
  2180. (property "Reference" "Q5" (id 0) (at 81.28 44.45 90)
  2181. (effects (font (size 1.524 1.524)) (justify right))
  2182. )
  2183. (property "Value" "" (id 1) (at 91.44 41.91 0)
  2184. (effects (font (size 1.524 1.524)) (justify right))
  2185. )
  2186. (property "Footprint" "" (id 2) (at 86.36 48.26 0)
  2187. (effects (font (size 1.524 1.524)) hide)
  2188. )
  2189. (property "Datasheet" "" (id 3) (at 86.36 48.26 0)
  2190. (effects (font (size 1.524 1.524)) hide)
  2191. )
  2192. (pin "1" (uuid 31c5a616-46a6-46ee-a925-17b8506973c8))
  2193. (pin "2" (uuid 20575827-8370-45af-9c62-ffe2cf61e09d))
  2194. (pin "3" (uuid b635fc33-94ea-4cbf-ac14-0176818589eb))
  2195. )
  2196. (symbol (lib_id "conn:Jumper3") (at 85.09 143.51 180) (unit 1)
  2197. (in_bom yes) (on_board yes)
  2198. (uuid 00000000-0000-0000-0000-0000618acf55)
  2199. (property "Reference" "JP7" (id 0) (at 85.09 136.779 0))
  2200. (property "Value" "" (id 1) (at 85.09 139.0904 0))
  2201. (property "Footprint" "" (id 2) (at 85.09 143.51 0)
  2202. (effects (font (size 1.27 1.27)) hide)
  2203. )
  2204. (property "Datasheet" "" (id 3) (at 85.09 143.51 0)
  2205. (effects (font (size 1.27 1.27)) hide)
  2206. )
  2207. (pin "1" (uuid 060aea7e-84d7-4356-bf8c-c2449211a8f2))
  2208. (pin "2" (uuid 72704ff1-0bf3-4bc7-9651-51c045e1656e))
  2209. (pin "3" (uuid b7c148c7-a9f9-4b98-ab4e-5ed646c6cb48))
  2210. )
  2211. (symbol (lib_id "global:R") (at 67.31 52.07 0) (unit 1)
  2212. (in_bom yes) (on_board yes)
  2213. (uuid 00000000-0000-0000-0000-0000618ae1a3)
  2214. (property "Reference" "R8" (id 0) (at 68.58 52.07 0)
  2215. (effects (font (size 1.27 1.27)) (justify left))
  2216. )
  2217. (property "Value" "" (id 1) (at 67.31 53.34 90)
  2218. (effects (font (size 1.27 1.27)) (justify left))
  2219. )
  2220. (property "Footprint" "" (id 2) (at 65.532 52.07 90))
  2221. (property "Datasheet" "" (id 3) (at 67.31 52.07 0))
  2222. (pin "1" (uuid d35066e9-f24f-4af0-b600-9c178ac29fed))
  2223. (pin "2" (uuid 8a5e4b0a-2b5e-4e6a-96ab-bb4a3015947a))
  2224. )
  2225. (symbol (lib_id "global:R") (at 73.66 48.26 270) (unit 1)
  2226. (in_bom yes) (on_board yes)
  2227. (uuid 00000000-0000-0000-0000-0000618aeb3a)
  2228. (property "Reference" "R11" (id 0) (at 73.66 45.72 90))
  2229. (property "Value" "" (id 1) (at 73.66 48.26 90))
  2230. (property "Footprint" "" (id 2) (at 73.66 46.482 90))
  2231. (property "Datasheet" "" (id 3) (at 73.66 48.26 0))
  2232. (pin "1" (uuid 53f9e25f-9d47-4840-a527-8a95c2fdd1e1))
  2233. (pin "2" (uuid f429670a-d82e-4f86-b8a1-67629d5ec034))
  2234. )
  2235. (symbol (lib_id "conn:Jumper3") (at 115.57 142.24 180) (unit 1)
  2236. (in_bom yes) (on_board yes)
  2237. (uuid 00000000-0000-0000-0000-0000618afc91)
  2238. (property "Reference" "JP10" (id 0) (at 115.57 135.509 0))
  2239. (property "Value" "" (id 1) (at 115.57 137.8204 0))
  2240. (property "Footprint" "" (id 2) (at 115.57 142.24 0)
  2241. (effects (font (size 1.27 1.27)) hide)
  2242. )
  2243. (property "Datasheet" "" (id 3) (at 115.57 142.24 0)
  2244. (effects (font (size 1.27 1.27)) hide)
  2245. )
  2246. (pin "1" (uuid 4bd833fc-c5e8-4f29-8c3b-e745bf675af6))
  2247. (pin "2" (uuid 78f32f9b-d329-4542-8a4d-85e431abd44a))
  2248. (pin "3" (uuid d40c7e39-aee1-4f1f-bc7c-93be908665d2))
  2249. )
  2250. (symbol (lib_id "global:N_MOSFET") (at 86.36 26.67 90) (unit 1)
  2251. (in_bom yes) (on_board yes)
  2252. (uuid 00000000-0000-0000-0000-0000618c05f9)
  2253. (property "Reference" "Q4" (id 0) (at 81.28 22.86 90)
  2254. (effects (font (size 1.524 1.524)) (justify right))
  2255. )
  2256. (property "Value" "" (id 1) (at 91.44 21.59 0)
  2257. (effects (font (size 1.524 1.524)) (justify right))
  2258. )
  2259. (property "Footprint" "" (id 2) (at 86.36 26.67 0)
  2260. (effects (font (size 1.524 1.524)) hide)
  2261. )
  2262. (property "Datasheet" "" (id 3) (at 86.36 26.67 0)
  2263. (effects (font (size 1.524 1.524)) hide)
  2264. )
  2265. (pin "1" (uuid 880702c0-3feb-41b9-a09d-06bf7bb5ae79))
  2266. (pin "2" (uuid 0d38ea71-aa7f-4199-a051-15e2054af4b5))
  2267. (pin "3" (uuid 718ca496-aad8-4c7f-95dd-227359b1bfa5))
  2268. )
  2269. (symbol (lib_id "global:R") (at 67.31 30.48 0) (unit 1)
  2270. (in_bom yes) (on_board yes)
  2271. (uuid 00000000-0000-0000-0000-0000618c05ff)
  2272. (property "Reference" "R7" (id 0) (at 68.58 30.48 0)
  2273. (effects (font (size 1.27 1.27)) (justify left))
  2274. )
  2275. (property "Value" "" (id 1) (at 67.31 31.75 90)
  2276. (effects (font (size 1.27 1.27)) (justify left))
  2277. )
  2278. (property "Footprint" "" (id 2) (at 65.532 30.48 90))
  2279. (property "Datasheet" "" (id 3) (at 67.31 30.48 0))
  2280. (pin "1" (uuid 17259a1c-6377-42b9-8712-525e5ae97762))
  2281. (pin "2" (uuid ed621122-fc71-49e6-96b0-3b76c5740c08))
  2282. )
  2283. (symbol (lib_id "global:R") (at 73.66 26.67 270) (unit 1)
  2284. (in_bom yes) (on_board yes)
  2285. (uuid 00000000-0000-0000-0000-0000618c0605)
  2286. (property "Reference" "R10" (id 0) (at 73.66 24.13 90))
  2287. (property "Value" "" (id 1) (at 73.66 26.67 90))
  2288. (property "Footprint" "" (id 2) (at 73.66 24.892 90))
  2289. (property "Datasheet" "" (id 3) (at 73.66 26.67 0))
  2290. (pin "1" (uuid 81b8ad97-eca7-4b2a-83a9-7e9d00c0f9c4))
  2291. (pin "2" (uuid 36ec30cd-419f-4f85-8213-cbacaf1cc411))
  2292. )
  2293. (symbol (lib_id "global:N_MOSFET") (at 86.36 69.85 90) (unit 1)
  2294. (in_bom yes) (on_board yes)
  2295. (uuid 00000000-0000-0000-0000-0000618c73aa)
  2296. (property "Reference" "Q6" (id 0) (at 81.28 66.04 90)
  2297. (effects (font (size 1.524 1.524)) (justify right))
  2298. )
  2299. (property "Value" "" (id 1) (at 91.44 64.77 0)
  2300. (effects (font (size 1.524 1.524)) (justify right))
  2301. )
  2302. (property "Footprint" "" (id 2) (at 86.36 69.85 0)
  2303. (effects (font (size 1.524 1.524)) hide)
  2304. )
  2305. (property "Datasheet" "" (id 3) (at 86.36 69.85 0)
  2306. (effects (font (size 1.524 1.524)) hide)
  2307. )
  2308. (pin "1" (uuid e391fd80-e88f-4d07-9dbc-5ac68c50fa9a))
  2309. (pin "2" (uuid 60461f33-cd47-4677-8d1c-c48b984d361f))
  2310. (pin "3" (uuid 3e9d659e-aa52-4ef2-97b7-959b3d12dd2b))
  2311. )
  2312. (symbol (lib_id "global:R") (at 67.31 73.66 0) (unit 1)
  2313. (in_bom yes) (on_board yes)
  2314. (uuid 00000000-0000-0000-0000-0000618c73b0)
  2315. (property "Reference" "R9" (id 0) (at 68.58 73.66 0)
  2316. (effects (font (size 1.27 1.27)) (justify left))
  2317. )
  2318. (property "Value" "" (id 1) (at 67.31 74.93 90)
  2319. (effects (font (size 1.27 1.27)) (justify left))
  2320. )
  2321. (property "Footprint" "" (id 2) (at 65.532 73.66 90))
  2322. (property "Datasheet" "" (id 3) (at 67.31 73.66 0))
  2323. (pin "1" (uuid cb4d1717-a003-41f8-9dbf-efadd962a3c6))
  2324. (pin "2" (uuid 3331f662-1137-44ce-b77d-b2c5c824fd7f))
  2325. )
  2326. (symbol (lib_id "global:R") (at 73.66 69.85 270) (unit 1)
  2327. (in_bom yes) (on_board yes)
  2328. (uuid 00000000-0000-0000-0000-0000618c73b6)
  2329. (property "Reference" "R12" (id 0) (at 73.66 67.31 90))
  2330. (property "Value" "" (id 1) (at 73.66 69.85 90))
  2331. (property "Footprint" "" (id 2) (at 73.66 68.072 90))
  2332. (property "Datasheet" "" (id 3) (at 73.66 69.85 0))
  2333. (pin "1" (uuid 9fcd1407-1a1a-4ecd-adb9-105d5596e625))
  2334. (pin "2" (uuid 3e42da89-be1f-4e33-abb1-3a27d0919572))
  2335. )
  2336. (symbol (lib_id "global:N_MOSFET") (at 46.99 46.99 90) (unit 1)
  2337. (in_bom yes) (on_board yes)
  2338. (uuid 00000000-0000-0000-0000-0000618cd9a3)
  2339. (property "Reference" "Q2" (id 0) (at 41.91 43.18 90)
  2340. (effects (font (size 1.524 1.524)) (justify right))
  2341. )
  2342. (property "Value" "" (id 1) (at 52.07 41.91 0)
  2343. (effects (font (size 1.524 1.524)) (justify right))
  2344. )
  2345. (property "Footprint" "" (id 2) (at 46.99 46.99 0)
  2346. (effects (font (size 1.524 1.524)) hide)
  2347. )
  2348. (property "Datasheet" "" (id 3) (at 46.99 46.99 0)
  2349. (effects (font (size 1.524 1.524)) hide)
  2350. )
  2351. (pin "1" (uuid 009a52e1-ed54-4b69-8649-55d24dab41a6))
  2352. (pin "2" (uuid 02334576-2215-459d-b9cb-4ec2f3e9382d))
  2353. (pin "3" (uuid b5f737a3-d68c-4fd5-abd3-770592048c5f))
  2354. )
  2355. (symbol (lib_id "global:R") (at 27.94 50.8 0) (unit 1)
  2356. (in_bom yes) (on_board yes)
  2357. (uuid 00000000-0000-0000-0000-0000618cd9a9)
  2358. (property "Reference" "R2" (id 0) (at 29.21 50.8 0)
  2359. (effects (font (size 1.27 1.27)) (justify left))
  2360. )
  2361. (property "Value" "" (id 1) (at 27.94 52.07 90)
  2362. (effects (font (size 1.27 1.27)) (justify left))
  2363. )
  2364. (property "Footprint" "" (id 2) (at 26.162 50.8 90))
  2365. (property "Datasheet" "" (id 3) (at 27.94 50.8 0))
  2366. (pin "1" (uuid 6d5e45c4-b48f-4836-bec7-a26e6fd97dfb))
  2367. (pin "2" (uuid 2ae1a050-7a38-426c-84f1-b38707a7a5f1))
  2368. )
  2369. (symbol (lib_id "global:R") (at 34.29 46.99 270) (unit 1)
  2370. (in_bom yes) (on_board yes)
  2371. (uuid 00000000-0000-0000-0000-0000618cd9af)
  2372. (property "Reference" "R5" (id 0) (at 34.29 44.45 90))
  2373. (property "Value" "" (id 1) (at 34.29 46.99 90))
  2374. (property "Footprint" "" (id 2) (at 34.29 45.212 90))
  2375. (property "Datasheet" "" (id 3) (at 34.29 46.99 0))
  2376. (pin "1" (uuid cb955ba1-1fab-46cd-86b1-b0a727e77362))
  2377. (pin "2" (uuid a690645f-1208-446c-976e-3e108cb7220b))
  2378. )
  2379. (symbol (lib_id "global:N_MOSFET") (at 46.99 25.4 90) (unit 1)
  2380. (in_bom yes) (on_board yes)
  2381. (uuid 00000000-0000-0000-0000-0000618cd9b9)
  2382. (property "Reference" "Q1" (id 0) (at 41.91 21.59 90)
  2383. (effects (font (size 1.524 1.524)) (justify right))
  2384. )
  2385. (property "Value" "" (id 1) (at 52.07 20.32 0)
  2386. (effects (font (size 1.524 1.524)) (justify right))
  2387. )
  2388. (property "Footprint" "" (id 2) (at 46.99 25.4 0)
  2389. (effects (font (size 1.524 1.524)) hide)
  2390. )
  2391. (property "Datasheet" "" (id 3) (at 46.99 25.4 0)
  2392. (effects (font (size 1.524 1.524)) hide)
  2393. )
  2394. (pin "1" (uuid c95afaf5-633c-42c8-981a-dbfaba96d551))
  2395. (pin "2" (uuid dbd97b0b-0553-4148-9406-27244e6e36a2))
  2396. (pin "3" (uuid 5ac16a98-cc7a-4d91-a0cb-c4da6b00ee03))
  2397. )
  2398. (symbol (lib_id "global:R") (at 27.94 29.21 0) (unit 1)
  2399. (in_bom yes) (on_board yes)
  2400. (uuid 00000000-0000-0000-0000-0000618cd9bf)
  2401. (property "Reference" "R1" (id 0) (at 29.21 29.21 0)
  2402. (effects (font (size 1.27 1.27)) (justify left))
  2403. )
  2404. (property "Value" "" (id 1) (at 27.94 30.48 90)
  2405. (effects (font (size 1.27 1.27)) (justify left))
  2406. )
  2407. (property "Footprint" "" (id 2) (at 26.162 29.21 90))
  2408. (property "Datasheet" "" (id 3) (at 27.94 29.21 0))
  2409. (pin "1" (uuid d01b455c-292a-479b-ad35-a30bb6d76ab2))
  2410. (pin "2" (uuid fdfbc867-024b-48fc-981d-9b8d98547f2c))
  2411. )
  2412. (symbol (lib_id "global:R") (at 34.29 25.4 270) (unit 1)
  2413. (in_bom yes) (on_board yes)
  2414. (uuid 00000000-0000-0000-0000-0000618cd9c5)
  2415. (property "Reference" "R4" (id 0) (at 34.29 22.86 90))
  2416. (property "Value" "" (id 1) (at 34.29 25.4 90))
  2417. (property "Footprint" "" (id 2) (at 34.29 23.622 90))
  2418. (property "Datasheet" "" (id 3) (at 34.29 25.4 0))
  2419. (pin "1" (uuid 5a7df7cf-4e0a-43e9-b845-4da25b15be7f))
  2420. (pin "2" (uuid 35da1fed-83b0-4c17-82d5-65d07c973a86))
  2421. )
  2422. (symbol (lib_id "global:N_MOSFET") (at 46.99 68.58 90) (unit 1)
  2423. (in_bom yes) (on_board yes)
  2424. (uuid 00000000-0000-0000-0000-0000618cd9cf)
  2425. (property "Reference" "Q3" (id 0) (at 43.18 64.77 90)
  2426. (effects (font (size 1.524 1.524)) (justify right))
  2427. )
  2428. (property "Value" "" (id 1) (at 52.07 63.5 0)
  2429. (effects (font (size 1.524 1.524)) (justify right))
  2430. )
  2431. (property "Footprint" "" (id 2) (at 46.99 68.58 0)
  2432. (effects (font (size 1.524 1.524)) hide)
  2433. )
  2434. (property "Datasheet" "" (id 3) (at 46.99 68.58 0)
  2435. (effects (font (size 1.524 1.524)) hide)
  2436. )
  2437. (pin "1" (uuid 16beeb2c-1fdc-4644-90e2-c5899d16cc0e))
  2438. (pin "2" (uuid d9bd3f2c-d939-4838-b135-6a8dfa2377ae))
  2439. (pin "3" (uuid d0fa2f0b-7bd6-4fb7-91df-6552ab1c6912))
  2440. )
  2441. (symbol (lib_id "global:R") (at 27.94 72.39 0) (unit 1)
  2442. (in_bom yes) (on_board yes)
  2443. (uuid 00000000-0000-0000-0000-0000618cd9d5)
  2444. (property "Reference" "R3" (id 0) (at 29.21 72.39 0)
  2445. (effects (font (size 1.27 1.27)) (justify left))
  2446. )
  2447. (property "Value" "" (id 1) (at 27.94 73.66 90)
  2448. (effects (font (size 1.27 1.27)) (justify left))
  2449. )
  2450. (property "Footprint" "" (id 2) (at 26.162 72.39 90))
  2451. (property "Datasheet" "" (id 3) (at 27.94 72.39 0))
  2452. (pin "1" (uuid 59862f47-6c2b-4cad-81d5-bda95848fd41))
  2453. (pin "2" (uuid 3bcf5114-8317-4642-94ce-b804884fc638))
  2454. )
  2455. (symbol (lib_id "global:R") (at 34.29 68.58 270) (unit 1)
  2456. (in_bom yes) (on_board yes)
  2457. (uuid 00000000-0000-0000-0000-0000618cd9db)
  2458. (property "Reference" "R6" (id 0) (at 34.29 66.04 90))
  2459. (property "Value" "" (id 1) (at 34.29 68.58 90))
  2460. (property "Footprint" "" (id 2) (at 34.29 66.802 90))
  2461. (property "Datasheet" "" (id 3) (at 34.29 68.58 0))
  2462. (pin "1" (uuid b874779d-9c5f-419d-b8d5-3cd83b5d168f))
  2463. (pin "2" (uuid 7b1770b8-a0ca-4569-861b-758c609058d7))
  2464. )
  2465. (symbol (lib_id "global:R") (at 245.11 134.62 0) (unit 1)
  2466. (in_bom yes) (on_board yes)
  2467. (uuid 00000000-0000-0000-0000-000061931f64)
  2468. (property "Reference" "R13" (id 0) (at 246.38 134.62 0)
  2469. (effects (font (size 1.27 1.27)) (justify left))
  2470. )
  2471. (property "Value" "" (id 1) (at 245.11 135.89 90)
  2472. (effects (font (size 1.27 1.27)) (justify left))
  2473. )
  2474. (property "Footprint" "" (id 2) (at 243.332 134.62 90))
  2475. (property "Datasheet" "" (id 3) (at 245.11 134.62 0))
  2476. (pin "1" (uuid 3109ce6a-4a35-4eb4-8b53-b3a0285bc908))
  2477. (pin "2" (uuid da295362-2033-424f-8e5a-21761520775c))
  2478. )
  2479. (symbol (lib_id "global:C") (at 255.27 162.56 270) (unit 1)
  2480. (in_bom yes) (on_board yes)
  2481. (uuid 00000000-0000-0000-0000-000061945ae1)
  2482. (property "Reference" "C2" (id 0) (at 257.81 163.83 90))
  2483. (property "Value" "" (id 1) (at 251.46 160.02 90))
  2484. (property "Footprint" "" (id 2) (at 251.46 163.5252 0))
  2485. (property "Datasheet" "" (id 3) (at 255.27 162.56 0))
  2486. (pin "1" (uuid 6281d068-813d-4781-b99e-f1737e00145c))
  2487. (pin "2" (uuid 6df7d3aa-4adf-47e2-9c75-ec77554d737a))
  2488. )
  2489. (symbol (lib_id "global:C") (at 217.17 161.29 270) (unit 1)
  2490. (in_bom yes) (on_board yes)
  2491. (uuid 00000000-0000-0000-0000-000061947520)
  2492. (property "Reference" "C1" (id 0) (at 219.71 162.56 90))
  2493. (property "Value" "" (id 1) (at 213.36 158.75 90))
  2494. (property "Footprint" "" (id 2) (at 213.36 162.2552 0))
  2495. (property "Datasheet" "" (id 3) (at 217.17 161.29 0))
  2496. (pin "1" (uuid 380643ec-821d-4ade-8d9f-a991af481e6a))
  2497. (pin "2" (uuid ac02bf76-35cd-4e5e-890f-1194b3a624ea))
  2498. )
  2499. (symbol (lib_id "conn:CONN_01X06") (at 208.28 41.91 180) (unit 1)
  2500. (in_bom yes) (on_board yes)
  2501. (uuid 00000000-0000-0000-0000-00006198537e)
  2502. (property "Reference" "P8" (id 0) (at 208.28 33.02 0))
  2503. (property "Value" "" (id 1) (at 205.74 41.91 90))
  2504. (property "Footprint" "" (id 2) (at 208.28 41.91 0))
  2505. (property "Datasheet" "" (id 3) (at 208.28 41.91 0))
  2506. (pin "1" (uuid 043ff90d-b651-41d2-9672-a74446e40e55))
  2507. (pin "2" (uuid 3c39a57e-449f-42be-ad1f-7711f54ac3d2))
  2508. (pin "3" (uuid dccccabd-e874-4b3a-a967-8b4176877f1a))
  2509. (pin "4" (uuid a1450c60-c0b1-47ae-b5f0-7746be7c0f5d))
  2510. (pin "5" (uuid 327549f6-1863-4ec2-b9f5-3059bf57a8d8))
  2511. (pin "6" (uuid 53b999c7-f2e7-4ebd-8073-f76ffc2f2e63))
  2512. )
  2513. (symbol (lib_id "conn:CONN_01X06") (at 208.28 22.86 180) (unit 1)
  2514. (in_bom yes) (on_board yes)
  2515. (uuid 00000000-0000-0000-0000-000061985afb)
  2516. (property "Reference" "P7" (id 0) (at 208.28 13.97 0))
  2517. (property "Value" "" (id 1) (at 205.74 22.86 90))
  2518. (property "Footprint" "" (id 2) (at 208.28 22.86 0))
  2519. (property "Datasheet" "" (id 3) (at 208.28 22.86 0))
  2520. (pin "1" (uuid 3da074ab-dd64-41cf-948f-7c817e617de6))
  2521. (pin "2" (uuid 59750f01-fb3d-4c9a-9726-376671016648))
  2522. (pin "3" (uuid de951cfb-058f-49aa-a497-7d137c3c1e97))
  2523. (pin "4" (uuid 8f3af050-5c60-40c4-bcd4-333b16e0de9e))
  2524. (pin "5" (uuid ffc364b9-f6ae-48c4-81c5-dfd95fe4e0dd))
  2525. (pin "6" (uuid 872d5b47-02bf-497a-9ce2-e5ee8bd37376))
  2526. )
  2527. (symbol (lib_id "conn:CONN_01X06") (at 186.69 22.86 180) (unit 1)
  2528. (in_bom yes) (on_board yes)
  2529. (uuid 00000000-0000-0000-0000-0000619870bd)
  2530. (property "Reference" "P5" (id 0) (at 186.69 13.97 0))
  2531. (property "Value" "" (id 1) (at 184.15 22.86 90))
  2532. (property "Footprint" "" (id 2) (at 186.69 22.86 0))
  2533. (property "Datasheet" "" (id 3) (at 186.69 22.86 0))
  2534. (pin "1" (uuid c7d8f26b-9329-4b37-87a5-212c38ff0b15))
  2535. (pin "2" (uuid b1ecf4dc-dcc5-4af0-9f03-8b1f0bdf917e))
  2536. (pin "3" (uuid 89ecdbc3-de31-4fde-823c-b4db8556f283))
  2537. (pin "4" (uuid 754839c5-9d79-4eff-a4e2-a8d9a5463a02))
  2538. (pin "5" (uuid af489488-60f0-4c56-b705-698d3c15afb2))
  2539. (pin "6" (uuid a7826531-1a12-4be7-a78f-b9951505c366))
  2540. )
  2541. (symbol (lib_id "conn:CONN_01X03") (at 232.41 19.05 180) (unit 1)
  2542. (in_bom yes) (on_board yes)
  2543. (uuid 00000000-0000-0000-0000-0000619cd4b0)
  2544. (property "Reference" "P9" (id 0) (at 232.41 13.97 0))
  2545. (property "Value" "" (id 1) (at 229.87 19.05 90))
  2546. (property "Footprint" "" (id 2) (at 232.41 19.05 0))
  2547. (property "Datasheet" "" (id 3) (at 232.41 19.05 0))
  2548. (pin "1" (uuid c6bd4c8f-92f4-4f09-86f0-2e0bf7001ade))
  2549. (pin "2" (uuid f2fa4a10-31a1-4293-89cd-7083f3015353))
  2550. (pin "3" (uuid 65d0d1d3-e3d4-4870-8920-8e1b1030935d))
  2551. )
  2552. (symbol (lib_id "conn:CONN_01X03") (at 232.41 29.21 180) (unit 1)
  2553. (in_bom yes) (on_board yes)
  2554. (uuid 00000000-0000-0000-0000-0000619cd8ad)
  2555. (property "Reference" "P10" (id 0) (at 232.41 24.13 0))
  2556. (property "Value" "" (id 1) (at 229.87 29.21 90))
  2557. (property "Footprint" "" (id 2) (at 232.41 29.21 0))
  2558. (property "Datasheet" "" (id 3) (at 232.41 29.21 0))
  2559. (pin "1" (uuid ccf5055c-2558-4558-854d-9eeb4e9e04fe))
  2560. (pin "2" (uuid 0533dc97-db47-47fb-a2ac-1fb6f094e859))
  2561. (pin "3" (uuid 9c8e4886-43b2-46a4-998e-93dee91ed013))
  2562. )
  2563. (symbol (lib_id "conn:CONN_01X01") (at 151.765 193.04 0) (unit 1)
  2564. (in_bom yes) (on_board yes)
  2565. (uuid 00000000-0000-0000-0000-000061a13b5d)
  2566. (property "Reference" "P4" (id 0) (at 153.7462 191.9986 0)
  2567. (effects (font (size 1.27 1.27)) (justify left))
  2568. )
  2569. (property "Value" "" (id 1) (at 153.7462 194.31 0)
  2570. (effects (font (size 1.27 1.27)) (justify left))
  2571. )
  2572. (property "Footprint" "" (id 2) (at 151.765 193.04 0))
  2573. (property "Datasheet" "" (id 3) (at 151.765 193.04 0))
  2574. (pin "1" (uuid e74a3095-9a3e-4ad0-9da8-f7a7c1e6fd7c))
  2575. )
  2576. (symbol (lib_id "conn:CONN_01X01") (at 151.765 189.23 0) (unit 1)
  2577. (in_bom yes) (on_board yes)
  2578. (uuid 00000000-0000-0000-0000-000061a14682)
  2579. (property "Reference" "P3" (id 0) (at 153.7462 188.1886 0)
  2580. (effects (font (size 1.27 1.27)) (justify left))
  2581. )
  2582. (property "Value" "" (id 1) (at 153.7462 190.5 0)
  2583. (effects (font (size 1.27 1.27)) (justify left))
  2584. )
  2585. (property "Footprint" "" (id 2) (at 151.765 189.23 0))
  2586. (property "Datasheet" "" (id 3) (at 151.765 189.23 0))
  2587. (pin "1" (uuid e69dccf8-4d9b-47fb-b851-5459ffb828e0))
  2588. )
  2589. (symbol (lib_id "conn:CONN_01X01") (at 151.765 184.785 0) (unit 1)
  2590. (in_bom yes) (on_board yes)
  2591. (uuid 00000000-0000-0000-0000-000061a147ec)
  2592. (property "Reference" "P2" (id 0) (at 153.7462 183.7436 0)
  2593. (effects (font (size 1.27 1.27)) (justify left))
  2594. )
  2595. (property "Value" "" (id 1) (at 153.7462 186.055 0)
  2596. (effects (font (size 1.27 1.27)) (justify left))
  2597. )
  2598. (property "Footprint" "" (id 2) (at 151.765 184.785 0))
  2599. (property "Datasheet" "" (id 3) (at 151.765 184.785 0))
  2600. (pin "1" (uuid a12a8571-c941-44e6-9f3a-f18e97a05ad0))
  2601. )
  2602. (symbol (lib_id "conn:CONN_01X01") (at 151.765 180.34 0) (unit 1)
  2603. (in_bom yes) (on_board yes)
  2604. (uuid 00000000-0000-0000-0000-000061a1497b)
  2605. (property "Reference" "P1" (id 0) (at 153.7462 179.2986 0)
  2606. (effects (font (size 1.27 1.27)) (justify left))
  2607. )
  2608. (property "Value" "" (id 1) (at 153.7462 181.61 0)
  2609. (effects (font (size 1.27 1.27)) (justify left))
  2610. )
  2611. (property "Footprint" "" (id 2) (at 151.765 180.34 0))
  2612. (property "Datasheet" "" (id 3) (at 151.765 180.34 0))
  2613. (pin "1" (uuid e85ced41-8455-470f-a8b4-266fe3291a92))
  2614. )
  2615. (symbol (lib_id "conn:CONN_01X02") (at 261.62 17.78 180) (unit 1)
  2616. (in_bom yes) (on_board yes)
  2617. (uuid 00000000-0000-0000-0000-000061a71684)
  2618. (property "Reference" "P11" (id 0) (at 261.62 13.97 0))
  2619. (property "Value" "" (id 1) (at 259.08 17.78 90))
  2620. (property "Footprint" "" (id 2) (at 261.62 17.78 0))
  2621. (property "Datasheet" "" (id 3) (at 261.62 17.78 0))
  2622. (pin "1" (uuid 81f547da-a034-43ab-9a33-5c691a447add))
  2623. (pin "2" (uuid e1b32f08-19df-4132-bbb7-dc386dd75afd))
  2624. )
  2625. (symbol (lib_id "conn:CONN_01X02") (at 261.62 26.67 180) (unit 1)
  2626. (in_bom yes) (on_board yes)
  2627. (uuid 00000000-0000-0000-0000-000061a72580)
  2628. (property "Reference" "P12" (id 0) (at 261.62 22.86 0))
  2629. (property "Value" "" (id 1) (at 259.08 26.67 90))
  2630. (property "Footprint" "" (id 2) (at 261.62 26.67 0))
  2631. (property "Datasheet" "" (id 3) (at 261.62 26.67 0))
  2632. (pin "1" (uuid 7c926de1-8e6b-4cbe-8d79-96357e1f59ef))
  2633. (pin "2" (uuid 32fcf8f6-a7c6-4bb4-a210-0e63a9ce379f))
  2634. )
  2635. (sheet_instances
  2636. (path "/" (page "1"))
  2637. )
  2638. (symbol_instances
  2639. (path "/00000000-0000-0000-0000-000061947520"
  2640. (reference "C1") (unit 1) (value "100nF") (footprint "")
  2641. )
  2642. (path "/00000000-0000-0000-0000-000061945ae1"
  2643. (reference "C2") (unit 1) (value "100nF") (footprint "")
  2644. )
  2645. (path "/00000000-0000-0000-0000-000061085c90"
  2646. (reference "C15") (unit 1) (value "100nF") (footprint "C:3216-18")
  2647. )
  2648. (path "/00000000-0000-0000-0000-000061085c86"
  2649. (reference "C17") (unit 1) (value "10µF") (footprint "C:CP_CMS5X5.8")
  2650. )
  2651. (path "/00000000-0000-0000-0000-000061085cb4"
  2652. (reference "C19") (unit 1) (value "1µF") (footprint "C:CP_CMS4X5.8")
  2653. )
  2654. (path "/00000000-0000-0000-0000-000061085cc2"
  2655. (reference "D5") (unit 1) (value "D") (footprint "D:SMA")
  2656. )
  2657. (path "/00000000-0000-0000-0000-000061890ee4"
  2658. (reference "JP1") (unit 1) (value "Jumper3") (footprint "")
  2659. )
  2660. (path "/00000000-0000-0000-0000-000061890efc"
  2661. (reference "JP2") (unit 1) (value "Jumper3") (footprint "")
  2662. )
  2663. (path "/00000000-0000-0000-0000-000061890f14"
  2664. (reference "JP3") (unit 1) (value "Jumper3") (footprint "")
  2665. )
  2666. (path "/00000000-0000-0000-0000-000061890eea"
  2667. (reference "JP4") (unit 1) (value "Jumper3") (footprint "")
  2668. )
  2669. (path "/00000000-0000-0000-0000-000061890f02"
  2670. (reference "JP5") (unit 1) (value "Jumper3") (footprint "")
  2671. )
  2672. (path "/00000000-0000-0000-0000-000061890f1a"
  2673. (reference "JP6") (unit 1) (value "Jumper3") (footprint "")
  2674. )
  2675. (path "/00000000-0000-0000-0000-0000618acf55"
  2676. (reference "JP7") (unit 1) (value "Jumper3") (footprint "")
  2677. )
  2678. (path "/00000000-0000-0000-0000-000061888849"
  2679. (reference "JP8") (unit 1) (value "Jumper3") (footprint "")
  2680. )
  2681. (path "/00000000-0000-0000-0000-0000618897ae"
  2682. (reference "JP9") (unit 1) (value "Jumper3") (footprint "")
  2683. )
  2684. (path "/00000000-0000-0000-0000-0000618afc91"
  2685. (reference "JP10") (unit 1) (value "Jumper3") (footprint "")
  2686. )
  2687. (path "/00000000-0000-0000-0000-00006188884f"
  2688. (reference "JP11") (unit 1) (value "Jumper3") (footprint "")
  2689. )
  2690. (path "/00000000-0000-0000-0000-0000618897b4"
  2691. (reference "JP12") (unit 1) (value "Jumper3") (footprint "")
  2692. )
  2693. (path "/00000000-0000-0000-0000-000061890ede"
  2694. (reference "K1") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
  2695. )
  2696. (path "/00000000-0000-0000-0000-000061890ef6"
  2697. (reference "K2") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
  2698. )
  2699. (path "/00000000-0000-0000-0000-000061890f0e"
  2700. (reference "K3") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
  2701. )
  2702. (path "/00000000-0000-0000-0000-00006189a34c"
  2703. (reference "K4") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
  2704. )
  2705. (path "/00000000-0000-0000-0000-000061888843"
  2706. (reference "K5") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
  2707. )
  2708. (path "/00000000-0000-0000-0000-0000618897a8"
  2709. (reference "K6") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
  2710. )
  2711. (path "/00000000-0000-0000-0000-000061a1497b"
  2712. (reference "P1") (unit 1) (value "CONN_01X01") (footprint "")
  2713. )
  2714. (path "/00000000-0000-0000-0000-000061a147ec"
  2715. (reference "P2") (unit 1) (value "CONN_01X01") (footprint "")
  2716. )
  2717. (path "/00000000-0000-0000-0000-000061a14682"
  2718. (reference "P3") (unit 1) (value "CONN_01X01") (footprint "")
  2719. )
  2720. (path "/00000000-0000-0000-0000-000061a13b5d"
  2721. (reference "P4") (unit 1) (value "CONN_01X01") (footprint "")
  2722. )
  2723. (path "/00000000-0000-0000-0000-0000619870bd"
  2724. (reference "P5") (unit 1) (value "PompeDoseuse1") (footprint "")
  2725. )
  2726. (path "/00000000-0000-0000-0000-00006187edec"
  2727. (reference "P6") (unit 1) (value "CONN_01X06") (footprint "")
  2728. )
  2729. (path "/00000000-0000-0000-0000-000061985afb"
  2730. (reference "P7") (unit 1) (value "PompeDoseuse2") (footprint "")
  2731. )
  2732. (path "/00000000-0000-0000-0000-00006198537e"
  2733. (reference "P8") (unit 1) (value "RelayOUT") (footprint "")
  2734. )
  2735. (path "/00000000-0000-0000-0000-0000619cd4b0"
  2736. (reference "P9") (unit 1) (value "Neutre") (footprint "")
  2737. )
  2738. (path "/00000000-0000-0000-0000-0000619cd8ad"
  2739. (reference "P10") (unit 1) (value "GND") (footprint "")
  2740. )
  2741. (path "/00000000-0000-0000-0000-000061a71684"
  2742. (reference "P11") (unit 1) (value "EC") (footprint "")
  2743. )
  2744. (path "/00000000-0000-0000-0000-000061a72580"
  2745. (reference "P12") (unit 1) (value "PH") (footprint "")
  2746. )
  2747. (path "/00000000-0000-0000-0000-0000618cd9b9"
  2748. (reference "Q1") (unit 1) (value "N_MOSFET") (footprint "")
  2749. )
  2750. (path "/00000000-0000-0000-0000-0000618cd9a3"
  2751. (reference "Q2") (unit 1) (value "N_MOSFET") (footprint "")
  2752. )
  2753. (path "/00000000-0000-0000-0000-0000618cd9cf"
  2754. (reference "Q3") (unit 1) (value "N_MOSFET") (footprint "")
  2755. )
  2756. (path "/00000000-0000-0000-0000-0000618c05f9"
  2757. (reference "Q4") (unit 1) (value "N_MOSFET") (footprint "")
  2758. )
  2759. (path "/00000000-0000-0000-0000-0000618ac2a8"
  2760. (reference "Q5") (unit 1) (value "N_MOSFET") (footprint "")
  2761. )
  2762. (path "/00000000-0000-0000-0000-0000618c73aa"
  2763. (reference "Q6") (unit 1) (value "N_MOSFET") (footprint "")
  2764. )
  2765. (path "/00000000-0000-0000-0000-0000618cd9bf"
  2766. (reference "R1") (unit 1) (value "10K") (footprint "")
  2767. )
  2768. (path "/00000000-0000-0000-0000-0000618cd9a9"
  2769. (reference "R2") (unit 1) (value "10K") (footprint "")
  2770. )
  2771. (path "/00000000-0000-0000-0000-0000618cd9d5"
  2772. (reference "R3") (unit 1) (value "10K") (footprint "")
  2773. )
  2774. (path "/00000000-0000-0000-0000-0000618cd9c5"
  2775. (reference "R4") (unit 1) (value "120") (footprint "")
  2776. )
  2777. (path "/00000000-0000-0000-0000-0000618cd9af"
  2778. (reference "R5") (unit 1) (value "120") (footprint "")
  2779. )
  2780. (path "/00000000-0000-0000-0000-0000618cd9db"
  2781. (reference "R6") (unit 1) (value "120") (footprint "")
  2782. )
  2783. (path "/00000000-0000-0000-0000-0000618c05ff"
  2784. (reference "R7") (unit 1) (value "10K") (footprint "")
  2785. )
  2786. (path "/00000000-0000-0000-0000-0000618ae1a3"
  2787. (reference "R8") (unit 1) (value "10K") (footprint "")
  2788. )
  2789. (path "/00000000-0000-0000-0000-0000618c73b0"
  2790. (reference "R9") (unit 1) (value "10K") (footprint "")
  2791. )
  2792. (path "/00000000-0000-0000-0000-0000618c0605"
  2793. (reference "R10") (unit 1) (value "120") (footprint "")
  2794. )
  2795. (path "/00000000-0000-0000-0000-0000618aeb3a"
  2796. (reference "R11") (unit 1) (value "120") (footprint "")
  2797. )
  2798. (path "/00000000-0000-0000-0000-0000618c73b6"
  2799. (reference "R12") (unit 1) (value "120") (footprint "")
  2800. )
  2801. (path "/00000000-0000-0000-0000-000061931f64"
  2802. (reference "R13") (unit 1) (value "10K") (footprint "")
  2803. )
  2804. (path "/00000000-0000-0000-0000-000061085c78"
  2805. (reference "R33") (unit 1) (value "510") (footprint "R:0805")
  2806. )
  2807. (path "/00000000-0000-0000-0000-000061085c7f"
  2808. (reference "R35") (unit 1) (value "330") (footprint "R:0805")
  2809. )
  2810. (path "/00000000-0000-0000-0000-00006189e6b2"
  2811. (reference "U1") (unit 1) (value "ULN2803A") (footprint "")
  2812. )
  2813. (path "/00000000-0000-0000-0000-000061886f1c"
  2814. (reference "U2") (unit 1) (value "PCF8574") (footprint "")
  2815. )
  2816. (path "/00000000-0000-0000-0000-000061885823"
  2817. (reference "U3") (unit 1) (value "PCF8574") (footprint "")
  2818. )
  2819. (path "/00000000-0000-0000-0000-0000610a57a7"
  2820. (reference "U4") (unit 1) (value "LM317") (footprint "")
  2821. )
  2822. )
  2823. )