| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901 |
- (kicad_sch (version 20211123) (generator eeschema)
- (uuid dfb02f5f-9239-40b3-93dc-decec4ca7122)
- (paper "A4")
- (lib_symbols
- (symbol "NXP:PCF8574" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 3.81 -11.43 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "PCF8574" (id 1) (at 0 11.43 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "PCF8574_0_1"
- (rectangle (start -5.08 10.16) (end 5.08 -10.16)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "PCF8574_1_1"
- (pin input line (at -7.62 8.89 0) (length 2.54)
- (name "A0" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 7.62 -6.35 180) (length 2.54)
- (name "P5" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 7.62 -3.81 180) (length 2.54)
- (name "P6" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 7.62 -1.27 180) (length 2.54)
- (name "P7" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 7.62 1.27 180) (length 2.54)
- (name "INT" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 7.62 3.81 180) (length 2.54)
- (name "SCL" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 7.62 6.35 180) (length 2.54)
- (name "SDA" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 7.62 8.89 180) (length 2.54)
- (name "VDD" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -7.62 6.35 0) (length 2.54)
- (name "A1" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -7.62 3.81 0) (length 2.54)
- (name "A2" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at -7.62 1.27 0) (length 2.54)
- (name "P0" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at -7.62 -1.27 0) (length 2.54)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at -7.62 -3.81 0) (length 2.54)
- (name "P2" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at -7.62 -6.35 0) (length 2.54)
- (name "P3" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -7.62 -8.89 0) (length 2.54)
- (name "VSS" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 7.62 -8.89 180) (length 2.54)
- (name "P4" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "TI:ULN2803A" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 3.81 -12.7 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "ULN2803A" (id 1) (at 0 12.7 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 6.35 1.27 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 6.35 1.27 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "ULN2803A_0_1"
- (rectangle (start -6.35 11.43) (end 6.35 -11.43)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "ULN2803A_1_1"
- (pin input line (at -11.43 10.16 0) (length 5.08)
- (name "1B" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 11.43 -10.16 180) (length 5.08)
- (name "COM" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 11.43 -7.62 180) (length 5.08)
- (name "8C" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 11.43 -5.08 180) (length 5.08)
- (name "7C" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 11.43 -2.54 180) (length 5.08)
- (name "6C" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 11.43 0 180) (length 5.08)
- (name "5C" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 11.43 2.54 180) (length 5.08)
- (name "4C" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 11.43 5.08 180) (length 5.08)
- (name "3C" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 11.43 7.62 180) (length 5.08)
- (name "2C" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 11.43 10.16 180) (length 5.08)
- (name "1C" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 7.62 0) (length 5.08)
- (name "2B" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 5.08 0) (length 5.08)
- (name "3B" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 2.54 0) (length 5.08)
- (name "4B" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 0 0) (length 5.08)
- (name "5B" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 -2.54 0) (length 5.08)
- (name "6B" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 -5.08 0) (length 5.08)
- (name "7B" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 -7.62 0) (length 5.08)
- (name "8B" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -11.43 -10.16 0) (length 5.08)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (id 0) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X01" (id 1) (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (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)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X01_0_1"
- (rectangle (start -1.27 0.127) (end 0.254 -0.127)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 1.27) (end 1.27 -1.27)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CONN_01X01_1_1"
- (pin passive line (at -5.08 0 0) (length 3.81)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (id 0) (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X02" (id 1) (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (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)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X02_0_1"
- (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 1.397) (end 0.254 1.143)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 2.54) (end 1.27 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CONN_01X02_1_1"
- (pin passive line (at -5.08 1.27 0) (length 3.81)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -1.27 0) (length 3.81)
- (name "P2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (id 0) (at 0 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X03" (id 1) (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (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)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X03_0_1"
- (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 0.127) (end 0.254 -0.127)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 2.667) (end 0.254 2.413)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 3.81) (end 1.27 -3.81)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CONN_01X03_1_1"
- (pin passive line (at -5.08 2.54 0) (length 3.81)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 0 0) (length 3.81)
- (name "P2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -2.54 0) (length 3.81)
- (name "P3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (id 0) (at 0 8.89 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X06" (id 1) (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (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)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X06_0_1"
- (rectangle (start -1.27 -6.223) (end 0.254 -6.477)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 -3.683) (end 0.254 -3.937)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 1.397) (end 0.254 1.143)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 3.937) (end 0.254 3.683)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 6.477) (end 0.254 6.223)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 7.62) (end 1.27 -7.62)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CONN_01X06_1_1"
- (pin passive line (at -5.08 6.35 0) (length 3.81)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 3.81 0) (length 3.81)
- (name "P2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 1.27 0) (length 3.81)
- (name "P3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -1.27 0) (length 3.81)
- (name "P4" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -3.81 0) (length 3.81)
- (name "P5" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -6.35 0) (length 3.81)
- (name "P6" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:Jumper3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "JP" (id 0) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Jumper3" (id 1) (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Jumper3_0_1"
- (rectangle (start -1.27 2.54) (end 1.27 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "Jumper3_1_1"
- (pin passive line (at -3.81 0 0) (length 2.54)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 3.81 1.27 180) (length 2.54)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 3.81 -1.27 180) (length 2.54)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.635 2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "C" (id 1) (at 0.635 -2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762)
- (xy 2.032 -0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.032 0.762)
- (xy 2.032 0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "C_1_1"
- (pin passive line (at 0 3.81 270) (length 2.794)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "1" (effects (font (size 1.016 1.016))))
- )
- (pin passive line (at 0 -3.81 90) (length 2.794)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "2" (effects (font (size 1.016 1.016))))
- )
- )
- )
- (symbol "global:CP" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.635 2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CP" (id 1) (at 0.635 -2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "CP* Elko* TantalC* C*elec c_elec* SMD*_Pol" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CP_0_1"
- (rectangle (start -2.286 0.508) (end -2.286 1.016)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -2.286 0.508) (end 2.286 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.778 2.286)
- (xy -0.762 2.286)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 2.794)
- (xy -1.27 1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start 2.286 1.016) (end -2.286 1.016)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 2.286 1.016) (end 2.286 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CP_1_1"
- (pin passive line (at 0 3.81 270) (length 2.794)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "1" (effects (font (size 1.016 1.016))))
- )
- (pin passive line (at 0 -3.81 90) (length 2.794)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "2" (effects (font (size 1.016 1.016))))
- )
- )
- )
- (symbol "global:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (id 0) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "D" (id 1) (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "D_0_1"
- (polyline
- (pts
- (xy -1.27 1.27)
- (xy -1.27 -1.27)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy -1.27 0)
- (xy 1.27 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- )
- (symbol "D_1_1"
- (pin passive line (at -3.81 0 0) (length 2.54)
- (name "K" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 3.81 0 180) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:LM317" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 3.81 -6.35 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "LM317" (id 1) (at 0 5.08 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.524 1.524)))
- )
- (symbol "LM317_0_1"
- (rectangle (start -5.08 3.81) (end 5.08 -5.08)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "LM317_1_1"
- (pin input line (at 0 -10.16 90) (length 5.08)
- (name "Adj" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 10.16 0 180) (length 5.08)
- (name "Vout" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -10.16 0 0) (length 5.08)
- (name "Vin" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:N_MOSFET" (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "Q" (id 0) (at 4.064 3.556 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "N_MOSFET" (id 1) (at 0 -3.556 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "N_MOSFET_0_1"
- (polyline
- (pts
- (xy -1.27 1.016)
- (xy 1.27 1.016)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.016 0.508)
- (xy -1.016 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.762 0.508)
- (xy -1.27 0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.254 -0.508)
- (xy 0 -0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.254 0.508)
- (xy 0.254 0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 -0.254)
- (xy 0 -0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 -0.254)
- (xy 0.254 -0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0.508)
- (xy 0 -0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 1.27)
- (xy 0 1.016)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.254 -0.508)
- (xy 0 -0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 0.508)
- (xy 1.27 0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 -1.27)
- (xy 0 -1.27)
- (xy 0 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.016 0.508)
- (xy 1.016 -1.27)
- (xy 1.27 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0.254)
- (xy -0.254 -0.508)
- (xy 0.254 -0.508)
- (xy 0 0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 0 0) (radius 2.032)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "N_MOSFET_1_1"
- (pin input line (at 0 6.35 270) (length 5.08)
- (name "G" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 6.35 -1.27 180) (length 5.08)
- (name "D" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -6.35 -1.27 0) (length 5.08)
- (name "S" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "R" (id 0) (at 2.032 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "R" (id 1) (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at -1.778 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_0_1"
- (rectangle (start -1.016 -2.54) (end 1.016 2.54)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "R_1_1"
- (pin passive line (at 0 3.81 270) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "relay:SRD-03VDC-SL-C" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "K" (id 0) (at 6.985 -6.35 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "SRD-03VDC-SL-C" (id 1) (at -9.525 0 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at -1.27 0 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at -1.27 0 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "SRD-03VDC-SL-C_0_1"
- (rectangle (start -7.62 5.08) (end 7.62 -5.08)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start -5.08 -0.635) (mid -5.3848 -0.9398) (end -5.08 -1.27)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start -5.08 -0.635) (mid -4.7752 -0.3302) (end -5.08 0)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start -5.08 0.635) (mid -5.3848 0.3302) (end -5.08 0)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start -5.08 0.635) (mid -4.7752 0.9398) (end -5.08 1.27)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "SRD-03VDC-SL-C_1_1"
- (pin input line (at -5.08 10.16 270) (length 5.08)
- (name "A1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -5.08 -10.16 90) (length 5.08)
- (name "A2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 5.08 -10.16 90) (length 5.08)
- (name "COM" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 10.16 270) (length 5.08)
- (name "NO" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 6.35 10.16 270) (length 5.08)
- (name "NC" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- )
- )
- )
- (junction (at 151.13 22.86) (diameter 0) (color 0 0 0 0)
- (uuid 12cab5ba-fc88-48ed-85c8-4736776eead4)
- )
- (junction (at 163.195 22.86) (diameter 0) (color 0 0 0 0)
- (uuid 27c4a43d-475e-4442-8a4f-1614fa569c1e)
- )
- (junction (at 123.825 22.86) (diameter 0) (color 0 0 0 0)
- (uuid 3667df37-8b6b-45a2-b1cf-0caa02e9cbf7)
- )
- (junction (at 146.685 44.45) (diameter 0) (color 0 0 0 0)
- (uuid 36cc4cd8-8ee2-4330-ad93-a9b452920a59)
- )
- (junction (at 151.13 33.02) (diameter 0) (color 0 0 0 0)
- (uuid 9dfff5a7-b152-467d-9ee8-03c873f99150)
- )
- (junction (at 146.685 33.02) (diameter 0) (color 0 0 0 0)
- (uuid b68e8bb4-1b33-40cd-883c-3ecaef6088c0)
- )
- (junction (at 137.795 44.45) (diameter 0) (color 0 0 0 0)
- (uuid dcdc9b64-fc5c-44f5-bfee-3bb6a7067acf)
- )
- (junction (at 137.795 33.02) (diameter 0) (color 0 0 0 0)
- (uuid e7ec5feb-0d8c-485f-9105-2472bb2bd9ac)
- )
- (junction (at 155.575 22.86) (diameter 0) (color 0 0 0 0)
- (uuid f24dfdde-64f5-4e3e-8400-c20e223b4a27)
- )
- (no_connect (at 146.685 189.23) (uuid 032d65c2-7329-4437-9bca-645a5a19ea0d))
- (no_connect (at 49.53 107.95) (uuid 19760018-33b7-4424-9ad6-110ecafffd4d))
- (no_connect (at 146.685 180.34) (uuid 2935555b-0281-41d0-88d2-580ab2521939))
- (no_connect (at 49.53 105.41) (uuid 47ed39b6-afbe-4cdf-be2b-3f1627c01ff1))
- (no_connect (at 146.685 193.04) (uuid 64c44090-b7d9-495d-8f8b-f4f8507eead2))
- (no_connect (at 224.79 144.78) (uuid 6bfb5651-827a-4595-b2df-edc4f44c6792))
- (no_connect (at 72.39 107.95) (uuid 7bf4ccb3-3a6f-4d3f-b302-6dd0a55dc487))
- (no_connect (at 72.39 105.41) (uuid 9ca03e6c-cd2c-432f-aadf-28215cf987d6))
- (no_connect (at 146.685 184.785) (uuid ba4b8921-d5c4-4a24-ab7c-70ef29dd94df))
- (no_connect (at 262.89 146.05) (uuid c533ac37-ca25-480a-b095-2a69f3c33481))
- (wire (pts (xy 151.13 33.02) (xy 155.575 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 049a65be-1c50-4096-a9f0-29be3b0966b1)
- )
- (wire (pts (xy 46.99 187.96) (xy 49.53 187.96))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 056b4145-87c8-4b0d-9109-59cd85115e44)
- )
- (wire (pts (xy 155.575 22.86) (xy 163.195 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0b0bc7c8-975a-444d-85b1-ee2365056185)
- )
- (wire (pts (xy 40.64 68.58) (xy 38.1 68.58))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 191d2b00-ca8c-4858-9f41-3f4c7d0039d2)
- )
- (polyline (pts (xy 177.8 165.1) (xy 177.8 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 20e98b95-5df8-4c23-ba7c-b8992347c93b)
- )
- (wire (pts (xy 80.01 26.67) (xy 77.47 26.67))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 211f0f9d-2ff8-4a7c-bd19-f260e2752d2b)
- )
- (wire (pts (xy 151.13 24.765) (xy 151.13 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 26384a53-f634-4042-b9b6-48b41dd5a076)
- )
- (wire (pts (xy 163.195 22.86) (xy 169.545 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 33fda79b-8e95-42b6-877c-e18611268b35)
- )
- (polyline (pts (xy 106.68 12.7) (xy 106.68 120.65))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 37a1e64f-b6ed-41d8-80a6-fbd054a23da7)
- )
- (wire (pts (xy 146.685 34.925) (xy 146.685 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 47834d79-b590-44a9-89b9-70730ed537f4)
- )
- (polyline (pts (xy 177.8 124.46) (xy 284.48 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 49fde31f-9d60-4c61-a0ec-ec43d2a5c48c)
- )
- (polyline (pts (xy 106.68 50.8) (xy 284.48 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 58ef96df-3565-4203-8c1f-47b64d65bf9b)
- )
- (wire (pts (xy 109.22 191.77) (xy 109.22 190.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5a6b158d-56e4-4138-846c-01af3f5b62c7)
- )
- (wire (pts (xy 137.795 44.45) (xy 137.795 45.72))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5e7c3709-c720-485d-bf26-f3e0f1179b67)
- )
- (wire (pts (xy 163.195 44.45) (xy 163.195 39.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6030a262-b12f-4684-8abf-b24ef9ee2731)
- )
- (wire (pts (xy 46.99 167.64) (xy 46.99 166.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 60e50bb0-bcb4-4c7e-9a91-a11e3df64469)
- )
- (wire (pts (xy 46.99 140.97) (xy 49.53 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 665a2750-6a96-4ef0-bdfb-d251122be3c2)
- )
- (wire (pts (xy 109.22 144.78) (xy 109.22 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7034858b-006d-4d38-ae1e-d64468b9d5a0)
- )
- (wire (pts (xy 137.795 44.45) (xy 146.685 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7148843c-4cb9-4241-be80-fa247081dd5f)
- )
- (wire (pts (xy 155.575 33.02) (xy 155.575 31.75))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 75d71280-7fd1-4dd7-9da7-c4c7bc3282be)
- )
- (wire (pts (xy 30.48 25.4) (xy 27.94 25.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 77298cdf-043c-4b5e-ac90-7a472ef0c50c)
- )
- (wire (pts (xy 40.64 25.4) (xy 38.1 25.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7b8e6be9-bb23-40a7-bdcc-af8b61120789)
- )
- (wire (pts (xy 120.015 22.86) (xy 123.825 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7d07a3ae-1ea0-43f0-9808-70134cfe8b2f)
- )
- (wire (pts (xy 40.64 46.99) (xy 38.1 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 80f2d838-583b-4c51-b5f8-1b80478a616d)
- )
- (wire (pts (xy 155.575 24.13) (xy 155.575 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8391b1c5-6dc9-4fc1-a678-da6c0d728c7e)
- )
- (wire (pts (xy 151.13 33.02) (xy 151.13 32.385))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 85dab7a4-9a88-486d-b958-86a38a3b4fd6)
- )
- (wire (pts (xy 123.825 30.48) (xy 123.825 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 889a8e49-df29-41a8-94fd-e1b6c32734ef)
- )
- (wire (pts (xy 69.85 26.67) (xy 67.31 26.67))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8e93e18d-65ee-4fec-a868-b5c262a89a01)
- )
- (wire (pts (xy 146.685 33.02) (xy 151.13 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 926c953c-076c-4cc2-a1f9-c5e73322aa99)
- )
- (polyline (pts (xy 135.89 120.65) (xy 12.7 120.65))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 96cbe833-195f-4cfd-8a45-24a70913e686)
- )
- (wire (pts (xy 46.99 191.77) (xy 46.99 190.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9b0a4a24-2301-4211-91da-6014155694fd)
- )
- (wire (pts (xy 109.22 140.97) (xy 111.76 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9d0c028d-cdf6-4359-9e86-5e3901fcba1f)
- )
- (wire (pts (xy 80.01 48.26) (xy 77.47 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9eb90413-0bcb-4368-8379-fdd39b87809d)
- )
- (wire (pts (xy 109.22 163.83) (xy 111.76 163.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a3f4d251-47de-49ab-a8f3-7e6144167d1d)
- )
- (wire (pts (xy 137.795 33.02) (xy 146.685 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a8741338-f49e-4272-adf5-177861d61fc5)
- )
- (wire (pts (xy 137.795 33.02) (xy 137.795 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a9e3f1f3-39d6-4fe3-a2f5-3897a01d127f)
- )
- (wire (pts (xy 30.48 68.58) (xy 27.94 68.58))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a9f06535-a3eb-447a-9fcd-2ffcf2dff613)
- )
- (wire (pts (xy 151.13 22.86) (xy 155.575 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1149e7a-7c6f-47c9-a6a3-c54104a1b04d)
- )
- (wire (pts (xy 109.22 190.5) (xy 111.76 190.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b29edaad-6674-478f-89ec-0896a463f0f7)
- )
- (wire (pts (xy 46.99 143.51) (xy 49.53 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b4368ff1-bc59-4616-a691-81a509c5041d)
- )
- (wire (pts (xy 146.685 42.545) (xy 146.685 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b4490558-6ee9-4d84-8e69-e5a0059a26a0)
- )
- (polyline (pts (xy 12.7 83.82) (xy 106.68 83.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b49a42bc-1123-4a4d-95e1-16790072a667)
- )
- (wire (pts (xy 46.99 163.83) (xy 49.53 163.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b4f8db63-3a7a-453a-9083-71697e802252)
- )
- (wire (pts (xy 46.99 144.78) (xy 46.99 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b5a1ea2e-6cd6-4b40-83e5-ab008a80d9fa)
- )
- (wire (pts (xy 109.22 143.51) (xy 111.76 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c26d6e4d-ba6b-4443-92d5-594286d90600)
- )
- (wire (pts (xy 123.825 44.45) (xy 137.795 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c34d8c10-a1ea-4eec-827f-935b3779d37e)
- )
- (wire (pts (xy 109.22 167.64) (xy 109.22 166.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d0be9dfe-8ece-4f73-abba-06053543c895)
- )
- (wire (pts (xy 163.195 22.86) (xy 163.195 31.75))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d2566c46-f325-4b14-a460-18a1efeba86e)
- )
- (wire (pts (xy 109.22 187.96) (xy 111.76 187.96))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d443036b-4ce3-4ff8-a3b5-657b2cdbe14d)
- )
- (polyline (pts (xy 180.34 50.8) (xy 180.34 11.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d5bf2714-3e68-49b7-878f-2f2d0d5d778e)
- )
- (wire (pts (xy 247.65 138.43) (xy 245.11 138.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d6168d31-c76e-4c6f-8cc8-ab039b7d5246)
- )
- (wire (pts (xy 80.01 69.85) (xy 77.47 69.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d769fe99-fc70-4b3a-bd89-20cca10966d9)
- )
- (wire (pts (xy 30.48 46.99) (xy 27.94 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dc122d52-f966-4692-b252-4561167225be)
- )
- (wire (pts (xy 46.99 166.37) (xy 49.53 166.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dde350ad-9b9c-440e-9b95-2050124de0c1)
- )
- (wire (pts (xy 69.85 48.26) (xy 67.31 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e1bc5ac9-8885-404c-a0e0-64f1be99c08c)
- )
- (wire (pts (xy 146.685 44.45) (xy 163.195 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e1df89f7-7fe5-4628-b5f5-025ec9946479)
- )
- (polyline (pts (xy 135.89 198.12) (xy 135.89 120.65))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e2c47f33-a0fa-42e1-94f0-cf06e95526d7)
- )
- (wire (pts (xy 109.22 166.37) (xy 111.76 166.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e7519d59-493a-4049-8d91-67ad836540f5)
- )
- (wire (pts (xy 123.825 38.1) (xy 123.825 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e7806100-743c-4fb8-9807-29edcc5aee9d)
- )
- (wire (pts (xy 147.955 22.86) (xy 151.13 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e91f61d1-583a-4f58-8231-4a7f30206a02)
- )
- (wire (pts (xy 123.825 22.86) (xy 127.635 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eedbb543-4cea-4f91-b7db-103623aa4a33)
- )
- (wire (pts (xy 46.99 190.5) (xy 49.53 190.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid efd3511d-4a19-4fd8-a0da-72bc25c8195d)
- )
- (wire (pts (xy 69.85 69.85) (xy 67.31 69.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f27de6b1-ef83-46fc-84f7-c7375ca423cd)
- )
- (text "A Faire:\n- Sonde PH\n- Sonde EC\n- 4 niveau d'eau" (at 3.81 -4.445 0)
- (effects (font (size 2.54 2.54)) (justify left bottom))
- (uuid e18f5fbc-ade5-4ad9-bd75-77e3d06bdec1)
- )
- (label "RelayIn_5" (at 224.79 154.94 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 001b152f-b017-4c09-a89f-b06696bbd143)
- )
- (label "230V" (at 191.77 36.83 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 0105dd59-d166-4cd7-b878-8c2bd1b415e4)
- )
- (label "3.3V" (at 169.545 22.86 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 01cd3226-03b9-40ed-8e21-47bb912927c4)
- )
- (label "3.3V" (at 26.67 180.34 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 0235a78a-2da2-486d-8eb4-4ca4c946b557)
- )
- (label "relayOUT_5" (at 119.38 165.1 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 034d3e75-11a3-48d3-83a9-0be7d22fdb92)
- )
- (label "Pompe_5" (at 67.31 48.26 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 05ba2a42-2656-4f6a-8468-1a004c26597b)
- )
- (label "GND" (at 48.26 53.34 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 0ae99969-20f8-4055-b9b2-9569218f1a75)
- )
- (label "Niveau_4" (at 262.89 148.59 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 0d801c2e-3bc1-4145-850e-41f8229cb027)
- )
- (label "12V" (at 120.015 22.86 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 0dc790ff-0266-4901-8cad-fd1feefcb7bc)
- )
- (label "RelayIn_6" (at 49.53 100.33 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 10163896-60e4-40b8-bbd4-ba16c67a503f)
- )
- (label "sda" (at 191.77 41.91 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 11a012ad-0631-4540-b0eb-24666d745aab)
- )
- (label "GND" (at 191.77 44.45 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 11cbbc1b-b5ef-4557-b6f8-4d85853c067a)
- )
- (label "Bobine_1" (at 46.99 133.35 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 150cba5e-a7e5-4339-985b-d460badb261b)
- )
- (label "12V" (at 81.28 142.24 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 152bd07f-1d36-4b68-b67c-4ece805a0c70)
- )
- (label "Pompe_3" (at 27.94 68.58 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 18d71a0b-7ded-4c14-a932-a8fd64ebbf11)
- )
- (label "Niveau_1" (at 224.79 149.86 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 1e3342f5-01f6-42a4-8be4-5a734ec3fe7f)
- )
- (label "12V" (at 213.36 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 1e997b66-7e5b-45a2-9775-b752867b59ee)
- )
- (label "relayOUT_6" (at 119.38 189.23 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 209c7bff-b1fe-4f28-ac77-2c3e8f146950)
- )
- (label "3.3V" (at 245.11 130.81 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 20e6488f-1b83-4022-ac96-e71a7aa5f82d)
- )
- (label "3.3V" (at 88.9 156.21 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 238b6ece-95d8-4f89-bfa6-cc7175e14fdd)
- )
- (label "relayOUT_4" (at 213.36 40.64 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 28fb0381-8d32-4e7b-b872-2122ed1e5a84)
- )
- (label "GND" (at 237.49 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 2a2dc186-b844-4b74-9d96-5c94a13d0e71)
- )
- (label "PompeOut_1" (at 191.77 26.67 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 31eb1fb2-d45f-4fb5-bead-7528fac637a1)
- )
- (label "PompeOut_3" (at 191.77 16.51 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 32c30a9c-672a-4b02-991c-7f1a5ddcae88)
- )
- (label "GND" (at 27.94 33.02 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 3370eab9-86e0-4c9f-bead-2462428970e9)
- )
- (label "PompeOut_2" (at 191.77 21.59 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 347a438d-00e1-41bc-865a-ca0b4050417a)
- )
- (label "Neutre" (at 237.49 16.51 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 36545c09-abb0-49ec-8df6-f286fdd62568)
- )
- (label "Bobine_3" (at 46.99 180.34 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 3fbe492f-7074-4c0a-bfa2-d2d6d51c2205)
- )
- (label "GND" (at 87.63 54.61 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 4237e7ba-7669-40ef-8a33-df65cef9bfb0)
- )
- (label "RelayIn_3" (at 209.55 149.86 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 426bf105-d652-4210-b91b-1a79c506c00e)
- )
- (label "Bobine_3" (at 72.39 95.25 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 42d5bced-ab3c-4099-aa34-ff5824e82eb0)
- )
- (label "GND" (at 67.31 77.47 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 44171ece-bb55-40fa-a83e-59241d46f557)
- )
- (label "GND" (at 48.26 74.93 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 46132384-18b9-4330-8462-c5871721d315)
- )
- (label "RelayIn_4" (at 209.55 152.4 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 469339ba-9b60-4801-91a7-ffd4579a032a)
- )
- (label "12V" (at 81.28 189.23 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 46fff5f6-bc98-4329-8935-6db1aeed912d)
- )
- (label "GND" (at 27.94 76.2 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 49e104bb-cbe7-437b-8417-4e9bbb1d536c)
- )
- (label "PompeOut_5" (at 87.63 41.91 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 49e67aa1-3a4a-4a7c-acd0-a3f386d4e5ce)
- )
- (label "Neutre" (at 237.49 19.05 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 4a4a6381-78ca-4fac-b1d6-86e0ff8d0e27)
- )
- (label "RelayIn_4" (at 49.53 97.79 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 4df3a5a2-18ea-46f6-a64a-19b743d0797b)
- )
- (label "GND" (at 209.55 142.24 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 504d3f9a-0229-4dce-88f6-a99a060bbfe1)
- )
- (label "GND" (at 247.65 143.51 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 511123b9-c5fb-4030-9237-7ce904aea3eb)
- )
- (label "GND" (at 247.65 156.21 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 53571905-25f3-4be4-90b5-3280a06044af)
- )
- (label "PompeOut_5" (at 213.36 21.59 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 53a20c67-329d-4cfc-8366-79816b4420ea)
- )
- (label "GND" (at 27.94 54.61 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 57c7a84e-7520-42e0-a28e-a3fcb0a9f8a5)
- )
- (label "GND" (at 87.63 33.02 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 57ddd81c-8b8c-41d0-b942-098f804cdc8f)
- )
- (label "230V" (at 81.28 144.78 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 5951a93e-2c13-4263-8f2e-b96e79b6a787)
- )
- (label "relayOUT_2" (at 57.15 165.1 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 614ac11f-061c-497c-95e1-fcdae05673e8)
- )
- (label "GND" (at 237.49 31.75 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 61cbc97c-9fd1-4c13-b4cc-a2a016d141f3)
- )
- (label "230V" (at 19.05 144.78 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 6304e9cd-9f51-430c-a069-edf334002353)
- )
- (label "GND" (at 251.46 162.56 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 660b8a46-caa3-4af1-9fb7-44b6e432abb7)
- )
- (label "RelayIn_3" (at 49.53 95.25 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 685f9d56-6c0c-4495-85e4-90f1247f93e8)
- )
- (label "12V" (at 81.28 165.1 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 68ba9ef1-5698-4407-b43c-82a99a01848d)
- )
- (label "RelayIn_6" (at 224.79 152.4 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 6c17ab68-a9c5-4c13-826f-0a98948c322e)
- )
- (label "PompeOut_6" (at 213.36 16.51 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 6e10f160-3ca4-452a-99d2-c5c9f13b568d)
- )
- (label "GND" (at 48.26 31.75 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 7173f1ce-ec4e-4e4b-a940-cbe6117cef66)
- )
- (label "12V" (at 213.36 24.13 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 7605761f-cf96-44cd-a98d-96eb69ad43f2)
- )
- (label "Pompe_1" (at 27.94 25.4 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 7879945c-7a27-4de8-bc85-19f08deb1280)
- )
- (label "3.3V" (at 262.89 138.43 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 7967eeda-ecda-4ff4-ad48-5bcfb477ea29)
- )
- (label "230V" (at 81.28 167.64 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 7977391f-8c46-4426-80ee-e8b247beee06)
- )
- (label "3.3V" (at 220.98 161.29 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 7b6b8370-5a87-41a5-bc0a-09df4afe2291)
- )
- (label "3.3V" (at 26.67 133.35 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 84fb0312-7118-4c1f-aaf2-ab6389ba2dad)
- )
- (label "3.3V" (at 259.08 162.56 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 85398fbb-014e-4092-b3a7-cd712599d0ed)
- )
- (label "RelayIn_1" (at 209.55 144.78 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 881b6b66-763a-479b-97d0-b35b65db68d8)
- )
- (label "12V" (at 213.36 19.05 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 889a73ff-3f2f-4233-895a-784a8cbb1624)
- )
- (label "sda" (at 224.79 139.7 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 8c446bc6-f2fe-42c9-881c-3788d8856632)
- )
- (label "RelayIn_2" (at 209.55 147.32 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 8d7c661d-13de-4a7d-a3ce-e7233edef1e5)
- )
- (label "Bobine_5" (at 72.39 100.33 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 8eeb71f9-9f86-410e-9e09-ce21b358793f)
- )
- (label "relayOUT_1" (at 57.15 142.24 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 923e5ff8-8f9f-499c-9b64-b020bc421c63)
- )
- (label "GND" (at 209.55 139.7 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 92e499da-2228-4824-8710-fefc68179fa0)
- )
- (label "Niveau_3" (at 262.89 151.13 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 9611a1d4-c5c5-4a14-9c64-9f5b82ef1ba4)
- )
- (label "Neutre" (at 237.49 21.59 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 989519da-3721-4db0-8ba2-79ef3be3c26a)
- )
- (label "Niveau_2" (at 224.79 147.32 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 9ceed9ea-67b1-4cef-9898-081376de7146)
- )
- (label "3.3V" (at 224.79 137.16 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 9d769249-722e-4d5a-bd47-4b6edff57d23)
- )
- (label "sdl" (at 262.89 143.51 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 9e2ac863-bcfa-4f82-9e18-dd6bc6aaa596)
- )
- (label "12V" (at 19.05 165.1 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 9f6b9108-50a0-477c-9a6e-4dcdfb149725)
- )
- (label "Pompe_3" (at 247.65 151.13 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid a071ec41-b813-4873-a7a0-a9d836212d71)
- )
- (label "Bobine_6" (at 72.39 102.87 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a37465b5-ef88-4166-bbc5-dfb4868a7fc7)
- )
- (label "Pompe_1" (at 247.65 146.05 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid a98fcf75-dfb5-44db-b354-64077916238e)
- )
- (label "GND" (at 87.63 76.2 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid a9ab815e-d6d4-45f6-9f75-30b58c167791)
- )
- (label "Bobine_2" (at 46.99 156.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid aa0c34b5-8795-43b6-9d59-0b813ac927ba)
- )
- (label "Bobine_4" (at 109.22 133.35 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid aa199f8a-8316-46b7-8291-9a2ccd806b60)
- )
- (label "Bobine_2" (at 72.39 92.71 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid aa563e66-2bb9-46f5-9a03-384d09fad725)
- )
- (label "Pompe_2" (at 27.94 46.99 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid ac073b46-6687-4b27-ba2a-fd16c45a5515)
- )
- (label "3.3V" (at 88.9 180.34 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid ad342722-b51e-4ba2-8cb5-80d97de938ad)
- )
- (label "RelayIn_1" (at 49.53 90.17 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid afa8271d-fa34-4392-9a1e-1919bad47bf1)
- )
- (label "Pompe_6" (at 67.31 69.85 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid b09a0402-86a2-404c-9955-12906ce6db83)
- )
- (label "PompeOut_4" (at 87.63 20.32 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b20299db-1c86-4701-8232-17ab04d228b5)
- )
- (label "12V" (at 191.77 46.99 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid b2bfbdb4-d339-4269-a9e2-597170b684ff)
- )
- (label "relayOUT_3" (at 57.15 189.23 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b67762ea-37a0-4f29-8b1f-c8167023b9a5)
- )
- (label "GND" (at 237.49 26.67 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b684044c-8de3-4c2b-95c4-17ad60a99042)
- )
- (label "GND" (at 67.31 34.29 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid b705b624-3c8d-4fc5-a51a-73d70aa4c559)
- )
- (label "Bobine_5" (at 109.22 156.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b718cfe7-bb4a-4ce1-9d55-7bf1a49a405a)
- )
- (label "RelayIn_5" (at 49.53 102.87 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid b74e8568-9206-4fbb-a28b-dd3a595c0734)
- )
- (label "PompeOut_3" (at 48.26 62.23 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b98fe80b-4f2e-497d-a5ec-fc5c8515b96b)
- )
- (label "Bobine_6" (at 109.22 180.34 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b9a116d4-532c-4bcd-a19b-cec395ac8568)
- )
- (label "GND" (at 209.55 154.94 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid b9edf2ca-f752-48dd-8089-663b955e4298)
- )
- (label "PompeOut_6" (at 87.63 63.5 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ba407883-d57e-4095-a04e-6617f26cfd89)
- )
- (label "12V" (at 191.77 24.13 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ba79e6cb-e427-4779-ab1c-2e2ce1e20772)
- )
- (label "Pompe_4" (at 67.31 26.67 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid bb0ef6e0-b6f7-4438-af9d-9410d01e2634)
- )
- (label "PompeOut_1" (at 48.26 19.05 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid bbfe0480-4ae5-4ba6-9f64-7f49c39a878b)
- )
- (label "PompeOut_4" (at 213.36 26.67 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid bc600272-a7d0-4549-88f8-3562eaba9fda)
- )
- (label "3.3V" (at 26.67 156.21 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid be5e7bec-39c3-469f-80ac-8bae1bb640b0)
- )
- (label "relayOUT_4" (at 119.38 142.24 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c17fcbce-a136-469c-ae49-a22cbbedd386)
- )
- (label "relayOUT_5" (at 213.36 38.1 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c2b2855b-dade-4127-8d01-9b14396314be)
- )
- (label "Neutre" (at 191.77 34.29 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c3f2f979-2bf8-4b13-808f-9171f88404e1)
- )
- (label "GND" (at 209.55 137.16 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid c6e9b466-aab6-4e6c-b5ec-f92aadff8c89)
- )
- (label "relayOUT_2" (at 213.36 45.72 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ced56e9c-d90f-4582-8d48-3fbb7b8f6c36)
- )
- (label "Pompe_5" (at 262.89 156.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid d297169f-e147-4e51-a663-e546efecfc69)
- )
- (label "12V" (at 19.05 189.23 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid d505fa7a-4e17-479d-acf9-ca4dd07c894c)
- )
- (label "PompeOut_2" (at 48.26 40.64 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid d56f8015-e2b3-48ca-ad91-6bf08e48eb70)
- )
- (label "GND" (at 67.31 55.88 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid d5949464-4749-4767-9fc4-6653f66e247b)
- )
- (label "Pompe_2" (at 247.65 148.59 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid d5d8fb41-13cd-4fd2-ba1a-bdc27fe563e7)
- )
- (label "GND" (at 213.36 161.29 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid d7eb8033-0fdd-4b9c-a112-5a53504fc058)
- )
- (label "Bobine_1" (at 72.39 90.17 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid d954fcdf-d698-4412-84f1-e98bd871913d)
- )
- (label "12V" (at 191.77 19.05 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid dc75429f-4547-4325-b154-26cd1a130abd)
- )
- (label "sda" (at 262.89 140.97 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid e02d5a8b-6e94-478a-9637-fd03f776fd9a)
- )
- (label "3.3V" (at 88.9 133.35 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid e1e38240-f962-44fc-ace3-cecf7eb3a92a)
- )
- (label "230V" (at 81.28 191.77 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid e379c82b-69b0-421b-b757-a100629e3c92)
- )
- (label "relayOUT_3" (at 213.36 43.18 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e5d7bed7-a292-42ca-8096-cd74112a8c14)
- )
- (label "Bobine_4" (at 72.39 97.79 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid eb9a5d30-9642-44a5-b547-9e859921de2d)
- )
- (label "relayOUT_1" (at 213.36 48.26 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid edf999ac-859b-4be8-87b6-c246dd1e76fa)
- )
- (label "RelayIn_2" (at 49.53 92.71 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f089debe-c828-441b-ae13-0cee59b2dd62)
- )
- (label "230V" (at 19.05 167.64 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f16e8bc9-39ac-4377-8121-163096dd890b)
- )
- (label "GND" (at 247.65 140.97 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid f5c5a2f6-50fa-40ed-8d79-94ec3aa5e74f)
- )
- (label "230V" (at 19.05 191.77 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f704a251-4b48-4b02-977f-38c57c187f86)
- )
- (label "12V" (at 191.77 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid f73fbe7f-3ec0-431f-9599-5580ff95f250)
- )
- (label "relayOUT_6" (at 213.36 35.56 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid f9c5a76b-3e50-4e36-b529-cb9b5ba9b998)
- )
- (label "GND" (at 137.795 45.72 270)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid fa414e9a-7d82-431d-b725-d7476175744e)
- )
- (label "Pompe_4" (at 247.65 153.67 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid fbb89801-e99d-4f13-93f9-90542c9acdf9)
- )
- (label "sdl" (at 191.77 39.37 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid fd50eac4-210e-47ce-948c-8f93f04575ea)
- )
- (label "12V" (at 19.05 142.24 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid fec97162-8f8c-4810-84c1-67fd30638b2c)
- )
- (label "sdl" (at 224.79 142.24 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid ff30c665-7c2e-4335-b4cf-1678debd0b42)
- )
- (label "Pompe_6" (at 262.89 153.67 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ff559bee-746a-4778-86c4-6cb4480facdf)
- )
- (symbol (lib_id "global:R") (at 137.795 40.64 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061085c78)
- (property "Reference" "R33" (id 0) (at 139.827 40.64 90))
- (property "Value" "" (id 1) (at 137.795 40.64 90))
- (property "Footprint" "" (id 2) (at 136.017 40.64 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 137.795 40.64 0))
- (property "Partkeepr" "913" (id 4) (at -96.52 157.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5447958f-ed8d-41c2-b626-b9a7ab93b8a9))
- (pin "2" (uuid 943966ca-6d39-46ad-b2f0-ad18a7ec43c9))
- )
- (symbol (lib_id "global:R") (at 151.13 28.575 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061085c7f)
- (property "Reference" "R35" (id 0) (at 153.162 28.575 90))
- (property "Value" "" (id 1) (at 151.13 28.575 90))
- (property "Footprint" "" (id 2) (at 149.352 28.575 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 151.13 28.575 0))
- (property "Partkeepr" "914" (id 4) (at -100.965 133.985 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fac04735-f2c2-490f-b61b-bf87579c90b9))
- (pin "2" (uuid e321a3d9-7d02-4d1f-8c8b-edd7dab32ac9))
- )
- (symbol (lib_id "global:CP") (at 146.685 38.735 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061085c86)
- (property "Reference" "C17" (id 0) (at 147.32 36.195 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 147.32 41.275 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 146.685 38.735 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 146.685 38.735 0))
- (property "Partkeepr" "609" (id 4) (at -96.52 153.67 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 36dd24f7-efd6-4037-a288-69973fe1c61e))
- (pin "2" (uuid 146c3f84-6b41-401c-a42b-7b6fd3a5ae20))
- )
- (symbol (lib_id "global:CP") (at 123.825 34.29 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061085c90)
- (property "Reference" "C15" (id 0) (at 124.46 31.75 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 124.46 36.83 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 123.825 34.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 123.825 34.29 0))
- (property "Partkeepr" "0610" (id 4) (at 123.825 34.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1f1269bd-8dd0-4c7d-a0e4-c1629224dc2c))
- (pin "2" (uuid e0793e39-74f5-43b2-aaf6-99cc92353959))
- )
- (symbol (lib_id "global:CP") (at 163.195 35.56 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061085cb4)
- (property "Reference" "C19" (id 0) (at 163.83 33.02 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 163.83 38.1 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 163.195 35.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 163.195 35.56 0))
- (property "Partkeepr" "608" (id 4) (at -96.52 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1d05ab86-732f-4d6e-9e63-9fbc0c9371c9))
- (pin "2" (uuid c73d4f34-acaa-4b8a-b26a-7b6f9453c0b7))
- )
- (symbol (lib_id "global:D") (at 155.575 27.94 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061085cc2)
- (property "Reference" "D5" (id 0) (at 157.5562 26.7716 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 157.5562 29.083 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 155.575 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 155.575 27.94 0))
- (property "Partkeepr" "1302" (id 4) (at 51.435 -224.155 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid edd53d05-d48a-408d-965f-14c747ecacbe))
- (pin "2" (uuid fbebc350-0c20-4b54-b916-23bcd51e3596))
- )
- (symbol (lib_id "global:LM317") (at 137.795 22.86 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000610a57a7)
- (property "Reference" "U4" (id 0) (at 137.795 14.3002 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "" (id 1) (at 137.795 16.9926 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 137.795 22.86 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Datasheet" "" (id 3) (at 137.795 22.86 0)
- (effects (font (size 1.524 1.524)))
- )
- (pin "1" (uuid f4fa8f99-d85e-4345-88a4-e22683aa75ed))
- (pin "2" (uuid a8e1d309-4d6c-4ab6-9ecd-d75410734083))
- (pin "3" (uuid 58266d5d-0dfe-409d-9a2f-a787e6714a02))
- )
- (symbol (lib_id "conn:CONN_01X06") (at 186.69 40.64 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006187edec)
- (property "Reference" "P6" (id 0) (at 186.69 31.75 0))
- (property "Value" "" (id 1) (at 184.15 40.64 90))
- (property "Footprint" "" (id 2) (at 186.69 40.64 0))
- (property "Datasheet" "" (id 3) (at 186.69 40.64 0))
- (pin "1" (uuid 22e845f4-47b6-475c-acbf-85363e168eff))
- (pin "2" (uuid 0d625d1c-f11f-44ef-a669-de2a66a632f3))
- (pin "3" (uuid ad95709b-7496-494f-a73c-5ed7c1e804c4))
- (pin "4" (uuid dff3572e-3139-4ebf-9e25-9261b7f054d1))
- (pin "5" (uuid 9dba5b13-8476-4310-830e-33268effbdf6))
- (pin "6" (uuid 439e6629-b6b5-40bf-9da0-c378d036c3b6))
- )
- (symbol (lib_id "NXP:PCF8574") (at 255.27 147.32 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061885823)
- (property "Reference" "U3" (id 0) (at 255.27 132.715 0))
- (property "Value" "" (id 1) (at 255.27 135.0264 0))
- (property "Footprint" "" (id 2) (at 255.27 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 255.27 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 50fe2019-b86a-4f03-9bb5-3f1120c775d4))
- (pin "10" (uuid 16bc9b2e-b939-4984-9077-85791c1ebf2b))
- (pin "11" (uuid 1fcc6aa5-2e82-4b0d-930f-2ff6bcabfcdd))
- (pin "12" (uuid 14fba775-678c-4347-90be-e514e397645b))
- (pin "13" (uuid 891c1eac-3efb-4142-ac2f-67943117b77b))
- (pin "14" (uuid 73bd676e-9e7c-419d-ad2b-6b96ea61aa2e))
- (pin "15" (uuid 881b47d5-5729-4bc4-a17a-e7ef85f11b79))
- (pin "16" (uuid 5c4bcc6b-8918-497a-99d7-a97dd56af06d))
- (pin "2" (uuid a8ebe4b9-d092-4141-996f-6803e796f15c))
- (pin "3" (uuid 827bb4b4-7d6f-4417-9e44-e0fb47ad12f3))
- (pin "4" (uuid 372dc523-c12f-4d58-a04d-2d58079236ae))
- (pin "5" (uuid b4acfff2-8033-425c-87a4-df8e92b5da09))
- (pin "6" (uuid 6b5bed13-74fa-4159-92d2-358da10e8ed3))
- (pin "7" (uuid 2321fac7-9050-4fe9-8cd5-76b36287c84f))
- (pin "8" (uuid 82b53ac5-2666-43cd-a218-50588c668ae0))
- (pin "9" (uuid 6bb20bea-bfc1-40df-beee-6a5e4f942249))
- )
- (symbol (lib_id "NXP:PCF8574") (at 217.17 146.05 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061886f1c)
- (property "Reference" "U2" (id 0) (at 217.17 131.445 0))
- (property "Value" "" (id 1) (at 217.17 133.7564 0))
- (property "Footprint" "" (id 2) (at 217.17 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 217.17 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9aa543e6-eb01-49c3-99d6-3694ae39dad2))
- (pin "10" (uuid 90e1f00c-2532-4942-a5c5-bc88a9e953a2))
- (pin "11" (uuid 88f68856-dab5-41f1-b4aa-9544d5ffdd58))
- (pin "12" (uuid 080e7a50-f9ae-4631-8674-2e3b7d4111be))
- (pin "13" (uuid 870ff8ea-af2c-4a84-a106-6772f0388f6a))
- (pin "14" (uuid 262f218f-ee8f-4da1-bea5-eee7d7237ce9))
- (pin "15" (uuid 612a0d6e-850a-425d-b3c1-d744975d304a))
- (pin "16" (uuid 87e5159d-943d-43a9-a62b-faa1249dd93c))
- (pin "2" (uuid fa25708b-0372-4148-949c-d15a7e86b62c))
- (pin "3" (uuid 105daa9f-653c-4097-9052-56d9fac17b79))
- (pin "4" (uuid 8e4582d8-7a78-4fd4-8aa4-95d3bb6cb583))
- (pin "5" (uuid ecfdf0e8-db68-4d7d-b4bf-5a1d2c29c100))
- (pin "6" (uuid ad6cb09b-3342-44d6-b97f-0ee8b0d0f40b))
- (pin "7" (uuid ad0a5037-6518-41ee-a358-9619f6541216))
- (pin "8" (uuid 7b679aef-35d7-4585-ba26-b7af4dcfcb38))
- (pin "9" (uuid bca46aa8-f88b-4fe1-86fd-b2ffe208ba56))
- )
- (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 99.06 161.29 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061888843)
- (property "Reference" "K5" (id 0) (at 99.06 148.9202 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "" (id 1) (at 99.06 151.6126 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 99.06 160.02 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 99.06 160.02 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 8d348a40-dc1a-409d-9bfd-84c479fcdd47))
- (pin "2" (uuid 279c0554-c28c-4e4b-8a1e-6fa0067a908f))
- (pin "3" (uuid 5446c661-d40f-4e6f-88dc-22bf6648703d))
- (pin "4" (uuid d663539d-f951-4f81-be82-85fa75a6c842))
- (pin "5" (uuid 53356d6a-3a0d-45f4-b54d-81a20427a866))
- )
- (symbol (lib_id "conn:Jumper3") (at 85.09 166.37 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061888849)
- (property "Reference" "JP8" (id 0) (at 85.09 159.639 0))
- (property "Value" "" (id 1) (at 85.09 161.9504 0))
- (property "Footprint" "" (id 2) (at 85.09 166.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 85.09 166.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e2fd5a20-c897-428a-ab7d-02e84090947a))
- (pin "2" (uuid 1d917051-bd87-4797-b31c-8f050d9bdeb0))
- (pin "3" (uuid 8ef93eba-9bde-4a4d-8db6-d8bdac58675b))
- )
- (symbol (lib_id "conn:Jumper3") (at 115.57 165.1 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006188884f)
- (property "Reference" "JP11" (id 0) (at 115.57 158.369 0))
- (property "Value" "" (id 1) (at 115.57 160.6804 0))
- (property "Footprint" "" (id 2) (at 115.57 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 115.57 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6c12f2b8-e0b9-4ed3-9f0f-f7d9231738ec))
- (pin "2" (uuid 794d7436-e729-416a-990e-aad16c486850))
- (pin "3" (uuid 5f3e8a5a-6727-49a5-a1c6-b3e6b29d6eef))
- )
- (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 99.06 185.42 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618897a8)
- (property "Reference" "K6" (id 0) (at 99.06 173.0502 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "" (id 1) (at 99.06 175.7426 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 99.06 184.15 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 99.06 184.15 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 4a55a32f-4baa-4ef7-b2cd-83a3ce1f814d))
- (pin "2" (uuid 8bba4719-a549-4df4-ae22-df29549810d6))
- (pin "3" (uuid e2ed4497-8004-49df-8d57-5786dccdc78f))
- (pin "4" (uuid f3b6f6bb-346c-4a33-8389-3b68dfe5e395))
- (pin "5" (uuid 6296943c-c314-4f64-aff8-cdf862919a0c))
- )
- (symbol (lib_id "conn:Jumper3") (at 85.09 190.5 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618897ae)
- (property "Reference" "JP9" (id 0) (at 85.09 183.769 0))
- (property "Value" "" (id 1) (at 85.09 186.0804 0))
- (property "Footprint" "" (id 2) (at 85.09 190.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 85.09 190.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e28bce97-1d2e-482f-a6d5-9274a01646e3))
- (pin "2" (uuid 6c1e8aa3-f02b-43b4-889f-96ac22a34521))
- (pin "3" (uuid 85583640-979a-4443-b4fa-c0e8e8f8f306))
- )
- (symbol (lib_id "conn:Jumper3") (at 115.57 189.23 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618897b4)
- (property "Reference" "JP12" (id 0) (at 115.57 182.499 0))
- (property "Value" "" (id 1) (at 115.57 184.8104 0))
- (property "Footprint" "" (id 2) (at 115.57 189.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 115.57 189.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c7e3f6d7-6ac4-41f8-94dc-41a330d3da50))
- (pin "2" (uuid e1d7c086-b385-446f-a60c-62ce73bf31e2))
- (pin "3" (uuid 55311644-0d08-4a5f-b5dc-bf36166a582e))
- )
- (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 36.83 138.43 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890ede)
- (property "Reference" "K1" (id 0) (at 36.83 126.0602 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "" (id 1) (at 36.83 128.7526 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 36.83 137.16 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 36.83 137.16 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid f5d57253-aa0f-41cc-b7f3-3486dc7d553c))
- (pin "2" (uuid 52a0d4b1-f57a-402c-b5fc-69635f32e129))
- (pin "3" (uuid cae4100b-18f6-497c-8c5d-8e52b3a4bb08))
- (pin "4" (uuid fae29d7b-6836-44ab-918e-b592fee5518f))
- (pin "5" (uuid c80caea5-edf1-4ec4-a416-68710dcf6937))
- )
- (symbol (lib_id "conn:Jumper3") (at 22.86 143.51 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890ee4)
- (property "Reference" "JP1" (id 0) (at 22.86 136.779 0))
- (property "Value" "" (id 1) (at 22.86 139.0904 0))
- (property "Footprint" "" (id 2) (at 22.86 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 22.86 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a6450e66-4719-474d-94be-c7d37b426880))
- (pin "2" (uuid 2d23d341-c9b3-42ed-a3c7-933c4c40f380))
- (pin "3" (uuid 74fa655e-a292-4a0f-b6fc-489be3138e30))
- )
- (symbol (lib_id "conn:Jumper3") (at 53.34 142.24 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890eea)
- (property "Reference" "JP4" (id 0) (at 53.34 135.509 0))
- (property "Value" "" (id 1) (at 53.34 137.8204 0))
- (property "Footprint" "" (id 2) (at 53.34 142.24 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 53.34 142.24 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 889eb089-c12b-492a-b188-40bc9e87969e))
- (pin "2" (uuid 56540b76-8222-4f5f-b077-f651c3616108))
- (pin "3" (uuid 032eb27d-6d63-404b-b847-95c4cddf6e19))
- )
- (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 36.83 161.29 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890ef6)
- (property "Reference" "K2" (id 0) (at 36.83 148.9202 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "" (id 1) (at 36.83 151.6126 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 36.83 160.02 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 36.83 160.02 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid bcb31922-4a69-4dbc-93dd-f8e79e53bc99))
- (pin "2" (uuid 42ecd0e9-adf7-44bd-bd11-ea0bc56add1a))
- (pin "3" (uuid ab223fcb-816c-4c6f-a284-57e2fc275758))
- (pin "4" (uuid bf222c0a-5926-4757-8e10-228fccaa9ef5))
- (pin "5" (uuid 9b34205f-7ff8-4c16-b79d-aedfb4653f2c))
- )
- (symbol (lib_id "conn:Jumper3") (at 22.86 166.37 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890efc)
- (property "Reference" "JP2" (id 0) (at 22.86 159.639 0))
- (property "Value" "" (id 1) (at 22.86 161.9504 0))
- (property "Footprint" "" (id 2) (at 22.86 166.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 22.86 166.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6796d1b5-10a2-42a0-a9c0-683bd13798b7))
- (pin "2" (uuid f95a38c1-d900-4e19-8454-b03d906df3c5))
- (pin "3" (uuid 5f121c8a-89d4-4050-a803-5ab44d10151f))
- )
- (symbol (lib_id "conn:Jumper3") (at 53.34 165.1 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890f02)
- (property "Reference" "JP5" (id 0) (at 53.34 158.369 0))
- (property "Value" "" (id 1) (at 53.34 160.6804 0))
- (property "Footprint" "" (id 2) (at 53.34 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 53.34 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0c993658-b496-476f-845a-1275b2fb5e44))
- (pin "2" (uuid ed9ad881-64e0-4495-8bf4-75fa678e7242))
- (pin "3" (uuid 9a51e2a1-798a-4988-9150-e4ed140bf41f))
- )
- (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 36.83 185.42 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890f0e)
- (property "Reference" "K3" (id 0) (at 36.83 173.0502 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "" (id 1) (at 36.83 175.7426 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 36.83 184.15 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 36.83 184.15 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 67dc0315-cae0-401a-9cce-09b3260036a5))
- (pin "2" (uuid 8c0b6a47-0493-44df-a67b-54e7a9187ecb))
- (pin "3" (uuid 86816ea0-4629-4d68-a359-5a37aa527e2c))
- (pin "4" (uuid fca0e4c9-9676-4b59-b947-a2abf4de63e5))
- (pin "5" (uuid 865c9782-7b26-458e-8438-ffcf16b19635))
- )
- (symbol (lib_id "conn:Jumper3") (at 22.86 190.5 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890f14)
- (property "Reference" "JP3" (id 0) (at 22.86 183.769 0))
- (property "Value" "" (id 1) (at 22.86 186.0804 0))
- (property "Footprint" "" (id 2) (at 22.86 190.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 22.86 190.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fda0aecd-1460-41cb-af8d-b2c02589f200))
- (pin "2" (uuid e90ba1b6-c433-481a-9561-7e33308f250e))
- (pin "3" (uuid 113ae371-3304-40ef-9740-8c1085275ee3))
- )
- (symbol (lib_id "conn:Jumper3") (at 53.34 189.23 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061890f1a)
- (property "Reference" "JP6" (id 0) (at 53.34 182.499 0))
- (property "Value" "" (id 1) (at 53.34 184.8104 0))
- (property "Footprint" "" (id 2) (at 53.34 189.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 53.34 189.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e8601d96-54ed-49cb-b067-6f14af095c26))
- (pin "2" (uuid c044437f-081a-4239-acbc-bb76b560c957))
- (pin "3" (uuid 10b22e28-8b74-4183-905a-d7322d441f54))
- )
- (symbol (lib_id "relay:SRD-03VDC-SL-C") (at 99.06 138.43 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006189a34c)
- (property "Reference" "K4" (id 0) (at 99.06 126.0602 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "" (id 1) (at 99.06 128.7526 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 99.06 137.16 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 99.06 137.16 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid fe8d3283-ffea-4b06-8db5-d7b93b29186c))
- (pin "2" (uuid 4fec3aaf-a402-4f77-a3a7-fa71953a8768))
- (pin "3" (uuid 4b9fcd16-c8d5-486b-b333-e4aee50d4b39))
- (pin "4" (uuid 5ffba441-e620-4ca8-ba29-40cb54c706dc))
- (pin "5" (uuid 93ec0a94-8dfe-48ea-9bc9-400a010165ec))
- )
- (symbol (lib_id "TI:ULN2803A") (at 60.96 100.33 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006189e6b2)
- (property "Reference" "U1" (id 0) (at 64.77 113.03 0)
- (effects (font (size 1.524 1.524)) (justify left))
- )
- (property "Value" "" (id 1) (at 54.61 87.63 0)
- (effects (font (size 1.524 1.524)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 67.31 99.06 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 67.31 99.06 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 499afab4-e7c0-4cc3-a455-e733103ef5c4))
- (pin "10" (uuid e1050755-aa25-4559-aa8d-94c281d18b72))
- (pin "11" (uuid aa2a1b5e-b453-46c3-85cb-93e5f7dc3712))
- (pin "12" (uuid 09a0b84e-cf7c-4730-a4d6-c852c9edc7c7))
- (pin "13" (uuid bf546a98-bbad-4ad3-b469-4da707fe3191))
- (pin "14" (uuid b38a1427-ae54-41b1-8775-852d9c06fb3e))
- (pin "15" (uuid 710804d8-ada1-4d3f-bd1b-15eb4a0966ee))
- (pin "16" (uuid a31909dc-e2d5-4330-8634-80490cc2f887))
- (pin "17" (uuid 3d6f5816-3372-4df5-8f7c-fbd392513709))
- (pin "18" (uuid 8150d847-09d2-4482-8119-26b6ec12b0c0))
- (pin "2" (uuid be01c234-1446-4cba-944d-1f2504145985))
- (pin "3" (uuid ba7f4a99-9e85-4da9-a215-a7afc1d0c8ed))
- (pin "4" (uuid 1f2ea4a5-81c5-4c0e-a683-c8ef793736ad))
- (pin "5" (uuid 16a4ee8f-73f4-47d1-95f5-83d5545a3774))
- (pin "6" (uuid 102c79ef-b5d7-4b49-8ea8-6ae9263e50fd))
- (pin "7" (uuid aa1bf6df-0b0f-42f4-8205-5a1b4f932953))
- (pin "8" (uuid dfff6172-ca95-4484-91f9-6c76b81ff0d7))
- (pin "9" (uuid df177bad-cd84-4ef7-ba6f-eac8dd2b1f1d))
- )
- (symbol (lib_id "global:N_MOSFET") (at 86.36 48.26 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618ac2a8)
- (property "Reference" "Q5" (id 0) (at 81.28 44.45 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "" (id 1) (at 91.44 41.91 0)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "" (id 2) (at 86.36 48.26 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 86.36 48.26 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 31c5a616-46a6-46ee-a925-17b8506973c8))
- (pin "2" (uuid 20575827-8370-45af-9c62-ffe2cf61e09d))
- (pin "3" (uuid b635fc33-94ea-4cbf-ac14-0176818589eb))
- )
- (symbol (lib_id "conn:Jumper3") (at 85.09 143.51 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618acf55)
- (property "Reference" "JP7" (id 0) (at 85.09 136.779 0))
- (property "Value" "" (id 1) (at 85.09 139.0904 0))
- (property "Footprint" "" (id 2) (at 85.09 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 85.09 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 060aea7e-84d7-4356-bf8c-c2449211a8f2))
- (pin "2" (uuid 72704ff1-0bf3-4bc7-9651-51c045e1656e))
- (pin "3" (uuid b7c148c7-a9f9-4b98-ab4e-5ed646c6cb48))
- )
- (symbol (lib_id "global:R") (at 67.31 52.07 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618ae1a3)
- (property "Reference" "R8" (id 0) (at 68.58 52.07 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 67.31 53.34 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 65.532 52.07 90))
- (property "Datasheet" "" (id 3) (at 67.31 52.07 0))
- (pin "1" (uuid d35066e9-f24f-4af0-b600-9c178ac29fed))
- (pin "2" (uuid 8a5e4b0a-2b5e-4e6a-96ab-bb4a3015947a))
- )
- (symbol (lib_id "global:R") (at 73.66 48.26 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618aeb3a)
- (property "Reference" "R11" (id 0) (at 73.66 45.72 90))
- (property "Value" "" (id 1) (at 73.66 48.26 90))
- (property "Footprint" "" (id 2) (at 73.66 46.482 90))
- (property "Datasheet" "" (id 3) (at 73.66 48.26 0))
- (pin "1" (uuid 53f9e25f-9d47-4840-a527-8a95c2fdd1e1))
- (pin "2" (uuid f429670a-d82e-4f86-b8a1-67629d5ec034))
- )
- (symbol (lib_id "conn:Jumper3") (at 115.57 142.24 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618afc91)
- (property "Reference" "JP10" (id 0) (at 115.57 135.509 0))
- (property "Value" "" (id 1) (at 115.57 137.8204 0))
- (property "Footprint" "" (id 2) (at 115.57 142.24 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 115.57 142.24 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4bd833fc-c5e8-4f29-8c3b-e745bf675af6))
- (pin "2" (uuid 78f32f9b-d329-4542-8a4d-85e431abd44a))
- (pin "3" (uuid d40c7e39-aee1-4f1f-bc7c-93be908665d2))
- )
- (symbol (lib_id "global:N_MOSFET") (at 86.36 26.67 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618c05f9)
- (property "Reference" "Q4" (id 0) (at 81.28 22.86 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "" (id 1) (at 91.44 21.59 0)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "" (id 2) (at 86.36 26.67 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 86.36 26.67 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 880702c0-3feb-41b9-a09d-06bf7bb5ae79))
- (pin "2" (uuid 0d38ea71-aa7f-4199-a051-15e2054af4b5))
- (pin "3" (uuid 718ca496-aad8-4c7f-95dd-227359b1bfa5))
- )
- (symbol (lib_id "global:R") (at 67.31 30.48 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618c05ff)
- (property "Reference" "R7" (id 0) (at 68.58 30.48 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 67.31 31.75 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 65.532 30.48 90))
- (property "Datasheet" "" (id 3) (at 67.31 30.48 0))
- (pin "1" (uuid 17259a1c-6377-42b9-8712-525e5ae97762))
- (pin "2" (uuid ed621122-fc71-49e6-96b0-3b76c5740c08))
- )
- (symbol (lib_id "global:R") (at 73.66 26.67 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618c0605)
- (property "Reference" "R10" (id 0) (at 73.66 24.13 90))
- (property "Value" "" (id 1) (at 73.66 26.67 90))
- (property "Footprint" "" (id 2) (at 73.66 24.892 90))
- (property "Datasheet" "" (id 3) (at 73.66 26.67 0))
- (pin "1" (uuid 81b8ad97-eca7-4b2a-83a9-7e9d00c0f9c4))
- (pin "2" (uuid 36ec30cd-419f-4f85-8213-cbacaf1cc411))
- )
- (symbol (lib_id "global:N_MOSFET") (at 86.36 69.85 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618c73aa)
- (property "Reference" "Q6" (id 0) (at 81.28 66.04 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "" (id 1) (at 91.44 64.77 0)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "" (id 2) (at 86.36 69.85 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 86.36 69.85 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid e391fd80-e88f-4d07-9dbc-5ac68c50fa9a))
- (pin "2" (uuid 60461f33-cd47-4677-8d1c-c48b984d361f))
- (pin "3" (uuid 3e9d659e-aa52-4ef2-97b7-959b3d12dd2b))
- )
- (symbol (lib_id "global:R") (at 67.31 73.66 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618c73b0)
- (property "Reference" "R9" (id 0) (at 68.58 73.66 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 67.31 74.93 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 65.532 73.66 90))
- (property "Datasheet" "" (id 3) (at 67.31 73.66 0))
- (pin "1" (uuid cb4d1717-a003-41f8-9dbf-efadd962a3c6))
- (pin "2" (uuid 3331f662-1137-44ce-b77d-b2c5c824fd7f))
- )
- (symbol (lib_id "global:R") (at 73.66 69.85 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618c73b6)
- (property "Reference" "R12" (id 0) (at 73.66 67.31 90))
- (property "Value" "" (id 1) (at 73.66 69.85 90))
- (property "Footprint" "" (id 2) (at 73.66 68.072 90))
- (property "Datasheet" "" (id 3) (at 73.66 69.85 0))
- (pin "1" (uuid 9fcd1407-1a1a-4ecd-adb9-105d5596e625))
- (pin "2" (uuid 3e42da89-be1f-4e33-abb1-3a27d0919572))
- )
- (symbol (lib_id "global:N_MOSFET") (at 46.99 46.99 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9a3)
- (property "Reference" "Q2" (id 0) (at 41.91 43.18 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "" (id 1) (at 52.07 41.91 0)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "" (id 2) (at 46.99 46.99 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 46.99 46.99 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 009a52e1-ed54-4b69-8649-55d24dab41a6))
- (pin "2" (uuid 02334576-2215-459d-b9cb-4ec2f3e9382d))
- (pin "3" (uuid b5f737a3-d68c-4fd5-abd3-770592048c5f))
- )
- (symbol (lib_id "global:R") (at 27.94 50.8 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9a9)
- (property "Reference" "R2" (id 0) (at 29.21 50.8 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 27.94 52.07 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 26.162 50.8 90))
- (property "Datasheet" "" (id 3) (at 27.94 50.8 0))
- (pin "1" (uuid 6d5e45c4-b48f-4836-bec7-a26e6fd97dfb))
- (pin "2" (uuid 2ae1a050-7a38-426c-84f1-b38707a7a5f1))
- )
- (symbol (lib_id "global:R") (at 34.29 46.99 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9af)
- (property "Reference" "R5" (id 0) (at 34.29 44.45 90))
- (property "Value" "" (id 1) (at 34.29 46.99 90))
- (property "Footprint" "" (id 2) (at 34.29 45.212 90))
- (property "Datasheet" "" (id 3) (at 34.29 46.99 0))
- (pin "1" (uuid cb955ba1-1fab-46cd-86b1-b0a727e77362))
- (pin "2" (uuid a690645f-1208-446c-976e-3e108cb7220b))
- )
- (symbol (lib_id "global:N_MOSFET") (at 46.99 25.4 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9b9)
- (property "Reference" "Q1" (id 0) (at 41.91 21.59 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "" (id 1) (at 52.07 20.32 0)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "" (id 2) (at 46.99 25.4 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 46.99 25.4 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid c95afaf5-633c-42c8-981a-dbfaba96d551))
- (pin "2" (uuid dbd97b0b-0553-4148-9406-27244e6e36a2))
- (pin "3" (uuid 5ac16a98-cc7a-4d91-a0cb-c4da6b00ee03))
- )
- (symbol (lib_id "global:R") (at 27.94 29.21 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9bf)
- (property "Reference" "R1" (id 0) (at 29.21 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 27.94 30.48 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 26.162 29.21 90))
- (property "Datasheet" "" (id 3) (at 27.94 29.21 0))
- (pin "1" (uuid d01b455c-292a-479b-ad35-a30bb6d76ab2))
- (pin "2" (uuid fdfbc867-024b-48fc-981d-9b8d98547f2c))
- )
- (symbol (lib_id "global:R") (at 34.29 25.4 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9c5)
- (property "Reference" "R4" (id 0) (at 34.29 22.86 90))
- (property "Value" "" (id 1) (at 34.29 25.4 90))
- (property "Footprint" "" (id 2) (at 34.29 23.622 90))
- (property "Datasheet" "" (id 3) (at 34.29 25.4 0))
- (pin "1" (uuid 5a7df7cf-4e0a-43e9-b845-4da25b15be7f))
- (pin "2" (uuid 35da1fed-83b0-4c17-82d5-65d07c973a86))
- )
- (symbol (lib_id "global:N_MOSFET") (at 46.99 68.58 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9cf)
- (property "Reference" "Q3" (id 0) (at 43.18 64.77 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "" (id 1) (at 52.07 63.5 0)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "" (id 2) (at 46.99 68.58 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 46.99 68.58 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 16beeb2c-1fdc-4644-90e2-c5899d16cc0e))
- (pin "2" (uuid d9bd3f2c-d939-4838-b135-6a8dfa2377ae))
- (pin "3" (uuid d0fa2f0b-7bd6-4fb7-91df-6552ab1c6912))
- )
- (symbol (lib_id "global:R") (at 27.94 72.39 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9d5)
- (property "Reference" "R3" (id 0) (at 29.21 72.39 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 27.94 73.66 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 26.162 72.39 90))
- (property "Datasheet" "" (id 3) (at 27.94 72.39 0))
- (pin "1" (uuid 59862f47-6c2b-4cad-81d5-bda95848fd41))
- (pin "2" (uuid 3bcf5114-8317-4642-94ce-b804884fc638))
- )
- (symbol (lib_id "global:R") (at 34.29 68.58 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000618cd9db)
- (property "Reference" "R6" (id 0) (at 34.29 66.04 90))
- (property "Value" "" (id 1) (at 34.29 68.58 90))
- (property "Footprint" "" (id 2) (at 34.29 66.802 90))
- (property "Datasheet" "" (id 3) (at 34.29 68.58 0))
- (pin "1" (uuid b874779d-9c5f-419d-b8d5-3cd83b5d168f))
- (pin "2" (uuid 7b1770b8-a0ca-4569-861b-758c609058d7))
- )
- (symbol (lib_id "global:R") (at 245.11 134.62 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061931f64)
- (property "Reference" "R13" (id 0) (at 246.38 134.62 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 245.11 135.89 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 243.332 134.62 90))
- (property "Datasheet" "" (id 3) (at 245.11 134.62 0))
- (pin "1" (uuid 3109ce6a-4a35-4eb4-8b53-b3a0285bc908))
- (pin "2" (uuid da295362-2033-424f-8e5a-21761520775c))
- )
- (symbol (lib_id "global:C") (at 255.27 162.56 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061945ae1)
- (property "Reference" "C2" (id 0) (at 257.81 163.83 90))
- (property "Value" "" (id 1) (at 251.46 160.02 90))
- (property "Footprint" "" (id 2) (at 251.46 163.5252 0))
- (property "Datasheet" "" (id 3) (at 255.27 162.56 0))
- (pin "1" (uuid 6281d068-813d-4781-b99e-f1737e00145c))
- (pin "2" (uuid 6df7d3aa-4adf-47e2-9c75-ec77554d737a))
- )
- (symbol (lib_id "global:C") (at 217.17 161.29 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061947520)
- (property "Reference" "C1" (id 0) (at 219.71 162.56 90))
- (property "Value" "" (id 1) (at 213.36 158.75 90))
- (property "Footprint" "" (id 2) (at 213.36 162.2552 0))
- (property "Datasheet" "" (id 3) (at 217.17 161.29 0))
- (pin "1" (uuid 380643ec-821d-4ade-8d9f-a991af481e6a))
- (pin "2" (uuid ac02bf76-35cd-4e5e-890f-1194b3a624ea))
- )
- (symbol (lib_id "conn:CONN_01X06") (at 208.28 41.91 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006198537e)
- (property "Reference" "P8" (id 0) (at 208.28 33.02 0))
- (property "Value" "" (id 1) (at 205.74 41.91 90))
- (property "Footprint" "" (id 2) (at 208.28 41.91 0))
- (property "Datasheet" "" (id 3) (at 208.28 41.91 0))
- (pin "1" (uuid 043ff90d-b651-41d2-9672-a74446e40e55))
- (pin "2" (uuid 3c39a57e-449f-42be-ad1f-7711f54ac3d2))
- (pin "3" (uuid dccccabd-e874-4b3a-a967-8b4176877f1a))
- (pin "4" (uuid a1450c60-c0b1-47ae-b5f0-7746be7c0f5d))
- (pin "5" (uuid 327549f6-1863-4ec2-b9f5-3059bf57a8d8))
- (pin "6" (uuid 53b999c7-f2e7-4ebd-8073-f76ffc2f2e63))
- )
- (symbol (lib_id "conn:CONN_01X06") (at 208.28 22.86 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061985afb)
- (property "Reference" "P7" (id 0) (at 208.28 13.97 0))
- (property "Value" "" (id 1) (at 205.74 22.86 90))
- (property "Footprint" "" (id 2) (at 208.28 22.86 0))
- (property "Datasheet" "" (id 3) (at 208.28 22.86 0))
- (pin "1" (uuid 3da074ab-dd64-41cf-948f-7c817e617de6))
- (pin "2" (uuid 59750f01-fb3d-4c9a-9726-376671016648))
- (pin "3" (uuid de951cfb-058f-49aa-a497-7d137c3c1e97))
- (pin "4" (uuid 8f3af050-5c60-40c4-bcd4-333b16e0de9e))
- (pin "5" (uuid ffc364b9-f6ae-48c4-81c5-dfd95fe4e0dd))
- (pin "6" (uuid 872d5b47-02bf-497a-9ce2-e5ee8bd37376))
- )
- (symbol (lib_id "conn:CONN_01X06") (at 186.69 22.86 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000619870bd)
- (property "Reference" "P5" (id 0) (at 186.69 13.97 0))
- (property "Value" "" (id 1) (at 184.15 22.86 90))
- (property "Footprint" "" (id 2) (at 186.69 22.86 0))
- (property "Datasheet" "" (id 3) (at 186.69 22.86 0))
- (pin "1" (uuid c7d8f26b-9329-4b37-87a5-212c38ff0b15))
- (pin "2" (uuid b1ecf4dc-dcc5-4af0-9f03-8b1f0bdf917e))
- (pin "3" (uuid 89ecdbc3-de31-4fde-823c-b4db8556f283))
- (pin "4" (uuid 754839c5-9d79-4eff-a4e2-a8d9a5463a02))
- (pin "5" (uuid af489488-60f0-4c56-b705-698d3c15afb2))
- (pin "6" (uuid a7826531-1a12-4be7-a78f-b9951505c366))
- )
- (symbol (lib_id "conn:CONN_01X03") (at 232.41 19.05 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000619cd4b0)
- (property "Reference" "P9" (id 0) (at 232.41 13.97 0))
- (property "Value" "" (id 1) (at 229.87 19.05 90))
- (property "Footprint" "" (id 2) (at 232.41 19.05 0))
- (property "Datasheet" "" (id 3) (at 232.41 19.05 0))
- (pin "1" (uuid c6bd4c8f-92f4-4f09-86f0-2e0bf7001ade))
- (pin "2" (uuid f2fa4a10-31a1-4293-89cd-7083f3015353))
- (pin "3" (uuid 65d0d1d3-e3d4-4870-8920-8e1b1030935d))
- )
- (symbol (lib_id "conn:CONN_01X03") (at 232.41 29.21 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000619cd8ad)
- (property "Reference" "P10" (id 0) (at 232.41 24.13 0))
- (property "Value" "" (id 1) (at 229.87 29.21 90))
- (property "Footprint" "" (id 2) (at 232.41 29.21 0))
- (property "Datasheet" "" (id 3) (at 232.41 29.21 0))
- (pin "1" (uuid ccf5055c-2558-4558-854d-9eeb4e9e04fe))
- (pin "2" (uuid 0533dc97-db47-47fb-a2ac-1fb6f094e859))
- (pin "3" (uuid 9c8e4886-43b2-46a4-998e-93dee91ed013))
- )
- (symbol (lib_id "conn:CONN_01X01") (at 151.765 193.04 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a13b5d)
- (property "Reference" "P4" (id 0) (at 153.7462 191.9986 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 153.7462 194.31 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 151.765 193.04 0))
- (property "Datasheet" "" (id 3) (at 151.765 193.04 0))
- (pin "1" (uuid e74a3095-9a3e-4ad0-9da8-f7a7c1e6fd7c))
- )
- (symbol (lib_id "conn:CONN_01X01") (at 151.765 189.23 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a14682)
- (property "Reference" "P3" (id 0) (at 153.7462 188.1886 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 153.7462 190.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 151.765 189.23 0))
- (property "Datasheet" "" (id 3) (at 151.765 189.23 0))
- (pin "1" (uuid e69dccf8-4d9b-47fb-b851-5459ffb828e0))
- )
- (symbol (lib_id "conn:CONN_01X01") (at 151.765 184.785 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a147ec)
- (property "Reference" "P2" (id 0) (at 153.7462 183.7436 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 153.7462 186.055 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 151.765 184.785 0))
- (property "Datasheet" "" (id 3) (at 151.765 184.785 0))
- (pin "1" (uuid a12a8571-c941-44e6-9f3a-f18e97a05ad0))
- )
- (symbol (lib_id "conn:CONN_01X01") (at 151.765 180.34 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a1497b)
- (property "Reference" "P1" (id 0) (at 153.7462 179.2986 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "" (id 1) (at 153.7462 181.61 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 151.765 180.34 0))
- (property "Datasheet" "" (id 3) (at 151.765 180.34 0))
- (pin "1" (uuid e85ced41-8455-470f-a8b4-266fe3291a92))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 261.62 17.78 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a71684)
- (property "Reference" "P11" (id 0) (at 261.62 13.97 0))
- (property "Value" "" (id 1) (at 259.08 17.78 90))
- (property "Footprint" "" (id 2) (at 261.62 17.78 0))
- (property "Datasheet" "" (id 3) (at 261.62 17.78 0))
- (pin "1" (uuid 81f547da-a034-43ab-9a33-5c691a447add))
- (pin "2" (uuid e1b32f08-19df-4132-bbb7-dc386dd75afd))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 261.62 26.67 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a72580)
- (property "Reference" "P12" (id 0) (at 261.62 22.86 0))
- (property "Value" "" (id 1) (at 259.08 26.67 90))
- (property "Footprint" "" (id 2) (at 261.62 26.67 0))
- (property "Datasheet" "" (id 3) (at 261.62 26.67 0))
- (pin "1" (uuid 7c926de1-8e6b-4cbe-8d79-96357e1f59ef))
- (pin "2" (uuid 32fcf8f6-a7c6-4bb4-a210-0e63a9ce379f))
- )
- (sheet_instances
- (path "/" (page "1"))
- )
- (symbol_instances
- (path "/00000000-0000-0000-0000-000061947520"
- (reference "C1") (unit 1) (value "100nF") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061945ae1"
- (reference "C2") (unit 1) (value "100nF") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061085c90"
- (reference "C15") (unit 1) (value "100nF") (footprint "C:3216-18")
- )
- (path "/00000000-0000-0000-0000-000061085c86"
- (reference "C17") (unit 1) (value "10µF") (footprint "C:CP_CMS5X5.8")
- )
- (path "/00000000-0000-0000-0000-000061085cb4"
- (reference "C19") (unit 1) (value "1µF") (footprint "C:CP_CMS4X5.8")
- )
- (path "/00000000-0000-0000-0000-000061085cc2"
- (reference "D5") (unit 1) (value "D") (footprint "D:SMA")
- )
- (path "/00000000-0000-0000-0000-000061890ee4"
- (reference "JP1") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061890efc"
- (reference "JP2") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061890f14"
- (reference "JP3") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061890eea"
- (reference "JP4") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061890f02"
- (reference "JP5") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061890f1a"
- (reference "JP6") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618acf55"
- (reference "JP7") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061888849"
- (reference "JP8") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618897ae"
- (reference "JP9") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618afc91"
- (reference "JP10") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006188884f"
- (reference "JP11") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618897b4"
- (reference "JP12") (unit 1) (value "Jumper3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061890ede"
- (reference "K1") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061890ef6"
- (reference "K2") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061890f0e"
- (reference "K3") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006189a34c"
- (reference "K4") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061888843"
- (reference "K5") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618897a8"
- (reference "K6") (unit 1) (value "SRD-03VDC-SL-C") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061a1497b"
- (reference "P1") (unit 1) (value "CONN_01X01") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061a147ec"
- (reference "P2") (unit 1) (value "CONN_01X01") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061a14682"
- (reference "P3") (unit 1) (value "CONN_01X01") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061a13b5d"
- (reference "P4") (unit 1) (value "CONN_01X01") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000619870bd"
- (reference "P5") (unit 1) (value "PompeDoseuse1") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006187edec"
- (reference "P6") (unit 1) (value "CONN_01X06") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061985afb"
- (reference "P7") (unit 1) (value "PompeDoseuse2") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006198537e"
- (reference "P8") (unit 1) (value "RelayOUT") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000619cd4b0"
- (reference "P9") (unit 1) (value "Neutre") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000619cd8ad"
- (reference "P10") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061a71684"
- (reference "P11") (unit 1) (value "EC") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061a72580"
- (reference "P12") (unit 1) (value "PH") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9b9"
- (reference "Q1") (unit 1) (value "N_MOSFET") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9a3"
- (reference "Q2") (unit 1) (value "N_MOSFET") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9cf"
- (reference "Q3") (unit 1) (value "N_MOSFET") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618c05f9"
- (reference "Q4") (unit 1) (value "N_MOSFET") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618ac2a8"
- (reference "Q5") (unit 1) (value "N_MOSFET") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618c73aa"
- (reference "Q6") (unit 1) (value "N_MOSFET") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9bf"
- (reference "R1") (unit 1) (value "10K") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9a9"
- (reference "R2") (unit 1) (value "10K") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9d5"
- (reference "R3") (unit 1) (value "10K") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9c5"
- (reference "R4") (unit 1) (value "120") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9af"
- (reference "R5") (unit 1) (value "120") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618cd9db"
- (reference "R6") (unit 1) (value "120") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618c05ff"
- (reference "R7") (unit 1) (value "10K") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618ae1a3"
- (reference "R8") (unit 1) (value "10K") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618c73b0"
- (reference "R9") (unit 1) (value "10K") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618c0605"
- (reference "R10") (unit 1) (value "120") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618aeb3a"
- (reference "R11") (unit 1) (value "120") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000618c73b6"
- (reference "R12") (unit 1) (value "120") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061931f64"
- (reference "R13") (unit 1) (value "10K") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061085c78"
- (reference "R33") (unit 1) (value "510") (footprint "R:0805")
- )
- (path "/00000000-0000-0000-0000-000061085c7f"
- (reference "R35") (unit 1) (value "330") (footprint "R:0805")
- )
- (path "/00000000-0000-0000-0000-00006189e6b2"
- (reference "U1") (unit 1) (value "ULN2803A") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061886f1c"
- (reference "U2") (unit 1) (value "PCF8574") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061885823"
- (reference "U3") (unit 1) (value "PCF8574") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000610a57a7"
- (reference "U4") (unit 1) (value "LM317") (footprint "")
- )
- )
- )
|