| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815 |
- (export (version D)
- (design
- (source C:\Users\e_rcluze\Documents\Autres\Projet\ordinateur_aquarium\Eda\Ordinateur.sch)
- (date "20/06/2019 14:32:04")
- (tool "Eeschema (5.0.2)-1")
- (sheet (number 1) (name /) (tstamps /)
- (title_block
- (title)
- (company)
- (rev)
- (date)
- (source Ordinateur.sch)
- (comment (number 1) (value ""))
- (comment (number 2) (value ""))
- (comment (number 3) (value ""))
- (comment (number 4) (value "")))))
- (components
- (comp (ref P5)
- (value Cuve_haut)
- (footprint Connector:Bornier2.54_1x2)
- (fields
- (field (name Partkeepr) 4))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AE6E30))
- (comp (ref P2)
- (value Technique_haut)
- (footprint Connector:Bornier2.54_1x2)
- (fields
- (field (name Partkeepr) 4))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AE6E9C))
- (comp (ref P1)
- (value Technique_Bas)
- (footprint Connector:Bornier2.54_1x2)
- (fields
- (field (name Partkeepr) 4))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AE6EE0))
- (comp (ref P4)
- (value Reserve_Bas)
- (footprint Connector:Bornier2.54_1x2)
- (fields
- (field (name Partkeepr) 4))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AE6F7C))
- (comp (ref P3)
- (value Reserve_haut)
- (footprint Connector:Bornier2.54_1x2)
- (fields
- (field (name Partkeepr) 4))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AE6FD7))
- (comp (ref P6)
- (value Temperature)
- (footprint Connector:Bornier2.54_1x3)
- (fields
- (field (name Partkeepr) 5))
- (libsource (lib conn) (part CONN_01X03) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AE70BC))
- (comp (ref U1)
- (value STM32F401RC)
- (footprint U:LQFP64)
- (fields
- (field (name Partkeepr) 2102))
- (libsource (lib ST) (part STM32F401RC) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AE71DE))
- (comp (ref K8)
- (value SRD-03VDC-SL-C)
- (footprint relay:SRD-03VDC-SL-C)
- (fields
- (field (name Partkeepr) 350))
- (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AEF830))
- (comp (ref P14)
- (value Ecumeur)
- (footprint Connector:Bornier5_1x2)
- (fields
- (field (name Partkeepr) 0))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59AEF836))
- (comp (ref K4)
- (value SRD-03VDC-SL-C)
- (footprint relay:SRD-03VDC-SL-C)
- (fields
- (field (name Partkeepr) 350))
- (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B029E2))
- (comp (ref P10)
- (value Remonte)
- (footprint Connector:Bornier5_1x2)
- (fields
- (field (name Partkeepr) 0))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B029E8))
- (comp (ref K7)
- (value SRD-03VDC-SL-C)
- (footprint relay:SRD-03VDC-SL-C)
- (fields
- (field (name Partkeepr) 350))
- (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B02CDF))
- (comp (ref P13)
- (value Peristatique)
- (footprint Connector:Bornier2.54_1x2)
- (fields
- (field (name Partkeepr) 4))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B02CE5))
- (comp (ref K2)
- (value SRD-03VDC-SL-C)
- (footprint relay:SRD-03VDC-SL-C)
- (fields
- (field (name Partkeepr) 350))
- (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B02D12))
- (comp (ref P8)
- (value Relais1)
- (footprint Connector:Bornier5_1x2)
- (fields
- (field (name Partkeepr) 0))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B02D18))
- (comp (ref K6)
- (value SRD-03VDC-SL-C)
- (footprint relay:SRD-03VDC-SL-C)
- (fields
- (field (name Partkeepr) 350))
- (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B034D9))
- (comp (ref P12)
- (value Osmolateur)
- (footprint Connector:Bornier2.54_1x2)
- (fields
- (field (name Partkeepr) 4))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B034DF))
- (comp (ref K1)
- (value SRD-03VDC-SL-C)
- (footprint relay:SRD-03VDC-SL-C)
- (fields
- (field (name Partkeepr) 350))
- (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B0350C))
- (comp (ref P7)
- (value RAH)
- (footprint Connector:Bornier5_1x2)
- (fields
- (field (name Partkeepr) 0))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B03512))
- (comp (ref K5)
- (value SRD-03VDC-SL-C)
- (footprint relay:SRD-03VDC-SL-C)
- (fields
- (field (name Partkeepr) 350))
- (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B0353F))
- (comp (ref K3)
- (value SRD-03VDC-SL-C)
- (footprint relay:SRD-03VDC-SL-C)
- (fields
- (field (name Partkeepr) 350))
- (libsource (lib relay) (part SRD-03VDC-SL-C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B03572))
- (comp (ref P9)
- (value Chauffage)
- (footprint Connector:Bornier5_1x2)
- (fields
- (field (name Partkeepr) 0))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B03578))
- (comp (ref P11)
- (value Relais2)
- (footprint Connector:Bornier2.54_1x2)
- (fields
- (field (name Partkeepr) 4))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 59B03545))
- (comp (ref U6)
- (value ULN2803A)
- (footprint U:SOP18)
- (fields
- (field (name Partkeepr) 2400))
- (libsource (lib TI) (part ULN2803A) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAAE23))
- (comp (ref J1)
- (value Micro_USB)
- (footprint Connector:Micro-USB)
- (fields
- (field (name Partkeepr) 50))
- (libsource (lib conn) (part Micro_USB) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFACA99))
- (comp (ref Y1)
- (value Crystal)
- (footprint Y:5032)
- (fields
- (field (name Partkeepr) 1650))
- (libsource (lib global) (part Crystal) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFADCC2))
- (comp (ref C3)
- (value 1µF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 608))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFADE87))
- (comp (ref C6)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFADF5D))
- (comp (ref C7)
- (value 4.7µF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 607))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE0D9))
- (comp (ref SW2)
- (value SW_PUSH)
- (footprint SW:SW)
- (fields
- (field (name Partkeepr) 200))
- (libsource (lib global) (part SW_PUSH) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE368))
- (comp (ref SW1)
- (value SW_PUSH)
- (footprint SW:SW)
- (fields
- (field (name Partkeepr) 200))
- (libsource (lib global) (part SW_PUSH) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE461))
- (comp (ref C11)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE512))
- (comp (ref C10)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE5F9))
- (comp (ref R13)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE6C4))
- (comp (ref R7)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE837))
- (comp (ref C1)
- (value C)
- (footprint C:0603)
- (fields
- (field (name Partkeepr) 600))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFB0814))
- (comp (ref C2)
- (value C)
- (footprint C:0603)
- (fields
- (field (name Partkeepr) 600))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFB08E5))
- (comp (ref C5)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFB4DDE))
- (comp (ref C9)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFB4EA5))
- (comp (ref C4)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFB547F))
- (comp (ref C8)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFB5DDF))
- (comp (ref U3)
- (value M24C32)
- (footprint U:SO8N)
- (fields
- (field (name Partkeepr) 1700))
- (libsource (lib ST) (part M24C32) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFB6B89))
- (comp (ref U2)
- (value M41T83)
- (footprint U:SOX18)
- (fields
- (field (name Partkeepr) 1600))
- (libsource (lib ST) (part M41T83) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFB6C98))
- (comp (ref C12)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFBB161))
- (comp (ref P15)
- (value I2C)
- (footprint Connector:Bornier2.54_1x3)
- (fields
- (field (name Partkeepr) 5))
- (libsource (lib conn) (part CONN_01X03) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFC4271))
- (comp (ref R12)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFC8C4D))
- (comp (ref R14)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFC8D8E))
- (comp (ref R15)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFC8E58))
- (comp (ref R24)
- (value 100)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 912))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAF333))
- (comp (ref BT1)
- (value Battery)
- (footprint Connector:batterie)
- (fields
- (field (name Partkeepr) 3))
- (libsource (lib global) (part Battery) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE8A3))
- (comp (ref R6)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAF4AC))
- (comp (ref R1)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFDAA38))
- (comp (ref R3)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFDCA57))
- (comp (ref R5)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFDCBCC))
- (comp (ref R2)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFDCDBE))
- (comp (ref R4)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFDCEB7))
- (comp (ref D1)
- (value Relai1)
- (footprint LED:0805)
- (fields
- (field (name Partkeepr) 1101))
- (libsource (lib global) (part LED) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE2D75))
- (comp (ref R8)
- (value 120)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 911))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE4987))
- (comp (ref D2)
- (value Relai2)
- (footprint LED:0805)
- (fields
- (field (name Partkeepr) 1101))
- (libsource (lib global) (part LED) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE4BE9))
- (comp (ref R9)
- (value 120)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 911))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE4BF0))
- (comp (ref D3)
- (value Ecumeur)
- (footprint LED:0805)
- (fields
- (field (name Partkeepr) 1101))
- (libsource (lib global) (part LED) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE4CC8))
- (comp (ref R10)
- (value 120)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 911))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE4CCF))
- (comp (ref D4)
- (value Chauffage)
- (footprint LED:0805)
- (fields
- (field (name Partkeepr) 1101))
- (libsource (lib global) (part LED) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE532F))
- (comp (ref R11)
- (value 120)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 911))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE5336))
- (comp (ref D5)
- (value Osmolateur)
- (footprint LED:0805)
- (fields
- (field (name Partkeepr) 1101))
- (libsource (lib global) (part LED) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE5734))
- (comp (ref R21)
- (value 120)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 911))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE573B))
- (comp (ref D6)
- (value Remonter)
- (footprint LED:0805)
- (fields
- (field (name Partkeepr) 1101))
- (libsource (lib global) (part LED) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE5741))
- (comp (ref R22)
- (value 120)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 911))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE5748))
- (comp (ref D7)
- (value Peristatique)
- (footprint LED:0805)
- (fields
- (field (name Partkeepr) 1101))
- (libsource (lib global) (part LED) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE574E))
- (comp (ref R23)
- (value 120)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 911))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFE5755))
- (comp (ref SW3)
- (value mt-OO8a)
- (footprint SW:MT-008a)
- (fields
- (field (name Partkeepr) 201))
- (libsource (lib global) (part mt-OO8a) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFEAC87))
- (comp (ref R16)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFED7CC))
- (comp (ref R17)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFEE164))
- (comp (ref R18)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFEE35C))
- (comp (ref R19)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFEE591))
- (comp (ref R20)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFEE68F))
- (comp (ref U4)
- (value HD44780)
- (footprint Connector:PinHeader2.54_1X16)
- (fields
- (field (name Partkeepr) 100))
- (libsource (lib afficheur) (part HD44780) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5AFAE1CC))
- (comp (ref D8)
- (value RAH)
- (footprint LED:0805)
- (fields
- (field (name Partkeepr) 1101))
- (libsource (lib global) (part LED) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5B4541F8))
- (comp (ref R25)
- (value 120)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 911))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5B4541FF))
- (comp (ref P17)
- (value CONN_01X05)
- (footprint Connector:PinHeader2.54_1X5)
- (fields
- (field (name Partkeepr) 100))
- (libsource (lib conn) (part CONN_01X05) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5B5832B2))
- (comp (ref VR1)
- (value 10K)
- (footprint R:3296)
- (fields
- (field (name Partkeepr) NC))
- (libsource (lib global) (part Poten) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5B58DB3E))
- (comp (ref Q1)
- (value N_MOSFET)
- (footprint U:SOT-223)
- (fields
- (field (name Partkeepr) 2002))
- (libsource (lib global) (part N_MOSFET) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5B576977))
- (comp (ref P16)
- (value Alim)
- (footprint Connector:Bornier5_1x2)
- (fields
- (field (name Partkeepr) 0))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5B573EE1))
- (comp (ref R27)
- (value 510)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 913))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18B4B))
- (comp (ref R29)
- (value 330)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 914))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18B53))
- (comp (ref C16)
- (value 10µF)
- (footprint C:CP_CMS5X5.8)
- (fields
- (field (name Partkeepr) 609))
- (libsource (lib global) (part CP) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18B5B))
- (comp (ref C14)
- (value 100nF)
- (footprint C:3216-18)
- (fields
- (field (name Partkeepr) 606))
- (libsource (lib global) (part CP) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18B65))
- (comp (ref U7)
- (value LM317)
- (footprint U:LM317)
- (fields
- (field (name Partkeepr) 1800))
- (libsource (lib global) (part LM317) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18B6D))
- (comp (ref C18)
- (value 1µF)
- (footprint C:CP_CMS4X5.8)
- (fields
- (field (name Partkeepr) 608))
- (libsource (lib global) (part CP) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18B8B))
- (comp (ref D10)
- (value D)
- (footprint D:SMA)
- (fields
- (field (name Partkeepr) 1302))
- (libsource (lib global) (part D) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18B9A))
- (comp (ref R26)
- (value 1K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 915))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18BA6))
- (comp (ref R28)
- (value 330)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 914))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18BAE))
- (comp (ref C15)
- (value 10µF)
- (footprint C:CP_CMS5X5.8)
- (fields
- (field (name Partkeepr) 609))
- (libsource (lib global) (part CP) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18BB6))
- (comp (ref C13)
- (value 100nF)
- (footprint C:3216-18)
- (fields
- (field (name Partkeepr) 606))
- (libsource (lib global) (part CP) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18BC0))
- (comp (ref U5)
- (value LM317)
- (footprint U:LM317)
- (fields
- (field (name Partkeepr) 1800))
- (libsource (lib global) (part LM317) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18BC8))
- (comp (ref C17)
- (value 1µF)
- (footprint C:CP_CMS4X5.8)
- (fields
- (field (name Partkeepr) 608))
- (libsource (lib global) (part CP) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18BE6))
- (comp (ref D9)
- (value D)
- (footprint D:SMA)
- (fields
- (field (name Partkeepr) 1302))
- (libsource (lib global) (part D) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF18BF5))
- (comp (ref U8)
- (value ESP-12F)
- (footprint Module:ESP-12F)
- (fields
- (field (name Partkeepr) 2500))
- (libsource (lib Module) (part ESP-12F) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CDD9))
- (comp (ref R30)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CDE7))
- (comp (ref R31)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CDEF))
- (comp (ref C20)
- (value 100nF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 605))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CE05))
- (comp (ref R32)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CE0F))
- (comp (ref R33)
- (value 10K)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 910))
- (libsource (lib global) (part R) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CE19))
- (comp (ref SJ1)
- (value Mode)
- (footprint Jumper:Jumper_2.54mm)
- (fields
- (field (name Partkeepr) 100))
- (libsource (lib global) (part Jumper) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CE26))
- (comp (ref C19)
- (value 4.7µF)
- (footprint C:0805)
- (fields
- (field (name Partkeepr) 607))
- (libsource (lib global) (part C) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CE3A))
- (comp (ref P18)
- (value ProgESP)
- (footprint Connector:PinHeader2.54_1X2)
- (fields
- (field (name Partkeepr) 100))
- (libsource (lib conn) (part CONN_01X02) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5CF5CE43))
- (comp (ref P19)
- (value CONN_01X01)
- (footprint MH:MH3mm)
- (libsource (lib conn) (part CONN_01X01) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5D0CCC09))
- (comp (ref P20)
- (value CONN_01X01)
- (footprint MH:MH3mm)
- (libsource (lib conn) (part CONN_01X01) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5D0D5B33))
- (comp (ref P21)
- (value CONN_01X01)
- (footprint MH:MH3mm)
- (libsource (lib conn) (part CONN_01X01) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5D0D5C25))
- (comp (ref P22)
- (value CONN_01X01)
- (footprint MH:MH3mm)
- (libsource (lib conn) (part CONN_01X01) (description ""))
- (sheetpath (names /) (tstamps /))
- (tstamp 5D0D5D13)))
- (libparts
- (libpart (lib Module) (part ESP-12F)
- (fields
- (field (name Reference) U)
- (field (name Value) ESP-12F)
- (field (name Partkeepr) 2500))
- (pins
- (pin (num 1) (name RST) (type input))
- (pin (num 2) (name ADC) (type BiDi))
- (pin (num 3) (name EN) (type input))
- (pin (num 4) (name GPIO16) (type BiDi))
- (pin (num 5) (name GPIO14) (type BiDi))
- (pin (num 6) (name GPIO12) (type BiDi))
- (pin (num 7) (name GPIO13) (type BiDi))
- (pin (num 8) (name VCC) (type power_in))
- (pin (num 9) (name CS0) (type input))
- (pin (num 10) (name MISO) (type BiDi))
- (pin (num 11) (name GPIO9) (type BiDi))
- (pin (num 12) (name GPIO10) (type BiDi))
- (pin (num 13) (name MOSI) (type BiDi))
- (pin (num 14) (name SCLK) (type BiDi))
- (pin (num 15) (name GND) (type power_in))
- (pin (num 16) (name GPIO15) (type BiDi))
- (pin (num 17) (name GPIO2) (type BiDi))
- (pin (num 18) (name GPIO0) (type BiDi))
- (pin (num 19) (name GPIO4) (type BiDi))
- (pin (num 20) (name GPIO5) (type BiDi))
- (pin (num 21) (name RXD) (type input))
- (pin (num 22) (name TXD) (type output))))
- (libpart (lib ST) (part M24C32)
- (fields
- (field (name Reference) U)
- (field (name Value) M24C32)
- (field (name Partkeepr) 1700))
- (pins
- (pin (num 1) (name E0) (type input))
- (pin (num 2) (name E1) (type input))
- (pin (num 3) (name E2) (type input))
- (pin (num 4) (name VSS) (type power_in))
- (pin (num 5) (name VCC) (type power_in))
- (pin (num 6) (name ~WC) (type input))
- (pin (num 7) (name SCL) (type BiDi))
- (pin (num 8) (name SDA) (type BiDi))))
- (libpart (lib ST) (part M41T83)
- (fields
- (field (name Reference) U)
- (field (name Value) M41T83)
- (field (name Partkeepr) 1600))
- (pins
- (pin (num 1) (name NC) (type NotConnected))
- (pin (num 2) (name NF) (type input))
- (pin (num 3) (name NF) (type input))
- (pin (num 4) (name NC) (type input))
- (pin (num 5) (name ~RST) (type input))
- (pin (num 6) (name DU) (type input))
- (pin (num 7) (name SQW) (type input))
- (pin (num 8) (name VBAT) (type input))
- (pin (num 9) (name VSS) (type input))
- (pin (num 10) (name SDA) (type input))
- (pin (num 11) (name SCL) (type input))
- (pin (num 12) (name ~IRQ1~/FT/OUT) (type input))
- (pin (num 13) (name NC) (type input))
- (pin (num 14) (name ~IRQ2) (type input))
- (pin (num 15) (name VCC) (type input))
- (pin (num 16) (name NF) (type input))
- (pin (num 17) (name NF) (type input))
- (pin (num 18) (name NC) (type input))))
- (libpart (lib ST) (part STM32F401RC)
- (fields
- (field (name Reference) U)
- (field (name Value) STM32F401RC)
- (field (name Partkeepr) 2102))
- (pins
- (pin (num 1) (name VBAT) (type input))
- (pin (num 2) (name PC13) (type input))
- (pin (num 3) (name PC14) (type input))
- (pin (num 4) (name PC15) (type input))
- (pin (num 5) (name PH0) (type input))
- (pin (num 6) (name PH1) (type input))
- (pin (num 7) (name NRST) (type input))
- (pin (num 8) (name PC0) (type input))
- (pin (num 9) (name PC1) (type input))
- (pin (num 10) (name PC2) (type input))
- (pin (num 11) (name PC3) (type input))
- (pin (num 12) (name VSSA) (type input))
- (pin (num 13) (name VDDA) (type input))
- (pin (num 14) (name PA0) (type input))
- (pin (num 15) (name PA1) (type input))
- (pin (num 16) (name PA2) (type input))
- (pin (num 17) (name PA3) (type input))
- (pin (num 18) (name VSS) (type input))
- (pin (num 19) (name VDD) (type input))
- (pin (num 20) (name PA4) (type input))
- (pin (num 21) (name PA5) (type input))
- (pin (num 22) (name PA6) (type input))
- (pin (num 23) (name PA7) (type input))
- (pin (num 24) (name PC4) (type input))
- (pin (num 25) (name PC5) (type input))
- (pin (num 26) (name PB0) (type input))
- (pin (num 27) (name PB1) (type input))
- (pin (num 28) (name PB2) (type input))
- (pin (num 29) (name PB10) (type input))
- (pin (num 30) (name VCAP1) (type input))
- (pin (num 31) (name VSS) (type input))
- (pin (num 32) (name VDD) (type input))
- (pin (num 33) (name PB12) (type input))
- (pin (num 34) (name PB13) (type input))
- (pin (num 35) (name PB14) (type input))
- (pin (num 36) (name PB15) (type input))
- (pin (num 37) (name PC6) (type input))
- (pin (num 38) (name PC7) (type input))
- (pin (num 39) (name PC8) (type input))
- (pin (num 40) (name PC9) (type input))
- (pin (num 41) (name PA8) (type input))
- (pin (num 42) (name PA9) (type input))
- (pin (num 43) (name PA10) (type input))
- (pin (num 44) (name PA11) (type input))
- (pin (num 45) (name PA12) (type input))
- (pin (num 46) (name PA13) (type input))
- (pin (num 47) (name VDD) (type input))
- (pin (num 48) (name VSS) (type input))
- (pin (num 49) (name PA14) (type input))
- (pin (num 50) (name PA15) (type input))
- (pin (num 51) (name PC10) (type input))
- (pin (num 52) (name PC11) (type input))
- (pin (num 53) (name PC12) (type input))
- (pin (num 54) (name PD2) (type input))
- (pin (num 55) (name PB3) (type input))
- (pin (num 56) (name PB4) (type input))
- (pin (num 57) (name PB5) (type input))
- (pin (num 58) (name PB6) (type input))
- (pin (num 59) (name PB7) (type input))
- (pin (num 60) (name BOOT0) (type input))
- (pin (num 61) (name PB8) (type input))
- (pin (num 62) (name PB9) (type input))
- (pin (num 63) (name VSS) (type input))
- (pin (num 64) (name VDD) (type input))))
- (libpart (lib TI) (part ULN2803A)
- (fields
- (field (name Reference) U)
- (field (name Value) ULN2803A))
- (pins
- (pin (num 1) (name 1B) (type input))
- (pin (num 2) (name 2B) (type input))
- (pin (num 3) (name 3B) (type input))
- (pin (num 4) (name 4B) (type input))
- (pin (num 5) (name 5B) (type input))
- (pin (num 6) (name 6B) (type input))
- (pin (num 7) (name 7B) (type input))
- (pin (num 8) (name 8B) (type input))
- (pin (num 9) (name GND) (type power_in))
- (pin (num 10) (name VCC) (type power_in))
- (pin (num 11) (name 8C) (type output))
- (pin (num 12) (name 7C) (type output))
- (pin (num 13) (name 6C) (type output))
- (pin (num 14) (name 5C) (type output))
- (pin (num 15) (name 4C) (type output))
- (pin (num 16) (name 3C) (type output))
- (pin (num 17) (name 2C) (type output))
- (pin (num 18) (name 1C) (type output))))
- (libpart (lib afficheur) (part HD44780)
- (fields
- (field (name Reference) U)
- (field (name Value) HD44780))
- (pins
- (pin (num 1) (name VSS) (type power_in))
- (pin (num 2) (name VDD) (type power_in))
- (pin (num 3) (name Vee) (type power_in))
- (pin (num 4) (name RS) (type input))
- (pin (num 5) (name R/W) (type input))
- (pin (num 6) (name E) (type input))
- (pin (num 7) (name D0) (type input))
- (pin (num 8) (name D1) (type input))
- (pin (num 9) (name D2) (type input))
- (pin (num 10) (name D3) (type input))
- (pin (num 11) (name D4) (type input))
- (pin (num 12) (name D5) (type input))
- (pin (num 13) (name D6) (type input))
- (pin (num 14) (name D7) (type input))
- (pin (num 15) (name A) (type input))
- (pin (num 16) (name K) (type input))))
- (libpart (lib conn) (part CONN_01X01)
- (footprints
- (fp Pin_Header_Straight_1X01)
- (fp Pin_Header_Angled_1X01)
- (fp Socket_Strip_Straight_1X01)
- (fp Socket_Strip_Angled_1X01))
- (fields
- (field (name Reference) P)
- (field (name Value) CONN_01X01))
- (pins
- (pin (num 1) (name P1) (type passive))))
- (libpart (lib conn) (part CONN_01X02)
- (footprints
- (fp Pin_Header_Straight_1X02)
- (fp Pin_Header_Angled_1X02)
- (fp Socket_Strip_Straight_1X02)
- (fp Socket_Strip_Angled_1X02))
- (fields
- (field (name Reference) P)
- (field (name Value) CONN_01X02))
- (pins
- (pin (num 1) (name P1) (type passive))
- (pin (num 2) (name P2) (type passive))))
- (libpart (lib conn) (part CONN_01X03)
- (footprints
- (fp Pin_Header_Straight_1X03)
- (fp Pin_Header_Angled_1X03)
- (fp Socket_Strip_Straight_1X03)
- (fp Socket_Strip_Angled_1X03))
- (fields
- (field (name Reference) P)
- (field (name Value) CONN_01X03))
- (pins
- (pin (num 1) (name P1) (type passive))
- (pin (num 2) (name P2) (type passive))
- (pin (num 3) (name P3) (type passive))))
- (libpart (lib conn) (part CONN_01X05)
- (footprints
- (fp Pin_Header_Straight_1X05)
- (fp Pin_Header_Angled_1X05)
- (fp Socket_Strip_Straight_1X05)
- (fp Socket_Strip_Angled_1X05))
- (fields
- (field (name Reference) P)
- (field (name Value) CONN_01X05))
- (pins
- (pin (num 1) (name P1) (type passive))
- (pin (num 2) (name P2) (type passive))
- (pin (num 3) (name P3) (type passive))
- (pin (num 4) (name P4) (type passive))
- (pin (num 5) (name P5) (type passive))))
- (libpart (lib conn) (part Micro_USB)
- (fields
- (field (name Reference) J)
- (field (name Value) Micro_USB))
- (pins
- (pin (num 0) (name USB_SH) (type input))
- (pin (num 1) (name USB_VBUS) (type input))
- (pin (num 2) (name USB_N) (type input))
- (pin (num 3) (name USB_P) (type input))
- (pin (num 4) (name USB_ID) (type input))
- (pin (num 5) (name USB_GND) (type input))))
- (libpart (lib global) (part Battery)
- (fields
- (field (name Reference) BT)
- (field (name Value) Battery))
- (pins
- (pin (num 1) (name ~) (type passive))
- (pin (num 2) (name ~) (type passive))))
- (libpart (lib global) (part C)
- (footprints
- (fp C?)
- (fp C_????_*)
- (fp C_????)
- (fp SMD*_c)
- (fp Capacitor*))
- (fields
- (field (name Reference) C)
- (field (name Value) C))
- (pins
- (pin (num 1) (name ~) (type passive))
- (pin (num 2) (name ~) (type passive))))
- (libpart (lib global) (part CP)
- (footprints
- (fp CP*)
- (fp Elko*)
- (fp TantalC*)
- (fp C*elec)
- (fp c_elec*)
- (fp SMD*_Pol))
- (fields
- (field (name Reference) C)
- (field (name Value) CP))
- (pins
- (pin (num 1) (name ~) (type passive))
- (pin (num 2) (name ~) (type passive))))
- (libpart (lib global) (part Crystal)
- (footprints
- (fp Crystal_*))
- (fields
- (field (name Reference) Y)
- (field (name Value) Crystal))
- (pins
- (pin (num 1) (name 1) (type passive))
- (pin (num 2) (name 2) (type passive))))
- (libpart (lib global) (part D)
- (footprints
- (fp Diode_*)
- (fp D-Pak_TO252AA)
- (fp *SingleDiode)
- (fp *_Diode_*)
- (fp *SingleDiode*))
- (fields
- (field (name Reference) D)
- (field (name Value) D))
- (pins
- (pin (num 1) (name K) (type passive))
- (pin (num 2) (name A) (type passive))))
- (libpart (lib global) (part Jumper)
- (fields
- (field (name Reference) SJ)
- (field (name Value) Jumper))
- (pins
- (pin (num 1) (name ~) (type passive))
- (pin (num 2) (name ~) (type passive))))
- (libpart (lib global) (part LED)
- (footprints
- (fp LED-3MM)
- (fp LED-5MM)
- (fp LED-10MM)
- (fp LED-0603)
- (fp LED-0805)
- (fp LED-1206)
- (fp LEDV))
- (fields
- (field (name Reference) D)
- (field (name Value) LED))
- (pins
- (pin (num 1) (name K) (type passive))
- (pin (num 2) (name A) (type passive))))
- (libpart (lib global) (part LM317)
- (fields
- (field (name Reference) U)
- (field (name Value) LM317))
- (pins
- (pin (num 1) (name Adj) (type input))
- (pin (num 2) (name Vout) (type input))
- (pin (num 3) (name Vin) (type input))))
- (libpart (lib global) (part N_MOSFET)
- (fields
- (field (name Reference) Q)
- (field (name Value) N_MOSFET))
- (pins
- (pin (num 1) (name G) (type input))
- (pin (num 2) (name D) (type input))
- (pin (num 3) (name S) (type input))))
- (libpart (lib global) (part Poten)
- (footprints
- (fp R_*)
- (fp Resistor_*))
- (fields
- (field (name Reference) VR)
- (field (name Value) Poten))
- (pins
- (pin (num 1) (name ~) (type passive))
- (pin (num 2) (name ~) (type passive))
- (pin (num 3) (name ~) (type passive))))
- (libpart (lib global) (part R)
- (footprints
- (fp R_*)
- (fp Resistor_*))
- (fields
- (field (name Reference) R)
- (field (name Value) R))
- (pins
- (pin (num 1) (name ~) (type passive))
- (pin (num 2) (name ~) (type passive))))
- (libpart (lib global) (part SW_PUSH)
- (fields
- (field (name Reference) SW)
- (field (name Value) SW_PUSH))
- (pins
- (pin (num 1) (name 1) (type passive))
- (pin (num 2) (name 2) (type passive))))
- (libpart (lib global) (part mt-OO8a)
- (fields
- (field (name Reference) SW)
- (field (name Value) mt-OO8a))
- (pins
- (pin (num 1) (name Left) (type input))
- (pin (num 2) (name Select) (type input))
- (pin (num 3) (name Down) (type input))
- (pin (num 4) (name Right) (type input))
- (pin (num 5) (name Com) (type input))
- (pin (num 6) (name Up) (type input))))
- (libpart (lib relay) (part SRD-03VDC-SL-C)
- (fields
- (field (name Reference) K)
- (field (name Value) SRD-03VDC-SL-C)
- (field (name Partkeepr) 350))
- (pins
- (pin (num 1) (name A1) (type input))
- (pin (num 2) (name A2) (type input))
- (pin (num 3) (name COM) (type input))
- (pin (num 4) (name NO) (type input))
- (pin (num 5) (name NC) (type input)))))
- (libraries
- (library (logical Module)
- (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/Module.lib))
- (library (logical ST)
- (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/ST.lib))
- (library (logical TI)
- (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/TI.lib))
- (library (logical afficheur)
- (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/afficheur.lib))
- (library (logical conn)
- (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/conn.lib))
- (library (logical global)
- (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/global.lib))
- (library (logical relay)
- (uri C:\Users\e_rcluze\Documents\Autres\Projet\librairie_kicad/schematic/relay.lib)))
- (nets
- (net (code 1) (name /GND)
- (node (ref D3) (pin 1))
- (node (ref U1) (pin 31))
- (node (ref D2) (pin 1))
- (node (ref U1) (pin 12))
- (node (ref U1) (pin 63))
- (node (ref SW3) (pin 5))
- (node (ref P2) (pin 1))
- (node (ref P1) (pin 1))
- (node (ref D4) (pin 1))
- (node (ref P12) (pin 2))
- (node (ref U3) (pin 1))
- (node (ref U3) (pin 2))
- (node (ref D5) (pin 1))
- (node (ref U3) (pin 3))
- (node (ref U3) (pin 4))
- (node (ref BT1) (pin 2))
- (node (ref D1) (pin 1))
- (node (ref P15) (pin 3))
- (node (ref C5) (pin 1))
- (node (ref C8) (pin 1))
- (node (ref P13) (pin 2))
- (node (ref K4) (pin 2))
- (node (ref C7) (pin 2))
- (node (ref C2) (pin 2))
- (node (ref C1) (pin 2))
- (node (ref P6) (pin 3))
- (node (ref D6) (pin 1))
- (node (ref P3) (pin 1))
- (node (ref D7) (pin 1))
- (node (ref P4) (pin 1))
- (node (ref C4) (pin 1))
- (node (ref Q1) (pin 3))
- (node (ref SJ1) (pin 2))
- (node (ref R27) (pin 2))
- (node (ref C16) (pin 2))
- (node (ref C14) (pin 2))
- (node (ref C19) (pin 2))
- (node (ref C18) (pin 2))
- (node (ref U8) (pin 15))
- (node (ref C20) (pin 2))
- (node (ref P11) (pin 2))
- (node (ref J1) (pin 5))
- (node (ref U2) (pin 3))
- (node (ref C3) (pin 1))
- (node (ref C6) (pin 1))
- (node (ref U2) (pin 2))
- (node (ref C9) (pin 1))
- (node (ref K5) (pin 2))
- (node (ref K1) (pin 2))
- (node (ref K3) (pin 2))
- (node (ref C11) (pin 1))
- (node (ref U8) (pin 16))
- (node (ref U6) (pin 9))
- (node (ref C13) (pin 2))
- (node (ref C15) (pin 2))
- (node (ref R7) (pin 1))
- (node (ref R26) (pin 2))
- (node (ref C17) (pin 2))
- (node (ref U2) (pin 16))
- (node (ref U2) (pin 17))
- (node (ref VR1) (pin 1))
- (node (ref U2) (pin 9))
- (node (ref SW2) (pin 2))
- (node (ref U1) (pin 18))
- (node (ref D8) (pin 1))
- (node (ref U4) (pin 16))
- (node (ref P17) (pin 3))
- (node (ref U4) (pin 1))
- (node (ref K8) (pin 2))
- (node (ref C12) (pin 2))
- (node (ref P5) (pin 1))
- (node (ref K7) (pin 2))
- (node (ref K6) (pin 2))
- (node (ref U1) (pin 48))
- (node (ref K2) (pin 2)))
- (net (code 2) (name /D7)
- (node (ref U4) (pin 14))
- (node (ref U1) (pin 24)))
- (net (code 3) (name "Net-(U4-Pad3)")
- (node (ref U4) (pin 3))
- (node (ref VR1) (pin 2)))
- (net (code 4) (name "Net-(U4-Pad7)")
- (node (ref U4) (pin 7)))
- (net (code 5) (name "Net-(U4-Pad8)")
- (node (ref U4) (pin 8)))
- (net (code 6) (name "Net-(U4-Pad9)")
- (node (ref U4) (pin 9)))
- (net (code 7) (name "Net-(D8-Pad2)")
- (node (ref D8) (pin 2))
- (node (ref R25) (pin 1)))
- (net (code 8) (name /RAH_IN)
- (node (ref U1) (pin 54))
- (node (ref U6) (pin 5))
- (node (ref R25) (pin 2)))
- (net (code 9) (name /SWCLK)
- (node (ref P17) (pin 2))
- (node (ref U1) (pin 49)))
- (net (code 10) (name /SWDIO)
- (node (ref U1) (pin 46))
- (node (ref P17) (pin 4)))
- (net (code 11) (name /3.3V)
- (node (ref R13) (pin 1))
- (node (ref SW1) (pin 2))
- (node (ref R14) (pin 2))
- (node (ref C10) (pin 1))
- (node (ref R3) (pin 1))
- (node (ref R12) (pin 2))
- (node (ref R18) (pin 1))
- (node (ref U6) (pin 10))
- (node (ref D10) (pin 1))
- (node (ref R17) (pin 1))
- (node (ref R16) (pin 1))
- (node (ref C19) (pin 1))
- (node (ref R4) (pin 1))
- (node (ref C18) (pin 1))
- (node (ref R33) (pin 1))
- (node (ref R32) (pin 1))
- (node (ref R29) (pin 1))
- (node (ref R2) (pin 1))
- (node (ref U7) (pin 2))
- (node (ref P17) (pin 1))
- (node (ref R19) (pin 1))
- (node (ref C8) (pin 2))
- (node (ref R5) (pin 1))
- (node (ref C5) (pin 2))
- (node (ref R1) (pin 1))
- (node (ref U1) (pin 47))
- (node (ref C12) (pin 1))
- (node (ref C4) (pin 2))
- (node (ref U2) (pin 6))
- (node (ref R6) (pin 1))
- (node (ref U1) (pin 19))
- (node (ref U1) (pin 64))
- (node (ref P6) (pin 1))
- (node (ref U1) (pin 13))
- (node (ref U2) (pin 15))
- (node (ref U1) (pin 32))
- (node (ref C9) (pin 2))
- (node (ref R15) (pin 2))
- (node (ref C20) (pin 1))
- (node (ref U3) (pin 5))
- (node (ref C3) (pin 2))
- (node (ref R20) (pin 1))
- (node (ref C6) (pin 2))
- (node (ref R30) (pin 2))
- (node (ref R31) (pin 2))
- (node (ref U8) (pin 8)))
- (net (code 12) (name /Right)
- (node (ref R16) (pin 2))
- (node (ref SW3) (pin 4))
- (node (ref U1) (pin 38)))
- (net (code 13) (name /nrst)
- (node (ref C11) (pin 2))
- (node (ref R13) (pin 2))
- (node (ref U1) (pin 7))
- (node (ref SW2) (pin 1))
- (node (ref P17) (pin 5)))
- (net (code 14) (name "Net-(U1-Pad1)")
- (node (ref U1) (pin 1)))
- (net (code 15) (name "Net-(U4-Pad10)")
- (node (ref U4) (pin 10)))
- (net (code 16) (name /5V)
- (node (ref U5) (pin 2))
- (node (ref R28) (pin 1))
- (node (ref C17) (pin 1))
- (node (ref VR1) (pin 3))
- (node (ref D9) (pin 1))
- (node (ref U4) (pin 2))
- (node (ref R24) (pin 1)))
- (net (code 17) (name /boot0)
- (node (ref SW1) (pin 1))
- (node (ref R7) (pin 2))
- (node (ref U1) (pin 60))
- (node (ref C10) (pin 2)))
- (net (code 18) (name "Net-(R24-Pad2)")
- (node (ref R24) (pin 2))
- (node (ref U4) (pin 15)))
- (net (code 19) (name "Net-(BT1-Pad1)")
- (node (ref BT1) (pin 1))
- (node (ref U2) (pin 8)))
- (net (code 20) (name "Net-(U2-Pad5)")
- (node (ref U2) (pin 5)))
- (net (code 21) (name /Osomalteur_IN)
- (node (ref U6) (pin 6))
- (node (ref U1) (pin 56))
- (node (ref R21) (pin 2)))
- (net (code 22) (name "Net-(D6-Pad2)")
- (node (ref D6) (pin 2))
- (node (ref R22) (pin 1)))
- (net (code 23) (name /Remonter_IN)
- (node (ref U1) (pin 2))
- (node (ref R22) (pin 2))
- (node (ref U6) (pin 8)))
- (net (code 24) (name "Net-(D7-Pad2)")
- (node (ref R23) (pin 1))
- (node (ref D7) (pin 2)))
- (net (code 25) (name /Peristatique_IN)
- (node (ref R23) (pin 2))
- (node (ref U6) (pin 7))
- (node (ref U1) (pin 57)))
- (net (code 26) (name "Net-(D5-Pad2)")
- (node (ref R21) (pin 1))
- (node (ref D5) (pin 2)))
- (net (code 27) (name "Net-(D1-Pad2)")
- (node (ref D1) (pin 2))
- (node (ref R8) (pin 1)))
- (net (code 28) (name /Relais1_IN)
- (node (ref U6) (pin 1))
- (node (ref R8) (pin 2))
- (node (ref U1) (pin 50)))
- (net (code 29) (name "Net-(D2-Pad2)")
- (node (ref R9) (pin 1))
- (node (ref D2) (pin 2)))
- (net (code 30) (name /Relais2_IN)
- (node (ref R9) (pin 2))
- (node (ref U6) (pin 2))
- (node (ref U1) (pin 51)))
- (net (code 31) (name "Net-(D3-Pad2)")
- (node (ref D3) (pin 2))
- (node (ref R10) (pin 1)))
- (net (code 32) (name /Ecumeur_IN)
- (node (ref R10) (pin 2))
- (node (ref U1) (pin 52))
- (node (ref U6) (pin 3)))
- (net (code 33) (name "Net-(D4-Pad2)")
- (node (ref D4) (pin 2))
- (node (ref R11) (pin 1)))
- (net (code 34) (name /Chauffage_IN)
- (node (ref R11) (pin 2))
- (node (ref U1) (pin 53))
- (node (ref U6) (pin 4)))
- (net (code 35) (name "Net-(U8-Pad4)")
- (node (ref U8) (pin 4)))
- (net (code 36) (name /CS_ESP)
- (node (ref U8) (pin 9))
- (node (ref U1) (pin 20)))
- (net (code 37) (name "Net-(R30-Pad1)")
- (node (ref U8) (pin 1))
- (node (ref R30) (pin 1)))
- (net (code 38) (name "Net-(R31-Pad1)")
- (node (ref U8) (pin 3))
- (node (ref R31) (pin 1)))
- (net (code 39) (name "Net-(U8-Pad5)")
- (node (ref U8) (pin 5)))
- (net (code 40) (name "Net-(U8-Pad6)")
- (node (ref U8) (pin 6)))
- (net (code 41) (name "Net-(U8-Pad7)")
- (node (ref U8) (pin 7)))
- (net (code 42) (name "Net-(U8-Pad11)")
- (node (ref U8) (pin 11)))
- (net (code 43) (name "Net-(U8-Pad12)")
- (node (ref U8) (pin 12)))
- (net (code 44) (name "Net-(U8-Pad20)")
- (node (ref U8) (pin 20)))
- (net (code 45) (name "Net-(U8-Pad19)")
- (node (ref U8) (pin 19)))
- (net (code 46) (name "Net-(U8-Pad2)")
- (node (ref U8) (pin 2)))
- (net (code 47) (name /MISO)
- (node (ref U8) (pin 10))
- (node (ref U1) (pin 23)))
- (net (code 48) (name /MOSI)
- (node (ref U1) (pin 22))
- (node (ref U8) (pin 13)))
- (net (code 49) (name /CLK)
- (node (ref U1) (pin 21))
- (node (ref U8) (pin 14)))
- (net (code 50) (name /RX)
- (node (ref P18) (pin 1))
- (node (ref U8) (pin 21)))
- (net (code 51) (name /TX)
- (node (ref U8) (pin 22))
- (node (ref P18) (pin 2)))
- (net (code 52) (name "Net-(U1-Pad15)")
- (node (ref U1) (pin 15)))
- (net (code 53) (name "Net-(U1-Pad16)")
- (node (ref U1) (pin 16)))
- (net (code 54) (name "Net-(U1-Pad35)")
- (node (ref U1) (pin 35)))
- (net (code 55) (name "Net-(U1-Pad17)")
- (node (ref U1) (pin 17)))
- (net (code 56) (name "Net-(U1-Pad61)")
- (node (ref U1) (pin 61)))
- (net (code 57) (name "Net-(U1-Pad62)")
- (node (ref U1) (pin 62)))
- (net (code 58) (name "Net-(P19-Pad1)")
- (node (ref P19) (pin 1)))
- (net (code 59) (name "Net-(P20-Pad1)")
- (node (ref P20) (pin 1)))
- (net (code 60) (name "Net-(P21-Pad1)")
- (node (ref P21) (pin 1)))
- (net (code 61) (name "Net-(P22-Pad1)")
- (node (ref P22) (pin 1)))
- (net (code 62) (name "Net-(R32-Pad2)")
- (node (ref R32) (pin 2))
- (node (ref U8) (pin 17)))
- (net (code 63) (name /mode)
- (node (ref R33) (pin 2))
- (node (ref U8) (pin 18))
- (node (ref SJ1) (pin 1)))
- (net (code 65) (name "Net-(P16-Pad1)")
- (node (ref P16) (pin 1))
- (node (ref Q1) (pin 2)))
- (net (code 66) (name /12V)
- (node (ref K7) (pin 3))
- (node (ref K6) (pin 3))
- (node (ref Q1) (pin 1))
- (node (ref K5) (pin 3))
- (node (ref P16) (pin 2))
- (node (ref C13) (pin 1))
- (node (ref U5) (pin 3))
- (node (ref C14) (pin 1))
- (node (ref U7) (pin 3)))
- (net (code 67) (name "Net-(C15-Pad1)")
- (node (ref D9) (pin 2))
- (node (ref R28) (pin 2))
- (node (ref R26) (pin 1))
- (node (ref C15) (pin 1))
- (node (ref U5) (pin 1)))
- (net (code 69) (name "Net-(C16-Pad1)")
- (node (ref R27) (pin 1))
- (node (ref U7) (pin 1))
- (node (ref D10) (pin 2))
- (node (ref R29) (pin 2))
- (node (ref C16) (pin 1)))
- (net (code 70) (name /Remonter_OUT)
- (node (ref K4) (pin 1))
- (node (ref U6) (pin 11)))
- (net (code 71) (name /Peristatique_OUT)
- (node (ref K7) (pin 1))
- (node (ref U6) (pin 12)))
- (net (code 72) (name /Relais2_OUT)
- (node (ref U6) (pin 17))
- (node (ref K5) (pin 1)))
- (net (code 73) (name /RAH_OUT)
- (node (ref U6) (pin 14))
- (node (ref K1) (pin 1)))
- (net (code 74) (name "Net-(K1-Pad5)")
- (node (ref K1) (pin 5)))
- (net (code 75) (name /RAHP)
- (node (ref P7) (pin 1))
- (node (ref K1) (pin 4)))
- (net (code 76) (name /RAHM)
- (node (ref P7) (pin 2))
- (node (ref K1) (pin 3)))
- (net (code 77) (name "Net-(K5-Pad5)")
- (node (ref K5) (pin 5)))
- (net (code 78) (name /Chauffage_OUT)
- (node (ref K3) (pin 1))
- (node (ref U6) (pin 15)))
- (net (code 79) (name "Net-(K3-Pad5)")
- (node (ref K3) (pin 5)))
- (net (code 80) (name /chauffP)
- (node (ref P9) (pin 1))
- (node (ref K3) (pin 4)))
- (net (code 81) (name /ChauffM)
- (node (ref K3) (pin 3))
- (node (ref P9) (pin 2)))
- (net (code 82) (name /Relais2_12V)
- (node (ref K5) (pin 4))
- (node (ref P11) (pin 1)))
- (net (code 83) (name /USB_OTG_FS_VBUS)
- (node (ref J1) (pin 1))
- (node (ref U1) (pin 42)))
- (net (code 84) (name "Net-(K2-Pad5)")
- (node (ref K2) (pin 5)))
- (net (code 85) (name "Net-(K6-Pad5)")
- (node (ref K6) (pin 5)))
- (net (code 86) (name "Net-(K8-Pad5)")
- (node (ref K8) (pin 5)))
- (net (code 87) (name "Net-(K4-Pad5)")
- (node (ref K4) (pin 5)))
- (net (code 88) (name "Net-(K7-Pad5)")
- (node (ref K7) (pin 5)))
- (net (code 89) (name "Net-(J1-Pad0)")
- (node (ref J1) (pin 0)))
- (net (code 90) (name /USB_OTG_FS_P)
- (node (ref U1) (pin 45))
- (node (ref J1) (pin 3)))
- (net (code 91) (name /USB_OTG_FS_ID)
- (node (ref U1) (pin 43))
- (node (ref J1) (pin 4)))
- (net (code 92) (name /Select)
- (node (ref U1) (pin 33))
- (node (ref R20) (pin 2))
- (node (ref SW3) (pin 2)))
- (net (code 93) (name /Cuve_Haut_OUT)
- (node (ref U1) (pin 11))
- (node (ref P5) (pin 2))
- (node (ref R5) (pin 2)))
- (net (code 94) (name /Temp_Data)
- (node (ref U1) (pin 14))
- (node (ref P6) (pin 2)))
- (net (code 95) (name /Left)
- (node (ref R18) (pin 2))
- (node (ref U1) (pin 34))
- (node (ref SW3) (pin 1)))
- (net (code 96) (name /USB_OTG_FS_N)
- (node (ref J1) (pin 2))
- (node (ref U1) (pin 44)))
- (net (code 97) (name /D6)
- (node (ref U4) (pin 13))
- (node (ref U1) (pin 25)))
- (net (code 98) (name /Autres_OUT)
- (node (ref R3) (pin 2))
- (node (ref U1) (pin 3))
- (node (ref P3) (pin 2)))
- (net (code 99) (name /wc)
- (node (ref U1) (pin 4))
- (node (ref R6) (pin 2))
- (node (ref U3) (pin 6)))
- (net (code 100) (name "Net-(C1-Pad1)")
- (node (ref U1) (pin 5))
- (node (ref C1) (pin 1))
- (node (ref Y1) (pin 1)))
- (net (code 101) (name "Net-(C2-Pad1)")
- (node (ref U1) (pin 6))
- (node (ref C2) (pin 1))
- (node (ref Y1) (pin 2)))
- (net (code 102) (name /Reserve_bas_OUT)
- (node (ref R4) (pin 2))
- (node (ref P4) (pin 2))
- (node (ref U1) (pin 8)))
- (net (code 103) (name /Technique_haut_OUT)
- (node (ref R2) (pin 2))
- (node (ref U1) (pin 9))
- (node (ref P2) (pin 2)))
- (net (code 104) (name /Technique_bas_OUT)
- (node (ref U1) (pin 10))
- (node (ref P1) (pin 2))
- (node (ref R1) (pin 2)))
- (net (code 105) (name "Net-(C7-Pad1)")
- (node (ref C7) (pin 1))
- (node (ref U1) (pin 30)))
- (net (code 106) (name /RS)
- (node (ref U4) (pin 4))
- (node (ref U1) (pin 40)))
- (net (code 107) (name /RemonteP)
- (node (ref P10) (pin 1))
- (node (ref K4) (pin 4)))
- (net (code 108) (name /RemontM)
- (node (ref P10) (pin 2))
- (node (ref K4) (pin 3)))
- (net (code 109) (name /peris_12V)
- (node (ref P13) (pin 1))
- (node (ref K7) (pin 4)))
- (net (code 110) (name /Relais1_OUT)
- (node (ref K2) (pin 1))
- (node (ref U6) (pin 18)))
- (net (code 111) (name /Relais1P)
- (node (ref K2) (pin 4))
- (node (ref P8) (pin 1)))
- (net (code 112) (name /Relais1M)
- (node (ref K2) (pin 3))
- (node (ref P8) (pin 2)))
- (net (code 113) (name /Osomalteur_OUT)
- (node (ref K6) (pin 1))
- (node (ref U6) (pin 13)))
- (net (code 114) (name /OSM_12V)
- (node (ref K6) (pin 4))
- (node (ref P12) (pin 1)))
- (net (code 115) (name /D5)
- (node (ref U1) (pin 26))
- (node (ref U4) (pin 12)))
- (net (code 116) (name /UP)
- (node (ref U1) (pin 36))
- (node (ref SW3) (pin 6))
- (node (ref R17) (pin 2)))
- (net (code 117) (name /D4)
- (node (ref U1) (pin 27))
- (node (ref U4) (pin 11)))
- (net (code 118) (name /Down)
- (node (ref SW3) (pin 3))
- (node (ref U1) (pin 37))
- (node (ref R19) (pin 2)))
- (net (code 119) (name /E)
- (node (ref U4) (pin 6))
- (node (ref U1) (pin 28)))
- (net (code 120) (name /R/W)
- (node (ref U4) (pin 5))
- (node (ref U1) (pin 39)))
- (net (code 121) (name /Ecumeur_OUT)
- (node (ref U6) (pin 16))
- (node (ref K8) (pin 1)))
- (net (code 122) (name /EcuM)
- (node (ref P14) (pin 2))
- (node (ref K8) (pin 3)))
- (net (code 123) (name /EcuP)
- (node (ref P14) (pin 1))
- (node (ref K8) (pin 4)))
- (net (code 124) (name "Net-(U2-Pad7)")
- (node (ref U2) (pin 7)))
- (net (code 125) (name /SDA)
- (node (ref R12) (pin 1))
- (node (ref U2) (pin 10))
- (node (ref U1) (pin 55))
- (node (ref U3) (pin 8)))
- (net (code 126) (name /SCL)
- (node (ref U2) (pin 11))
- (node (ref R14) (pin 1))
- (node (ref U3) (pin 7))
- (node (ref U1) (pin 29)))
- (net (code 127) (name /MFP)
- (node (ref R15) (pin 1))
- (node (ref U1) (pin 41))
- (node (ref U2) (pin 12)))
- (net (code 128) (name "Net-(U2-Pad13)")
- (node (ref U2) (pin 13)))
- (net (code 129) (name "Net-(U2-Pad1)")
- (node (ref U2) (pin 1)))
- (net (code 130) (name "Net-(U2-Pad4)")
- (node (ref U2) (pin 4)))
- (net (code 131) (name /I2C2_SDL)
- (node (ref U1) (pin 58))
- (node (ref P15) (pin 1)))
- (net (code 132) (name /I2C2_SDA)
- (node (ref P15) (pin 2))
- (node (ref U1) (pin 59)))
- (net (code 133) (name "Net-(U2-Pad18)")
- (node (ref U2) (pin 18)))
- (net (code 134) (name "Net-(U2-Pad14)")
- (node (ref U2) (pin 14)))))
|