123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842 |
- (kicad_pcb (version 4) (host pcbnew 4.0.7)
- (general
- (links 151)
- (no_connects 0)
- (area 44.852857 22.700001 193.27 124.535001)
- (thickness 1.6)
- (drawings 32)
- (tracks 524)
- (zones 0)
- (modules 71)
- (nets 36)
- )
- (page A4)
- (title_block
- (title "Power Module (Control Board)")
- (date 2017-12-14)
- (rev "Release 0.1")
- (company "Enertechnos Ltd.")
- (comment 1 "FOR REVIEW")
- )
- (layers
- (0 F.Cu signal)
- (31 B.Cu signal)
- (33 F.Adhes user hide)
- (35 F.Paste user hide)
- (37 F.SilkS user)
- (38 B.Mask user)
- (39 F.Mask user)
- (40 Dwgs.User user)
- (41 Cmts.User user hide)
- (42 Eco1.User user hide)
- (43 Eco2.User user hide)
- (44 Edge.Cuts user)
- (45 Margin user hide)
- (47 F.CrtYd user)
- (49 F.Fab user hide)
- )
- (setup
- (last_trace_width 1)
- (trace_clearance 0.4)
- (zone_clearance 0.35)
- (zone_45_only no)
- (trace_min 1)
- (segment_width 0.2)
- (edge_width 0.15)
- (via_size 1.5)
- (via_drill 1)
- (via_min_size 1.5)
- (via_min_drill 0.3)
- (uvia_size 1)
- (uvia_drill 0.5)
- (uvias_allowed no)
- (uvia_min_size 1)
- (uvia_min_drill 0.1)
- (pcb_text_width 0.3)
- (pcb_text_size 1.5 1.5)
- (mod_edge_width 0.15)
- (mod_text_size 1 1)
- (mod_text_width 0.15)
- (pad_size 1.524 1.524)
- (pad_drill 0.762)
- (pad_to_mask_clearance 0.2)
- (aux_axis_origin 49.53 124.46)
- (visible_elements 7FFFEFFF)
- (pcbplotparams
- (layerselection 0x010a0_80000001)
- (usegerberextensions false)
- (excludeedgelayer true)
- (linewidth 0.100000)
- (plotframeref false)
- (viasonmask false)
- (mode 1)
- (useauxorigin true)
- (hpglpennumber 1)
- (hpglpenspeed 20)
- (hpglpendiameter 15)
- (hpglpenoverlay 2)
- (psnegative false)
- (psa4output false)
- (plotreference true)
- (plotvalue true)
- (plotinvisibletext false)
- (padsonsilk false)
- (subtractmaskfromsilk false)
- (outputformat 1)
- (mirror false)
- (drillshape 0)
- (scaleselection 1)
- (outputdirectory Plot/))
- )
- (net 0 "")
- (net 1 "Net-(C1-Pad1)")
- (net 2 "Net-(C10-Pad1)")
- (net 3 "Net-(C13-Pad1)")
- (net 4 "Net-(IC1-Pad2)")
- (net 5 "Net-(IC2-Pad2)")
- (net 6 "Net-(IC3-Pad2)")
- (net 7 "Net-(IC4-Pad2)")
- (net 8 DC_IN)
- (net 9 DC_GND)
- (net 10 ARD_GND)
- (net 11 "Net-(C20-Pad1)")
- (net 12 "Net-(C17-Pad1)")
- (net 13 "Net-(C19-Pad1)")
- (net 14 "Net-(C21-Pad1)")
- (net 15 "Net-(C23-Pad1)")
- (net 16 ARD_PWM_A)
- (net 17 ARD_PWM_B)
- (net 18 ARD_PWM_C)
- (net 19 ARD_PWM_D)
- (net 20 "Net-(C25-Pad1)")
- (net 21 "Net-(C26-Pad1)")
- (net 22 "Net-(C27-Pad1)")
- (net 23 "Net-(C28-Pad1)")
- (net 24 GND_ISO_1)
- (net 25 DRV_GATE_A)
- (net 26 GND_ISO_2)
- (net 27 DRV_GATE_B)
- (net 28 GND_ISO_3)
- (net 29 DRV_GATE_C)
- (net 30 GND_ISO_4)
- (net 31 DRV_GATE_D)
- (net 32 ARD_CUR)
- (net 33 ARD_VCC)
- (net 34 ARD_TEMP)
- (net 35 "Net-(J2-Pad3)")
- (net_class Default "This is the default net class."
- (clearance 0.4)
- (trace_width 1)
- (via_dia 1.5)
- (via_drill 1)
- (uvia_dia 1)
- (uvia_drill 0.5)
- (add_net ARD_CUR)
- (add_net ARD_GND)
- (add_net ARD_PWM_A)
- (add_net ARD_PWM_B)
- (add_net ARD_PWM_C)
- (add_net ARD_PWM_D)
- (add_net ARD_TEMP)
- (add_net ARD_VCC)
- (add_net DC_GND)
- (add_net DC_IN)
- (add_net DRV_GATE_A)
- (add_net DRV_GATE_B)
- (add_net DRV_GATE_C)
- (add_net DRV_GATE_D)
- (add_net GND_ISO_1)
- (add_net GND_ISO_2)
- (add_net GND_ISO_3)
- (add_net GND_ISO_4)
- (add_net "Net-(C1-Pad1)")
- (add_net "Net-(C10-Pad1)")
- (add_net "Net-(C13-Pad1)")
- (add_net "Net-(C17-Pad1)")
- (add_net "Net-(C19-Pad1)")
- (add_net "Net-(C20-Pad1)")
- (add_net "Net-(C21-Pad1)")
- (add_net "Net-(C23-Pad1)")
- (add_net "Net-(C25-Pad1)")
- (add_net "Net-(C26-Pad1)")
- (add_net "Net-(C27-Pad1)")
- (add_net "Net-(C28-Pad1)")
- (add_net "Net-(IC1-Pad2)")
- (add_net "Net-(IC2-Pad2)")
- (add_net "Net-(IC3-Pad2)")
- (add_net "Net-(IC4-Pad2)")
- (add_net "Net-(J2-Pad3)")
- )
- (module Connectors_JST:JST_XH_B03B-XH-A_03x2.50mm_Straight (layer F.Cu) (tedit 5A4B882C) (tstamp 5A328A2C)
- (at 91.52 118.142564)
- (descr "JST XH series connector, B03B-XH-A, top entry type, through hole")
- (tags "connector jst xh tht top vertical 2.50mm")
- (path /5A3469C9)
- (fp_text reference J101 (at 2.5 -3.5) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value "Current Sensor" (at 2.5 5.047436) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start -2.45 3.4) (end 7.45 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start 7.45 3.4) (end 7.45 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start 7.45 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start -2.95 3.9) (end 7.95 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start 7.95 3.9) (end 7.95 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 7.95 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.55 3.5) (end 7.55 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 3.5) (end 7.55 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.75 -1.7) (end 4.25 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.25 -1.7) (end 4.25 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.25 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.75 -2.45) (end 5.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.75 -1.7) (end 7.55 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 -1.7) (end 7.55 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 -2.45) (end 5.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.8 2.75) (end 2.5 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 -0.2) (end 6.8 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.8 -0.2) (end 6.8 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.8 2.75) (end 2.5 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
- (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
- (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
- (fp_text user %R (at 2.5 2.5) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
- (net 32 ARD_CUR))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
- (net 10 ARD_GND))
- (pad 3 thru_hole circle (at 5 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
- (net 33 ARD_VCC))
- (model Connectors_JST.3dshapes/JST_XH_B03B-XH-A_03x2.50mm_Straight.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Connectors_JST:JST_XH_B03B-XH-A_03x2.50mm_Straight (layer F.Cu) (tedit 5A4B8769) (tstamp 5A4B8B9E)
- (at 127.08 118.11)
- (descr "JST XH series connector, B03B-XH-A, top entry type, through hole")
- (tags "connector jst xh tht top vertical 2.50mm")
- (path /599EAAF2)
- (fp_text reference J2 (at 2.5 -3.5) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value "Temperature Probe LM35" (at 3.73 5.08) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start -2.45 3.4) (end 7.45 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start 7.45 3.4) (end 7.45 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start 7.45 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start -2.95 3.9) (end 7.95 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start 7.95 3.9) (end 7.95 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 7.95 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -2.55 -2.45) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.55 3.5) (end 7.55 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 3.5) (end 7.55 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.75 -1.7) (end 4.25 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.25 -1.7) (end 4.25 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.25 -2.45) (end 0.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.75 -2.45) (end 5.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.75 -1.7) (end 7.55 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 -1.7) (end 7.55 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 -2.45) (end 5.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.8 2.75) (end 2.5 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.55 -0.2) (end 6.8 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.8 -0.2) (end 6.8 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.8 2.75) (end 2.5 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.SilkS) (width 0.12))
- (fp_line (start -0.35 -2.75) (end -2.85 -2.75) (layer F.Fab) (width 0.1))
- (fp_line (start -2.85 -2.75) (end -2.85 -0.25) (layer F.Fab) (width 0.1))
- (fp_text user %R (at 2.5 2.5) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
- (net 33 ARD_VCC))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
- (net 34 ARD_TEMP))
- (pad 3 thru_hole circle (at 5 0) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
- (net 35 "Net-(J2-Pad3)"))
- (model Connectors_JST.3dshapes/JST_XH_B03B-XH-A_03x2.50mm_Straight.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF6824)
- (at 153.67 105.664)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A712A3/59EF1A58)
- (fp_text reference R17 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 31 DRV_GATE_D))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF6724)
- (at 163.83 91.44)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A712A3/59EF1DD4)
- (fp_text reference C24 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 3 "Net-(C13-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED1B) (tstamp 59A7F102)
- (at 170.18 107.95)
- (descr "Mounting Hole 4.3mm, no annular, M4")
- (tags "mounting hole 4.3mm no annular m4")
- (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
- (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
- (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6EB07)
- (at 157.52 91.44)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A712A3/59A6D3E0)
- (fp_text reference C14 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 3 "Net-(C13-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EB9F)
- (at 157.52 99.06)
- (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
- (path /59A712A3/59498146)
- (fp_text reference C16 (at 1.25 -3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 31 DRV_GATE_D))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF6711)
- (at 163.83 99.06)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A712A3/59EF0ED7)
- (fp_text reference C23 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 15 "Net-(C23-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB68)
- (at 156.21 83.82)
- (descr "D, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
- (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
- (path /59A712A3/59EF0E59)
- (fp_text reference D4 (at 2.54 -2.36) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 2.54 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
- (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
- (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 15 "Net-(C23-Pad1)"))
- (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF688C)
- (at 127 93.98)
- (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
- (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
- (path /59A712A3/59A6DAA6)
- (fp_text reference U8 (at 3.81 -2.33) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
- (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
- (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
- (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
- (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 3.81 2.54) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 23 "Net-(C28-Pad1)"))
- (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 7 "Net-(IC4-Pad2)"))
- (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 10 ARD_GND))
- (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
- (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 15 "Net-(C23-Pad1)"))
- (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6EE04)
- (at 127 102.87)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A712A3/59A6DA9F)
- (fp_text reference R8 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 180 (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 19 ARD_PWM_D))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 23 "Net-(C28-Pad1)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EF40)
- (at 127 80.01)
- (descr DIP254P762X432-8)
- (tags "Integrated Circuit")
- (path /59A712A3/59A6D3EA)
- (fp_text reference U7 (at 3.81 -2.286) (layer F.SilkS)
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
- (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 9 DC_GND))
- (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 8 DC_IN))
- (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 3 "Net-(C13-Pad1)"))
- (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 30 GND_ISO_4))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 5A16CB86)
- (at 132.04 107.95 180)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A712A3/5A16CD08)
- (fp_text reference C28 (at 1.25 -3.56 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 23 "Net-(C28-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 19 ARD_PWM_D))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F053CC)
- (at 138.43 84.074)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A712A3/59A6DAAD)
- (fp_text reference R9 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 3K (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 3 "Net-(C13-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 15 "Net-(C23-Pad1)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC7B)
- (at 138.43 91.44)
- (descr DIP254P762X432-8)
- (tags "Integrated Circuit")
- (path /59A712A3/59498139)
- (fp_text reference IC4 (at 3.81 -2.286) (layer F.SilkS)
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
- (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 3 "Net-(C13-Pad1)"))
- (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 7 "Net-(IC4-Pad2)"))
- (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 30 GND_ISO_4))
- (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 30 GND_ISO_4))
- (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 31 DRV_GATE_D))
- (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 31 DRV_GATE_D))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 3 "Net-(C13-Pad1)"))
- (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EAF4)
- (at 151.17 91.44)
- (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
- (path /59A712A3/59A6D3D9)
- (fp_text reference C13 (at 1.25 -3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 3 "Net-(C13-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6EB1A)
- (at 151.17 99.06)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A712A3/5949814D)
- (fp_text reference C15 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value C (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 31 DRV_GATE_D))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF680E)
- (at 147.066 105.41 180)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A712A3/59EF0FC7)
- (fp_text reference R16 (at 3.81 -2.31 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 15 "Net-(C23-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 7 "Net-(IC4-Pad2)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:RJ45 (layer F.Cu) (tedit 5A16E9B9) (tstamp 59A6EC93)
- (at 107.95 109.22)
- (tags RJ45)
- (path /59526541)
- (fp_text reference J1 (at -5.08 3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Monitor (at -5.08 11.43 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
- (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
- (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
- (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
- (pad "" np_thru_hole circle (at 10.16 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
- (pad "" np_thru_hole circle (at -1.27 6.35) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
- (pad 1 thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 32 ARD_CUR))
- (pad 2 thru_hole circle (at 1.27 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 3 thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 4 thru_hole circle (at 3.81 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 5 thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 6 thru_hole circle (at 6.35 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 34 ARD_TEMP))
- (pad 7 thru_hole circle (at 7.62 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 33 ARD_VCC))
- (pad 8 thru_hole circle (at 8.89 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 10 ARD_GND))
- (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
- (at (xyz 0.175 -0.667 0.3))
- (scale (xyz 10 10 10))
- (rotate (xyz 270 0 0))
- )
- )
- (module PartsLibraries:RJ45 (layer F.Cu) (tedit 5A16E9AB) (tstamp 59A7E8CF)
- (at 116.84 97.79 180)
- (tags RJ45)
- (path /59A7EBD8)
- (fp_text reference J7 (at 11.43 19.05 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value Control (at 5.08 19.05 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
- (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
- (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
- (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
- (pad "" np_thru_hole circle (at 10.16 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
- (pad "" np_thru_hole circle (at -1.27 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
- (pad 1 thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 8 DC_IN))
- (pad 2 thru_hole circle (at 1.27 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 9 DC_GND))
- (pad 3 thru_hole circle (at 2.54 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 16 ARD_PWM_A))
- (pad 4 thru_hole circle (at 3.81 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 17 ARD_PWM_B))
- (pad 5 thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 18 ARD_PWM_C))
- (pad 6 thru_hole circle (at 6.35 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 19 ARD_PWM_D))
- (pad 7 thru_hole circle (at 7.62 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 8 thru_hole circle (at 8.89 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
- (at (xyz 0.175 -0.667 0.3))
- (scale (xyz 10 10 10))
- (rotate (xyz 270 0 0))
- )
- )
- (module PartsLibraries:RJ45 (layer F.Cu) (tedit 5A16E925) (tstamp 5A17795A)
- (at 116.84 50.8 180)
- (tags RJ45)
- (path /5A16B56F)
- (fp_text reference J3 (at 11.43 -5.08 360) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value SignalToPower (at 3.81 -5.08 360) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start -3.17 14.22) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.07 -3.81) (end 12.06 5.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.07 -3.81) (end -3.17 -3.81) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.17 -3.81) (end -3.17 5.19) (layer F.SilkS) (width 0.12))
- (fp_line (start 12.06 7.52) (end 12.07 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.17 7.51) (end -3.17 14.22) (layer F.SilkS) (width 0.12))
- (fp_line (start -3.56 -4.06) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
- (fp_line (start -3.56 -4.06) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
- (fp_line (start 12.46 14.47) (end 12.46 -4.06) (layer F.CrtYd) (width 0.05))
- (fp_line (start 12.46 14.47) (end -3.56 14.47) (layer F.CrtYd) (width 0.05))
- (pad "" np_thru_hole circle (at 10.16 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
- (pad "" np_thru_hole circle (at -1.27 6.35 180) (size 3.65 3.65) (drill 3.25) (layers *.Cu *.SilkS *.Mask))
- (pad 1 thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (pad 2 thru_hole circle (at 1.27 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 31 DRV_GATE_D))
- (pad 3 thru_hole circle (at 2.54 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 29 DRV_GATE_C))
- (pad 4 thru_hole circle (at 3.81 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 30 GND_ISO_4))
- (pad 5 thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (pad 6 thru_hole circle (at 6.35 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 27 DRV_GATE_B))
- (pad 7 thru_hole circle (at 7.62 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 25 DRV_GATE_A))
- (pad 8 thru_hole circle (at 8.89 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (model ../../../../../../Development/multilevelinverter/Hardware/3D/RJ45.wrl
- (at (xyz 0.175 -0.667 0.3))
- (scale (xyz 10 10 10))
- (rotate (xyz 270 0 0))
- )
- )
- (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF6872)
- (at 126.238 56.642)
- (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
- (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
- (path /59A71299/59A6DAA6)
- (fp_text reference U6 (at 3.81 -2.33) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
- (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
- (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
- (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
- (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 3.81 2.54) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 22 "Net-(C27-Pad1)"))
- (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 6 "Net-(IC3-Pad2)"))
- (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 10 ARD_GND))
- (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
- (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 14 "Net-(C21-Pad1)"))
- (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED15) (tstamp 59A7F116)
- (at 54.61 107.95)
- (descr "Mounting Hole 4.3mm, no annular, M4")
- (tags "mounting hole 4.3mm no annular m4")
- (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
- (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
- (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
- )
- (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED10) (tstamp 59A7F0FC)
- (at 170.18 39.37)
- (descr "Mounting Hole 4.3mm, no annular, M4")
- (tags "mounting hole 4.3mm no annular m4")
- (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
- (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
- (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E9D7)
- (at 156.21 53.34)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A71299/59A6D3E0)
- (fp_text reference C10 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 "Net-(C10-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EE9E)
- (at 58.42 80.01)
- (descr DIP254P762X432-8)
- (tags "Integrated Circuit")
- (path /59A7109E/59A6D3EA)
- (fp_text reference U3 (at 3.81 -2.286) (layer F.SilkS)
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
- (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 9 DC_GND))
- (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 8 DC_IN))
- (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 11 "Net-(C20-Pad1)"))
- (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 26 GND_ISO_2))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EEEF)
- (at 127 43.18)
- (descr DIP254P762X432-8)
- (tags "Integrated Circuit")
- (path /59A71299/59A6D3EA)
- (fp_text reference U5 (at 3.81 -2.286) (layer F.SilkS)
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
- (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 9 DC_GND))
- (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 8 DC_IN))
- (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 2 "Net-(C10-Pad1)"))
- (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 28 GND_ISO_3))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC0D)
- (at 69.85 91.44)
- (descr DIP254P762X432-8)
- (tags "Integrated Circuit")
- (path /59A7109E/59498139)
- (fp_text reference IC2 (at 3.81 -2.286) (layer F.SilkS)
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
- (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 11 "Net-(C20-Pad1)"))
- (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 5 "Net-(IC2-Pad2)"))
- (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 26 GND_ISO_2))
- (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 26 GND_ISO_2))
- (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 27 DRV_GATE_B))
- (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 27 DRV_GATE_B))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 11 "Net-(C20-Pad1)"))
- (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EC44)
- (at 138.43 53.34)
- (descr DIP254P762X432-8)
- (tags "Integrated Circuit")
- (path /59A71299/59498139)
- (fp_text reference IC3 (at 3.81 -2.286) (layer F.SilkS)
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
- (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 2 "Net-(C10-Pad1)"))
- (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 6 "Net-(IC3-Pad2)"))
- (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 28 GND_ISO_3))
- (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 28 GND_ISO_3))
- (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 29 DRV_GATE_C))
- (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 29 DRV_GATE_C))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 2 "Net-(C10-Pad1)"))
- (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EBD6)
- (at 69.85 53.34)
- (descr DIP254P762X432-8)
- (tags "Integrated Circuit")
- (path /59498AA5/59498139)
- (fp_text reference IC1 (at 3.81 -2.286) (layer F.SilkS)
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_text value TC4422AVPA (at 3.556 9.906) (layer F.SilkS) hide
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
- (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 1 "Net-(C1-Pad1)"))
- (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 4 "Net-(IC1-Pad2)"))
- (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 24 GND_ISO_1))
- (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 24 GND_ISO_1))
- (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 25 DRV_GATE_A))
- (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 25 DRV_GATE_A))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 1 "Net-(C1-Pad1)"))
- (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:TC4422AVPA (layer F.Cu) (tedit 592E9A52) (tstamp 59A6EE4D)
- (at 59.69 41.91)
- (descr DIP254P762X432-8)
- (tags "Integrated Circuit")
- (path /59498AA5/59A6D3EA)
- (fp_text reference U1 (at 3.81 -2.286) (layer F.SilkS)
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_text value NME1212DC (at 3.556 9.906) (layer F.SilkS) hide
- (effects (font (size 1.27 1.27) (thickness 0.254)))
- )
- (fp_line (start 0.508 8.7122) (end 0.508 -1.0922) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -1.1938) (end 7.112 -1.1938) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 3.048) (end 0.508 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 2.032) (end -0.4826 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 2.032) (end -0.4826 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 3.048) (end 0.508 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 1.5748) (end 7.112 0.9652) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 4.1148) (end 7.112 3.5052) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 6.0452) (end 0.508 6.6548) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 3.5052) (end 0.508 4.1148) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer F.SilkS) (width 0.1524))
- (fp_line (start 7.112 6.6548) (end 7.112 6.0452) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 1.0922) (end 0.508 1.5748) (layer F.SilkS) (width 0.1524))
- (fp_line (start 0.508 0.508) (end 0.508 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 -0.508) (end -0.4826 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 -0.508) (end -0.4826 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 0.508) (end 0.508 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 5.588) (end 0.508 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 4.572) (end -0.4826 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 4.572) (end -0.4826 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 5.588) (end 0.508 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.128) (end 0.508 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 7.112) (end -0.4826 7.1374) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 7.1374) (end -0.4826 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start -0.4826 8.128) (end 0.508 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 7.112) (end 7.112 8.128) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.128) (end 8.1026 8.1026) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 8.1026) (end 8.1026 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 7.112) (end 7.112 7.112) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 4.572) (end 7.112 5.588) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 5.588) (end 8.1026 5.5626) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 5.5626) (end 8.1026 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 4.572) (end 7.112 4.572) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 2.032) (end 7.112 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 3.048) (end 8.1026 3.048) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 3.048) (end 8.1026 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 2.032) (end 7.112 2.032) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 -0.508) (end 7.112 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 0.508) (end 8.1026 0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 0.508) (end 8.1026 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 8.1026 -0.508) (end 7.112 -0.508) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 0.508 8.7122) (end 7.112 8.7122) (layer Dwgs.User) (width 0.1524))
- (fp_line (start 7.112 8.7122) (end 7.112 -1.0922) (layer Dwgs.User) (width 0.1524))
- (pad 1 thru_hole rect (at 0 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 9 DC_GND))
- (pad 2 thru_hole circle (at 0 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 3 thru_hole circle (at 0 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 4 thru_hole circle (at 0 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 8 DC_IN))
- (pad 5 thru_hole circle (at 7.62 7.62 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 1 "Net-(C1-Pad1)"))
- (pad 6 thru_hole circle (at 7.62 5.08 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (pad 7 thru_hole circle (at 7.62 2.54 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 24 GND_ISO_1))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS))
- (model Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E764)
- (at 81.32 53.34)
- (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
- (path /59498AA5/59A6D3D9)
- (fp_text reference C1 (at 1.25 -3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 1 "Net-(C1-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E777)
- (at 87.63 53.34)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59498AA5/59A6D3E0)
- (fp_text reference C2 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 1 "Net-(C1-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E78A)
- (at 81.32 60.96)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59498AA5/5949814D)
- (fp_text reference C3 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value C (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 25 DRV_GATE_A))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E80F)
- (at 87.67 60.96)
- (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
- (path /59498AA5/59498146)
- (fp_text reference C4 (at 1.25 -3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 25 DRV_GATE_A))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E894)
- (at 81.32 91.44)
- (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
- (path /59A7109E/59A6D3D9)
- (fp_text reference C5 (at 1.25 -3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 11 "Net-(C20-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E8A7)
- (at 87.67 91.44)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A7109E/59A6D3E0)
- (fp_text reference C6 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 11 "Net-(C20-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E8BA)
- (at 81.32 99.06)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A7109E/5949814D)
- (fp_text reference C7 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value C (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 27 DRV_GATE_B))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E93F)
- (at 87.67 99.06)
- (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
- (path /59A7109E/59498146)
- (fp_text reference C8 (at 1.25 -3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 27 DRV_GATE_B))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6E9C4)
- (at 149.86 53.34)
- (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
- (path /59A71299/59A6D3D9)
- (fp_text reference C9 (at 1.25 -3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 "Net-(C10-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59A6E9EA)
- (at 149.86 60.96)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A71299/5949814D)
- (fp_text reference C11 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value C (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 29 DRV_GATE_C))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 59A6EA6F)
- (at 156.21 60.96)
- (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
- (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
- (path /59A71299/59498146)
- (fp_text reference C12 (at 1.25 -3.81) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 4.7uF (at 1.25 3.81) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 29 DRV_GATE_C))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6ED76)
- (at 143.51 121.92 90)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /599EAAF9)
- (fp_text reference R1 (at 3.81 -2.31 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100 (at 3.81 2.31 90) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 35 "Net-(J2-Pad3)"))
- (pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 10 ARD_GND))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6ED8C)
- (at 69.85 66.04 180)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59498AA5/59A6DA9F)
- (fp_text reference R2 (at 3.81 0 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 180 (at 3.81 2.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 16 ARD_PWM_A))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 20 "Net-(C25-Pad1)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59A6EDB4)
- (at 64.77 101.6 180)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A7109E/59A6DA9F)
- (fp_text reference R4 (at 3.81 -2.31 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 180 (at 3.81 2.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 17 ARD_PWM_B))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 21 "Net-(C26-Pad1)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Mounting_Holes:MountingHole_4.3mm_M4 (layer F.Cu) (tedit 59A7ED08) (tstamp 59A7F0E0)
- (at 54.61 39.37)
- (descr "Mounting Hole 4.3mm, no annular, M4")
- (tags "mounting hole 4.3mm no annular m4")
- (fp_text reference "" (at 0 -5.3) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value MountingHole_4.3mm_M4 (at 0 5.3) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_circle (center 0 0) (end 4.3 0) (layer Cmts.User) (width 0.15))
- (fp_circle (center 0 0) (end 4.55 0) (layer F.CrtYd) (width 0.05))
- (pad 1 np_thru_hole circle (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask))
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF669F)
- (at 94.02 60.96)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59498AA5/59EF0ED7)
- (fp_text reference C17 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 12 "Net-(C17-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66B2)
- (at 94.02 53.34)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59498AA5/59EF1DD4)
- (fp_text reference C18 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 1 "Net-(C1-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66C5)
- (at 94.02 99.06)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A7109E/59EF0ED7)
- (fp_text reference C19 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 13 "Net-(C19-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66D8)
- (at 93.98 91.44)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A7109E/59EF1DD4)
- (fp_text reference C20 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 11 "Net-(C20-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66EB)
- (at 162.56 60.96)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A71299/59EF0ED7)
- (fp_text reference C21 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 14 "Net-(C21-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 59EF66FE)
- (at 162.56 53.34)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A71299/59EF1DD4)
- (fp_text reference C22 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 "Net-(C10-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF678A)
- (at 82.804 67.31 180)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59498AA5/59EF0FC7)
- (fp_text reference R10 (at 3.81 -2.31 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 12 "Net-(C17-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 4 "Net-(IC1-Pad2)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67A0)
- (at 87.63 67.31)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59498AA5/59EF1A58)
- (fp_text reference R11 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 25 DRV_GATE_A))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67B6)
- (at 80.772 105.41 180)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A7109E/59EF0FC7)
- (fp_text reference R12 (at 3.81 -2.31 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 13 "Net-(C19-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 5 "Net-(IC2-Pad2)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67CC)
- (at 86.36 105.41)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A7109E/59EF1A58)
- (fp_text reference R13 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 27 DRV_GATE_B))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67E2)
- (at 151.13 67.31 180)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A71299/59EF0FC7)
- (fp_text reference R14 (at 3.81 -2.31 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R (at 3.81 2.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 14 "Net-(C21-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 6 "Net-(IC3-Pad2)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF67F8)
- (at 156.21 67.31)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A71299/59EF1A58)
- (fp_text reference R15 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value R (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 29 DRV_GATE_C))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF683E)
- (at 57.658 57.15)
- (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
- (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
- (path /59498AA5/59A6DAA6)
- (fp_text reference U2 (at 3.81 -2.33) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
- (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
- (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
- (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
- (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 3.81 2.54) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 20 "Net-(C25-Pad1)"))
- (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 4 "Net-(IC1-Pad2)"))
- (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 10 ARD_GND))
- (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
- (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 12 "Net-(C17-Pad1)"))
- (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF6858)
- (at 57.658 93.218)
- (descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
- (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
- (path /59A7109E/59A6DAA6)
- (fp_text reference U4 (at 3.81 -2.33) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value H11N1M (at 3.81 7.41) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
- (fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
- (fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
- (fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
- (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
- (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 3.81 2.54) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 21 "Net-(C26-Pad1)"))
- (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 5 "Net-(IC2-Pad2)"))
- (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 10 ARD_GND))
- (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
- (pad 6 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 13 "Net-(C19-Pad1)"))
- (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-6_W7.62mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F0538A)
- (at 71.12 47.244)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59498AA5/59A6DAAD)
- (fp_text reference R3 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 3K (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 1 "Net-(C1-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 12 "Net-(C17-Pad1)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F053A0)
- (at 69.85 85.598)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A7109E/59A6DAAD)
- (fp_text reference R5 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 3K (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 11 "Net-(C20-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 13 "Net-(C19-Pad1)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F053B6)
- (at 138.43 47.752)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A71299/59A6DAAD)
- (fp_text reference R7 (at 3.81 -2.31) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 3K (at 3.81 2.31) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 "Net-(C10-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 14 "Net-(C21-Pad1)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F05D37)
- (at 134.366 65.532 180)
- (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
- (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
- (path /59A71299/59A6DA9F)
- (fp_text reference R6 (at 3.81 -0.254 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 180 (at 3.81 2.31 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
- (fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
- (fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
- (fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 18 ARD_PWM_C))
- (pad 2 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 22 "Net-(C27-Pad1)"))
- (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.3937 0.3937 0.3937))
- (rotate (xyz 0 0 0))
- )
- )
- (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB1D)
- (at 86.36 45.72)
- (descr "D, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
- (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
- (path /59498AA5/59EF0E59)
- (fp_text reference D1 (at 2.54 -2.36) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 2.54 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
- (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
- (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 12 "Net-(C17-Pad1)"))
- (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 24 GND_ISO_1))
- (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB36)
- (at 90.17 83.82)
- (descr "D, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
- (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
- (path /59A7109E/59EF0E59)
- (fp_text reference D2 (at 2.54 -2.36) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 2.54 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
- (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
- (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 13 "Net-(C19-Pad1)"))
- (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 26 GND_ISO_2))
- (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Diodes_THT:D_T-1_P5.08mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 59F0CB4F)
- (at 156.21 45.72)
- (descr "D, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
- (tags "D T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm")
- (path /59A71299/59EF0E59)
- (fp_text reference D3 (at 2.54 -2.36) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value D_Zener (at 2.54 2.36) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text user %R (at 2.54 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_line (start 0.94 -1.3) (end 0.94 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0.94 1.3) (end 4.14 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 4.14 1.3) (end 4.14 -1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 4.14 -1.3) (end 0.94 -1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0 0) (end 0.94 0) (layer F.Fab) (width 0.1))
- (fp_line (start 5.08 0) (end 4.14 0) (layer F.Fab) (width 0.1))
- (fp_line (start 1.42 -1.3) (end 1.42 1.3) (layer F.Fab) (width 0.1))
- (fp_line (start 0.88 -1.18) (end 0.88 -1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 -1.36) (end 4.2 -1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.2 -1.36) (end 4.2 -1.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 1.18) (end 0.88 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 0.88 1.36) (end 4.2 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.2 1.36) (end 4.2 1.18) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.42 -1.36) (end 1.42 1.36) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.25 1.65) (end 6.35 1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.35 1.65) (end 6.35 -1.65) (layer F.CrtYd) (width 0.05))
- (fp_line (start 6.35 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
- (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 14 "Net-(C21-Pad1)"))
- (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 28 GND_ISO_3))
- (model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl
- (at (xyz 0 0 0))
- (scale (xyz 0.393701 0.393701 0.393701))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 5A16CB4D)
- (at 64.81 69.85)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59498AA5/5A16CD08)
- (fp_text reference C25 (at 5.548 0.762) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 20 "Net-(C25-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 16 ARD_PWM_A))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 5A16CB60)
- (at 59.73 106.68)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A7109E/5A16CD08)
- (fp_text reference C26 (at 1.25 -3.56) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 21 "Net-(C26-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 17 ARD_PWM_B))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Capacitors_THT:CP_Radial_Tantal_D4.5mm_P2.50mm (layer F.Cu) (tedit 597C781B) (tstamp 5A16CB73)
- (at 129.58 69.85)
- (descr "CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
- (tags "CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor")
- (path /59A71299/5A16CD08)
- (fp_text reference C27 (at 6.818 -0.508) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100nF (at 1.25 3.56) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_arc (start 1.25 0) (end -0.770693 -1.18) (angle 119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end -0.770693 1.18) (angle -119.4) (layer F.SilkS) (width 0.12))
- (fp_arc (start 1.25 0) (end 3.270693 -1.18) (angle 60.6) (layer F.SilkS) (width 0.12))
- (fp_circle (center 1.25 0) (end 3.5 0) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
- (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
- (fp_line (start -1.35 -2.6) (end -1.35 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start -1.35 2.6) (end 3.85 2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 2.6) (end 3.85 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_line (start 3.85 -2.6) (end -1.35 -2.6) (layer F.CrtYd) (width 0.05))
- (fp_text user %R (at 1.25 0) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 22 "Net-(C27-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 18 ARD_PWM_C))
- (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D4.5mm_P2.50mm.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module PartsLibraries:Enertechnos_Logo (layer F.Cu) (tedit 5A3293B3) (tstamp 5A32B665)
- (at 113.03 73.66)
- (fp_text reference "" (at 0 0) (layer F.SilkS) hide
- (effects (font (thickness 0.3)))
- )
- (fp_text value "" (at 0.75 0) (layer F.SilkS) hide
- (effects (font (thickness 0.3)))
- )
- (fp_poly (pts (xy -18.701504 -1.149541) (xy -18.371343 -0.982841) (xy -18.076027 -0.708343) (xy -17.827689 -0.334111)
- (xy -17.661616 0.075536) (xy -17.611494 0.402166) (xy -17.610666 0.677333) (xy -20.816179 0.677333)
- (xy -20.740354 0.941721) (xy -20.544952 1.369882) (xy -20.238595 1.67537) (xy -19.819798 1.858534)
- (xy -19.287077 1.919723) (xy -18.638948 1.859286) (xy -17.873925 1.677572) (xy -17.758833 1.642913)
- (xy -17.645242 1.648029) (xy -17.610831 1.783207) (xy -17.610666 1.800764) (xy -17.627955 1.91201)
- (xy -17.703341 1.99161) (xy -17.872107 2.060382) (xy -18.169536 2.139147) (xy -18.194281 2.145137)
- (xy -18.834293 2.258061) (xy -19.432172 2.284065) (xy -19.951375 2.223856) (xy -20.305753 2.104328)
- (xy -20.702519 1.828249) (xy -20.972368 1.450728) (xy -21.121445 0.961377) (xy -21.152517 0.673254)
- (xy -21.149043 0.254) (xy -20.823809 0.254) (xy -18.057482 0.254) (xy -18.099008 0.036768)
- (xy -18.219786 -0.23124) (xy -18.452236 -0.499678) (xy -18.745868 -0.720216) (xy -19.009736 -0.834963)
- (xy -19.471697 -0.87845) (xy -19.918364 -0.777599) (xy -20.312003 -0.551131) (xy -20.614876 -0.217765)
- (xy -20.735598 0.021166) (xy -20.823809 0.254) (xy -21.149043 0.254) (xy -21.148278 0.161746)
- (xy -21.060439 -0.237172) (xy -20.874931 -0.565311) (xy -20.658742 -0.794193) (xy -20.227252 -1.077947)
- (xy -19.728363 -1.234135) (xy -19.205354 -1.25919) (xy -18.701504 -1.149541)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy -14.393338 -1.15731) (xy -14.38218 -1.152122) (xy -14.184995 -1.044277) (xy -14.037764 -0.917187)
- (xy -13.933336 -0.745854) (xy -13.864561 -0.505285) (xy -13.824292 -0.170483) (xy -13.805376 0.283548)
- (xy -13.800666 0.880896) (xy -13.801593 1.398147) (xy -13.806295 1.769998) (xy -13.817656 2.02038)
- (xy -13.83856 2.173225) (xy -13.871892 2.252464) (xy -13.920536 2.282028) (xy -13.97 2.286)
- (xy -14.037523 2.277064) (xy -14.08425 2.232756) (xy -14.114009 2.126822) (xy -14.13063 1.933008)
- (xy -14.137942 1.625062) (xy -14.139775 1.17673) (xy -14.139805 1.121833) (xy -14.147405 0.516127)
- (xy -14.172797 0.056508) (xy -14.220704 -0.279764) (xy -14.295848 -0.515432) (xy -14.402954 -0.673235)
- (xy -14.532397 -0.768457) (xy -14.861187 -0.86167) (xy -15.272416 -0.853887) (xy -15.715121 -0.748405)
- (xy -15.886871 -0.680805) (xy -16.147451 -0.562952) (xy -16.334671 -0.456426) (xy -16.460654 -0.33194)
- (xy -16.537524 -0.160207) (xy -16.577402 0.088058) (xy -16.592412 0.442144) (xy -16.594677 0.931337)
- (xy -16.594666 1.029122) (xy -16.595797 1.51431) (xy -16.601459 1.855452) (xy -16.61506 2.077831)
- (xy -16.640005 2.206731) (xy -16.679702 2.267436) (xy -16.737555 2.28523) (xy -16.764 2.286)
- (xy -16.820904 2.279462) (xy -16.863392 2.245481) (xy -16.893564 2.162502) (xy -16.913525 2.008971)
- (xy -16.925377 1.763333) (xy -16.931223 1.404035) (xy -16.933166 0.909523) (xy -16.933333 0.550333)
- (xy -16.932695 -0.032939) (xy -16.92938 -0.468433) (xy -16.921285 -0.777703) (xy -16.906306 -0.982302)
- (xy -16.882341 -1.103786) (xy -16.847288 -1.163708) (xy -16.799043 -1.183622) (xy -16.764 -1.185334)
- (xy -16.631535 -1.1361) (xy -16.594666 -0.972241) (xy -16.594666 -0.759148) (xy -16.151816 -0.983557)
- (xy -15.696398 -1.158533) (xy -15.215969 -1.249202) (xy -14.763845 -1.250488) (xy -14.393338 -1.15731)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy -11.137428 -1.24931) (xy -10.588627 -1.130337) (xy -10.137011 -0.876578) (xy -9.795145 -0.499922)
- (xy -9.575599 -0.012258) (xy -9.513097 0.287396) (xy -9.45965 0.677333) (xy -12.718357 0.677333)
- (xy -12.661216 0.905002) (xy -12.477929 1.32522) (xy -12.172419 1.635756) (xy -11.754401 1.833067)
- (xy -11.233594 1.913609) (xy -10.619714 1.873839) (xy -10.2235 1.793917) (xy -9.919192 1.726391)
- (xy -9.689857 1.689949) (xy -9.574128 1.690237) (xy -9.567333 1.698052) (xy -9.539912 1.830039)
- (xy -9.521578 1.883386) (xy -9.564818 1.975729) (xy -9.744458 2.062704) (xy -10.027571 2.140185)
- (xy -10.381228 2.204042) (xy -10.772501 2.250148) (xy -11.168463 2.274373) (xy -11.536184 2.272591)
- (xy -11.842737 2.240672) (xy -12.010376 2.195411) (xy -12.452869 1.932319) (xy -12.791471 1.555027)
- (xy -13.011395 1.093329) (xy -13.097855 0.577019) (xy -13.06189 0.208293) (xy -12.7 0.208293)
- (xy -12.619993 0.223527) (xy -12.398607 0.236608) (xy -12.063788 0.24662) (xy -11.643486 0.252645)
- (xy -11.307404 0.254) (xy -9.914808 0.254) (xy -10.0043 -0.002717) (xy -10.222965 -0.401204)
- (xy -10.545224 -0.681607) (xy -10.946285 -0.836255) (xy -11.401357 -0.857475) (xy -11.885646 -0.737596)
- (xy -12.085336 -0.646688) (xy -12.261408 -0.506352) (xy -12.449527 -0.285983) (xy -12.607793 -0.043864)
- (xy -12.694302 0.16172) (xy -12.7 0.208293) (xy -13.06189 0.208293) (xy -13.051164 0.098333)
- (xy -12.863705 -0.401083) (xy -12.54632 -0.793584) (xy -12.125592 -1.071972) (xy -11.837588 -1.198475)
- (xy -11.589847 -1.256116) (xy -11.297273 -1.260167) (xy -11.137428 -1.24931)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy -6.553794 -1.133588) (xy -6.551929 -1.132705) (xy -6.303105 -0.993248) (xy -6.205092 -0.872902)
- (xy -6.244197 -0.750638) (xy -6.278404 -0.712644) (xy -6.374717 -0.65024) (xy -6.504159 -0.662309)
- (xy -6.720064 -0.75519) (xy -6.74678 -0.768333) (xy -6.996371 -0.873925) (xy -7.201427 -0.896704)
- (xy -7.458769 -0.847092) (xy -7.464524 -0.845587) (xy -7.784711 -0.731074) (xy -8.100831 -0.572848)
- (xy -8.149166 -0.542821) (xy -8.466666 -0.336265) (xy -8.466666 2.286) (xy -8.89 2.286)
- (xy -8.89 -1.185334) (xy -8.678333 -1.185334) (xy -8.511599 -1.144932) (xy -8.466666 -1.019896)
- (xy -8.457311 -0.931578) (xy -8.404987 -0.906504) (xy -8.273303 -0.948071) (xy -8.025871 -1.059677)
- (xy -8.022166 -1.061402) (xy -7.503155 -1.230682) (xy -7.003107 -1.255258) (xy -6.553794 -1.133588)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy -4.876411 -2.074861) (xy -4.83698 -1.928164) (xy -4.826 -1.651) (xy -4.826 -1.185334)
- (xy -3.725333 -1.185334) (xy -3.275992 -1.183898) (xy -2.968992 -1.176821) (xy -2.777348 -1.159953)
- (xy -2.674075 -1.129141) (xy -2.632186 -1.080235) (xy -2.624666 -1.016) (xy -2.633957 -0.947043)
- (xy -2.679767 -0.899867) (xy -2.789002 -0.870356) (xy -2.988571 -0.854397) (xy -3.30538 -0.847873)
- (xy -3.731893 -0.846667) (xy -4.83912 -0.846667) (xy -4.811393 0.287718) (xy -4.79231 0.810748)
- (xy -4.757748 1.192574) (xy -4.697522 1.46124) (xy -4.60145 1.644793) (xy -4.459347 1.771278)
- (xy -4.26103 1.868741) (xy -4.233333 1.879677) (xy -3.895391 1.951039) (xy -3.475098 1.955765)
- (xy -3.043947 1.897964) (xy -2.694954 1.791284) (xy -2.458612 1.695789) (xy -2.330856 1.670688)
- (xy -2.267892 1.712523) (xy -2.247586 1.755982) (xy -2.271015 1.897507) (xy -2.431464 2.026148)
- (xy -2.696704 2.134422) (xy -3.034509 2.214846) (xy -3.412649 2.259936) (xy -3.798898 2.262211)
- (xy -4.161027 2.214187) (xy -4.191 2.207223) (xy -4.501096 2.110645) (xy -4.731349 1.976064)
- (xy -4.892967 1.779489) (xy -4.997159 1.496931) (xy -5.055133 1.104401) (xy -5.078097 0.577907)
- (xy -5.08 0.304436) (xy -5.08 -0.846667) (xy -5.588 -0.846667) (xy -5.871728 -0.852846)
- (xy -6.02504 -0.879987) (xy -6.086661 -0.941) (xy -6.096 -1.016) (xy -6.077464 -1.110577)
- (xy -5.99604 -1.161681) (xy -5.813002 -1.182221) (xy -5.588 -1.185334) (xy -5.08 -1.185334)
- (xy -5.08 -1.651) (xy -5.068598 -1.931825) (xy -5.02859 -2.076406) (xy -4.953 -2.116667)
- (xy -4.876411 -2.074861)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy -0.093144 -1.175694) (xy 0.243098 -1.080118) (xy 0.554682 -0.887901) (xy 0.709348 -0.759703)
- (xy 1.003579 -0.395635) (xy 1.142087 -0.061331) (xy 1.210424 0.162978) (xy 1.25028 0.32932)
- (xy 1.24214 0.446315) (xy 1.166489 0.522582) (xy 1.003812 0.56674) (xy 0.734593 0.587408)
- (xy 0.339319 0.593204) (xy -0.201527 0.592749) (xy -0.338666 0.592666) (xy -0.915739 0.593037)
- (xy -1.343021 0.598279) (xy -1.640049 0.614586) (xy -1.826361 0.64815) (xy -1.921493 0.705165)
- (xy -1.944984 0.791824) (xy -1.916369 0.914321) (xy -1.857027 1.073988) (xy -1.63735 1.441354)
- (xy -1.300088 1.747945) (xy -1.148901 1.838446) (xy -0.871752 1.920789) (xy -0.483625 1.955328)
- (xy -0.035875 1.942444) (xy 0.420142 1.882517) (xy 0.673396 1.824945) (xy 0.968178 1.751933)
- (xy 1.129384 1.736649) (xy 1.183945 1.782869) (xy 1.159289 1.893082) (xy 1.044628 1.987572)
- (xy 0.800743 2.076047) (xy 0.467745 2.152778) (xy 0.085743 2.212031) (xy -0.305153 2.248076)
- (xy -0.664832 2.255182) (xy -0.953186 2.227616) (xy -1.035977 2.206773) (xy -1.524684 1.968942)
- (xy -1.894842 1.619647) (xy -2.136455 1.177387) (xy -2.239528 0.66066) (xy -2.213967 0.338666)
- (xy -1.96569 0.338666) (xy 0.949691 0.338666) (xy 0.891587 0.105833) (xy 0.744487 -0.224578)
- (xy 0.498046 -0.538054) (xy 0.20713 -0.769357) (xy 0.118559 -0.813317) (xy -0.331682 -0.921366)
- (xy -0.785499 -0.891061) (xy -1.208049 -0.738289) (xy -1.564485 -0.47894) (xy -1.819963 -0.128901)
- (xy -1.908549 0.110997) (xy -1.96569 0.338666) (xy -2.213967 0.338666) (xy -2.194065 0.087963)
- (xy -2.190372 0.070437) (xy -2.008373 -0.408684) (xy -1.699217 -0.786076) (xy -1.279969 -1.048744)
- (xy -0.767694 -1.183694) (xy -0.522988 -1.19922) (xy -0.093144 -1.175694)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy 4.07908 -1.177756) (xy 4.242728 -1.142615) (xy 4.465791 -1.041961) (xy 4.697355 -0.889031)
- (xy 4.888349 -0.722396) (xy 4.989701 -0.58063) (xy 4.995334 -0.551022) (xy 4.944992 -0.404507)
- (xy 4.811802 -0.388074) (xy 4.622512 -0.502726) (xy 4.586287 -0.535699) (xy 4.191358 -0.801532)
- (xy 3.733711 -0.924027) (xy 3.246568 -0.899377) (xy 2.79573 -0.740834) (xy 2.387123 -0.448967)
- (xy 2.121201 -0.07193) (xy 2.005521 0.374291) (xy 2.042626 0.852005) (xy 2.218597 1.316144)
- (xy 2.509578 1.656168) (xy 2.914715 1.871452) (xy 3.433156 1.961369) (xy 3.558969 1.964266)
- (xy 3.970562 1.934905) (xy 4.290355 1.829254) (xy 4.588351 1.620962) (xy 4.672779 1.54499)
- (xy 4.892535 1.396391) (xy 5.046056 1.388503) (xy 5.123383 1.438655) (xy 5.102919 1.5212)
- (xy 4.97228 1.674834) (xy 4.945277 1.703393) (xy 4.72554 1.903758) (xy 4.500256 2.064889)
- (xy 4.46378 2.0853) (xy 4.192972 2.174333) (xy 3.823045 2.230928) (xy 3.421905 2.250526)
- (xy 3.057455 2.228564) (xy 2.878667 2.191764) (xy 2.408008 1.967673) (xy 2.045413 1.622206)
- (xy 1.804502 1.174536) (xy 1.698897 0.64384) (xy 1.695193 0.525793) (xy 1.769178 -0.011076)
- (xy 1.993236 -0.471369) (xy 2.363388 -0.8488) (xy 2.696303 -1.054812) (xy 2.962473 -1.138065)
- (xy 3.327217 -1.188893) (xy 3.722198 -1.203417) (xy 4.07908 -1.177756)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy 16.246908 -1.102118) (xy 16.67969 -0.891641) (xy 17.024874 -0.57034) (xy 17.082238 -0.490087)
- (xy 17.255007 -0.105048) (xy 17.343691 0.36306) (xy 17.340872 0.846324) (xy 17.266931 1.200694)
- (xy 17.052838 1.594151) (xy 16.714477 1.910148) (xy 16.283895 2.136331) (xy 15.793141 2.260345)
- (xy 15.274264 2.269837) (xy 14.779229 2.159667) (xy 14.350031 1.959204) (xy 14.038379 1.689491)
- (xy 13.81567 1.34971) (xy 13.705387 1.104872) (xy 13.653226 0.870546) (xy 13.647143 0.574644)
- (xy 13.650544 0.510471) (xy 13.950462 0.510471) (xy 14.025395 1.010757) (xy 14.242427 1.425498)
- (xy 14.589908 1.740104) (xy 15.056188 1.939985) (xy 15.100994 1.951233) (xy 15.330465 2.001647)
- (xy 15.498231 2.015426) (xy 15.683587 1.991522) (xy 15.915636 1.940462) (xy 16.390602 1.75626)
- (xy 16.751348 1.453332) (xy 16.978254 1.063342) (xy 17.077476 0.599681) (xy 17.029047 0.164685)
- (xy 16.854356 -0.223015) (xy 16.574786 -0.544787) (xy 16.211726 -0.781999) (xy 15.78656 -0.916018)
- (xy 15.320675 -0.928212) (xy 14.838213 -0.801105) (xy 14.405931 -0.548496) (xy 14.118679 -0.209615)
- (xy 13.972366 0.221584) (xy 13.950462 0.510471) (xy 13.650544 0.510471) (xy 13.656538 0.397421)
- (xy 13.692254 0.049008) (xy 13.758611 -0.196475) (xy 13.87686 -0.40517) (xy 13.942193 -0.491579)
- (xy 14.310181 -0.835463) (xy 14.758165 -1.068443) (xy 15.252627 -1.190535) (xy 15.760048 -1.201755)
- (xy 16.246908 -1.102118)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy 20.045139 -1.16623) (xy 20.522367 -1.054586) (xy 20.853651 -0.863018) (xy 20.899835 -0.817993)
- (xy 21.019257 -0.669694) (xy 21.021468 -0.575436) (xy 20.965358 -0.516597) (xy 20.845681 -0.459361)
- (xy 20.782759 -0.512705) (xy 20.611826 -0.660414) (xy 20.318819 -0.788817) (xy 19.950942 -0.882894)
- (xy 19.555401 -0.927625) (xy 19.473334 -0.929343) (xy 18.988444 -0.892429) (xy 18.621608 -0.782724)
- (xy 18.387671 -0.60686) (xy 18.30401 -0.407008) (xy 18.322765 -0.24418) (xy 18.43345 -0.111209)
- (xy 18.655043 0.001323) (xy 19.006522 0.102835) (xy 19.506862 0.202745) (xy 19.546555 0.20968)
- (xy 20.035063 0.300946) (xy 20.390031 0.385956) (xy 20.646278 0.476595) (xy 20.838622 0.584752)
- (xy 20.976167 0.697731) (xy 21.12512 0.942259) (xy 21.171081 1.258824) (xy 21.11311 1.584341)
- (xy 20.992682 1.807016) (xy 20.732646 2.016416) (xy 20.350842 2.167458) (xy 19.886602 2.253945)
- (xy 19.379255 2.26968) (xy 18.868135 2.208465) (xy 18.698517 2.168494) (xy 18.323883 2.038792)
- (xy 18.047049 1.88526) (xy 17.887709 1.724315) (xy 17.865559 1.572377) (xy 17.907676 1.509213)
- (xy 17.999328 1.521939) (xy 18.195845 1.597683) (xy 18.427607 1.706768) (xy 18.724548 1.840502)
- (xy 18.994821 1.914036) (xy 19.314203 1.943608) (xy 19.548765 1.947016) (xy 19.946888 1.932859)
- (xy 20.228294 1.884745) (xy 20.443774 1.793518) (xy 20.462763 1.782214) (xy 20.740761 1.551643)
- (xy 20.872598 1.302311) (xy 20.854149 1.058101) (xy 20.681291 0.842897) (xy 20.631079 0.807535)
- (xy 20.477716 0.745784) (xy 20.197621 0.666644) (xy 19.831109 0.580454) (xy 19.432304 0.500107)
- (xy 18.98287 0.412194) (xy 18.666466 0.336259) (xy 18.448455 0.26059) (xy 18.294198 0.173474)
- (xy 18.18347 0.077829) (xy 17.992138 -0.213506) (xy 17.956655 -0.530755) (xy 18.03153 -0.757385)
- (xy 18.206453 -0.926119) (xy 18.514176 -1.063267) (xy 18.919396 -1.157614) (xy 19.38681 -1.197947)
- (xy 19.420033 -1.198448) (xy 20.045139 -1.16623)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy 5.836275 -2.273776) (xy 5.885992 -2.216088) (xy 5.913172 -2.081414) (xy 5.924499 -1.838231)
- (xy 5.926667 -1.487627) (xy 5.926667 -0.689254) (xy 6.2865 -0.88864) (xy 6.730863 -1.07377)
- (xy 7.227646 -1.184223) (xy 7.701374 -1.205876) (xy 7.872973 -1.185522) (xy 8.148845 -1.114458)
- (xy 8.359016 -1.001131) (xy 8.511951 -0.824424) (xy 8.616117 -0.563223) (xy 8.679981 -0.196413)
- (xy 8.712008 0.297123) (xy 8.720667 0.928613) (xy 8.719561 1.417313) (xy 8.714016 1.761811)
- (xy 8.700688 1.987235) (xy 8.676234 2.118714) (xy 8.637311 2.181375) (xy 8.580574 2.200348)
- (xy 8.551334 2.201333) (xy 8.48727 2.19325) (xy 8.441789 2.152536) (xy 8.411718 2.054491)
- (xy 8.393883 1.874413) (xy 8.385111 1.587605) (xy 8.382226 1.169365) (xy 8.382 0.883433)
- (xy 8.376939 0.417715) (xy 8.362986 0.003868) (xy 8.341987 -0.324792) (xy 8.315788 -0.534948)
- (xy 8.300569 -0.586621) (xy 8.106164 -0.781302) (xy 7.800657 -0.88919) (xy 7.418565 -0.909919)
- (xy 6.994401 -0.843124) (xy 6.562682 -0.688439) (xy 6.404132 -0.60671) (xy 5.969 -0.360993)
- (xy 5.945628 0.92017) (xy 5.935452 1.411065) (xy 5.923295 1.757629) (xy 5.905439 1.984858)
- (xy 5.878168 2.117745) (xy 5.837766 2.181284) (xy 5.780516 2.20047) (xy 5.755128 2.201333)
- (xy 5.704941 2.195513) (xy 5.665955 2.165409) (xy 5.636756 2.092059) (xy 5.615934 1.956498)
- (xy 5.602074 1.739763) (xy 5.593765 1.422889) (xy 5.589594 0.986913) (xy 5.588148 0.41287)
- (xy 5.588 -0.042334) (xy 5.588408 -0.715992) (xy 5.590586 -1.239288) (xy 5.595967 -1.631195)
- (xy 5.605981 -1.910684) (xy 5.622062 -2.096728) (xy 5.64564 -2.208297) (xy 5.678147 -2.264364)
- (xy 5.721016 -2.283901) (xy 5.757334 -2.286) (xy 5.836275 -2.273776)) (layer F.SilkS) (width 0.01))
- (fp_poly (pts (xy 12.241041 -1.107502) (xy 12.546528 -0.920472) (xy 12.635459 -0.818866) (xy 12.707654 -0.705847)
- (xy 12.76015 -0.580921) (xy 12.79691 -0.414662) (xy 12.821894 -0.17764) (xy 12.839067 0.159571)
- (xy 12.852389 0.626399) (xy 12.856868 0.8255) (xy 12.867227 1.33606) (xy 12.870895 1.701567)
- (xy 12.865265 1.946248) (xy 12.847726 2.094333) (xy 12.815669 2.170053) (xy 12.766484 2.197636)
- (xy 12.708702 2.201333) (xy 12.641414 2.194839) (xy 12.593646 2.158864) (xy 12.562056 2.068665)
- (xy 12.543304 1.8995) (xy 12.534052 1.626628) (xy 12.530958 1.225305) (xy 12.530667 0.882487)
- (xy 12.530667 -0.436359) (xy 12.271857 -0.69517) (xy 12.11325 -0.840145) (xy 11.970599 -0.911596)
- (xy 11.780528 -0.927438) (xy 11.515831 -0.908894) (xy 10.946904 -0.785485) (xy 10.568141 -0.622404)
- (xy 10.117667 -0.381) (xy 10.094295 0.910166) (xy 10.084166 1.403257) (xy 10.072094 1.751923)
- (xy 10.054408 1.981063) (xy 10.027432 2.115577) (xy 9.987494 2.180364) (xy 9.930919 2.200323)
- (xy 9.903795 2.201333) (xy 9.847015 2.194243) (xy 9.804795 2.158435) (xy 9.774982 2.072102)
- (xy 9.755426 1.913435) (xy 9.743973 1.660629) (xy 9.738471 1.291875) (xy 9.736768 0.785366)
- (xy 9.736667 0.508) (xy 9.737333 -0.067184) (xy 9.740786 -0.494856) (xy 9.749207 -0.796834)
- (xy 9.764779 -0.99494) (xy 9.789684 -1.110992) (xy 9.826104 -1.166811) (xy 9.87622 -1.184217)
- (xy 9.906 -1.185334) (xy 10.031094 -1.144246) (xy 10.074029 -0.99265) (xy 10.075334 -0.937294)
- (xy 10.075334 -0.689254) (xy 10.451004 -0.89922) (xy 10.91295 -1.097355) (xy 11.388864 -1.197246)
- (xy 11.843357 -1.200194) (xy 12.241041 -1.107502)) (layer F.SilkS) (width 0.01))
- )
- (gr_text "MLI Power Module (Control Board) Rev 3.3" (at 52.07 119.38) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.2)) (justify left))
- )
- (gr_text "© Enertechnos Ltd. 2017" (at 163.83 121.92) (layer B.Cu) (tstamp 5A2E98E7)
- (effects (font (size 1 1) (thickness 0.25)) (justify mirror))
- )
- (gr_text "© Enertechnos Ltd. 2017" (at 163.83 120.65) (layer F.Cu) (tstamp 5A2E98DD)
- (effects (font (size 1 1) (thickness 0.25)))
- )
- (gr_line (start 172.72 74.93) (end 172.72 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E2A))
- (gr_text "Switch 4" (at 145.034 77.216) (layer F.SilkS)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (gr_line (start 121.92 74.93) (end 172.72 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E27))
- (gr_line (start 172.72 110.49) (end 121.92 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E29))
- (gr_line (start 121.92 110.49) (end 121.92 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E28))
- (dimension 125.73 (width 0.3) (layer Dwgs.User)
- (gr_text "125.730 mm" (at 112.395 24.050001) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 49.53 34.29) (xy 49.53 22.700001)))
- (feature2 (pts (xy 175.26 34.29) (xy 175.26 22.700001)))
- (crossbar (pts (xy 175.26 25.400001) (xy 49.53 25.400001)))
- (arrow1a (pts (xy 49.53 25.400001) (xy 50.656504 24.81358)))
- (arrow1b (pts (xy 49.53 25.400001) (xy 50.656504 25.986422)))
- (arrow2a (pts (xy 175.26 25.400001) (xy 174.133496 24.81358)))
- (arrow2b (pts (xy 175.26 25.400001) (xy 174.133496 25.986422)))
- )
- (dimension 90.17 (width 0.3) (layer Dwgs.User)
- (gr_text "90.170 mm" (at 186.77 79.375 270) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 175.26 124.46) (xy 188.12 124.46)))
- (feature2 (pts (xy 175.26 34.29) (xy 188.12 34.29)))
- (crossbar (pts (xy 185.42 34.29) (xy 185.42 124.46)))
- (arrow1a (pts (xy 185.42 124.46) (xy 184.833579 123.333496)))
- (arrow1b (pts (xy 185.42 124.46) (xy 186.006421 123.333496)))
- (arrow2a (pts (xy 185.42 34.29) (xy 184.833579 35.416504)))
- (arrow2b (pts (xy 185.42 34.29) (xy 186.006421 35.416504)))
- )
- (gr_line (start 102.87 74.93) (end 102.87 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E26))
- (gr_line (start 102.87 110.49) (end 52.07 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E25))
- (gr_line (start 52.07 110.49) (end 52.07 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E24))
- (gr_line (start 52.07 74.93) (end 102.87 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E23))
- (gr_line (start 172.72 36.83) (end 172.72 72.39) (layer F.SilkS) (width 0.2) (tstamp 59F22E22))
- (gr_line (start 172.72 72.39) (end 121.92 72.39) (layer F.SilkS) (width 0.2) (tstamp 59F22E21))
- (gr_line (start 121.92 72.39) (end 121.92 36.83) (layer F.SilkS) (width 0.2) (tstamp 59F22E20))
- (gr_line (start 121.92 36.83) (end 172.72 36.83) (layer F.SilkS) (width 0.2) (tstamp 59F22E1F))
- (gr_line (start 52.07 72.39) (end 52.07 36.83) (layer F.SilkS) (width 0.2))
- (gr_line (start 102.87 72.39) (end 52.07 72.39) (layer F.SilkS) (width 0.2))
- (gr_line (start 102.87 36.83) (end 102.87 72.39) (layer F.SilkS) (width 0.2))
- (gr_line (start 52.07 36.83) (end 102.87 36.83) (layer F.SilkS) (width 0.2))
- (gr_line (start 49.53 124.46) (end 175.26 124.46) (layer Edge.Cuts) (width 0.15))
- (gr_line (start 49.53 34.29) (end 49.53 124.46) (layer Edge.Cuts) (width 0.15))
- (gr_line (start 175.26 34.29) (end 49.53 34.29) (layer Edge.Cuts) (width 0.15))
- (dimension 68.58 (width 0.3) (layer Dwgs.User)
- (gr_text "68.580 mm" (at 177.846292 73.66 90) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 170.18 39.37) (xy 179.196292 39.37)))
- (feature2 (pts (xy 170.18 107.95) (xy 179.196292 107.95)))
- (crossbar (pts (xy 176.496292 107.95) (xy 176.496292 39.37)))
- (arrow1a (pts (xy 176.496292 39.37) (xy 177.082713 40.496504)))
- (arrow1b (pts (xy 176.496292 39.37) (xy 175.909871 40.496504)))
- (arrow2a (pts (xy 176.496292 107.95) (xy 177.082713 106.823496)))
- (arrow2b (pts (xy 176.496292 107.95) (xy 175.909871 106.823496)))
- )
- (dimension 115.57 (width 0.3) (layer Dwgs.User)
- (gr_text "115.570 mm" (at 112.395 30.495205) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 170.18 39.37) (xy 170.18 29.145205)))
- (feature2 (pts (xy 54.61 39.37) (xy 54.61 29.145205)))
- (crossbar (pts (xy 54.61 31.845205) (xy 170.18 31.845205)))
- (arrow1a (pts (xy 170.18 31.845205) (xy 169.053496 32.431626)))
- (arrow1b (pts (xy 170.18 31.845205) (xy 169.053496 31.258784)))
- (arrow2a (pts (xy 54.61 31.845205) (xy 55.736504 32.431626)))
- (arrow2b (pts (xy 54.61 31.845205) (xy 55.736504 31.258784)))
- )
- (gr_text "© Enertechnos Ltd. 2017" (at 52.07 121.92) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.2)) (justify left))
- )
- (gr_line (start 175.26 34.29) (end 175.26 124.46) (layer Edge.Cuts) (width 0.15))
- (gr_text "Switch 2" (at 78.74 77.47) (layer F.SilkS)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (gr_text "Switch 3" (at 142.24 39.37) (layer F.SilkS)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (gr_text "Switch 1" (at 72.39 39.37) (layer F.SilkS)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (segment (start 81.32 53.34) (end 77.47 53.34) (width 1) (layer F.Cu) (net 1))
- (segment (start 71.12 47.244) (end 75.224 47.244) (width 1) (layer B.Cu) (net 1))
- (segment (start 75.224 47.244) (end 81.32 53.34) (width 1) (layer B.Cu) (net 1))
- (segment (start 71.12 47.244) (end 69.596 47.244) (width 1) (layer B.Cu) (net 1))
- (segment (start 69.596 47.244) (end 67.31 49.53) (width 1) (layer B.Cu) (net 1))
- (segment (start 87.63 53.34) (end 85.929999 51.639999) (width 1) (layer B.Cu) (net 1))
- (segment (start 85.929999 51.639999) (end 83.020001 51.639999) (width 1) (layer B.Cu) (net 1))
- (segment (start 83.020001 51.639999) (end 81.32 53.34) (width 1) (layer B.Cu) (net 1))
- (segment (start 94.02 53.34) (end 92.319999 51.639999) (width 1) (layer B.Cu) (net 1))
- (segment (start 92.319999 51.639999) (end 89.330001 51.639999) (width 1) (layer B.Cu) (net 1))
- (segment (start 89.330001 51.639999) (end 87.63 53.34) (width 1) (layer B.Cu) (net 1))
- (segment (start 69.85 53.34) (end 77.47 53.34) (width 1) (layer F.Cu) (net 1))
- (segment (start 146.05 53.34) (end 149.86 53.34) (width 1) (layer F.Cu) (net 2))
- (segment (start 156.21 53.34) (end 157.910001 51.639999) (width 1) (layer B.Cu) (net 2))
- (segment (start 157.910001 51.639999) (end 160.859999 51.639999) (width 1) (layer B.Cu) (net 2))
- (segment (start 160.859999 51.639999) (end 162.56 53.34) (width 1) (layer B.Cu) (net 2))
- (segment (start 149.86 53.34) (end 151.560001 51.639999) (width 1) (layer B.Cu) (net 2))
- (segment (start 151.560001 51.639999) (end 154.509999 51.639999) (width 1) (layer B.Cu) (net 2))
- (segment (start 154.509999 51.639999) (end 156.21 53.34) (width 1) (layer B.Cu) (net 2))
- (segment (start 134.62 50.8) (end 137.668 47.752) (width 1) (layer B.Cu) (net 2))
- (segment (start 137.668 47.752) (end 138.43 47.752) (width 1) (layer B.Cu) (net 2))
- (segment (start 138.43 47.752) (end 142.893568 47.752) (width 1) (layer B.Cu) (net 2))
- (segment (start 142.893568 47.752) (end 148.481568 53.34) (width 1) (layer B.Cu) (net 2))
- (segment (start 148.481568 53.34) (end 149.86 53.34) (width 1) (layer B.Cu) (net 2))
- (segment (start 138.43 53.34) (end 146.05 53.34) (width 1) (layer F.Cu) (net 2))
- (segment (start 138.43 84.074) (end 138.176 84.074) (width 1) (layer F.Cu) (net 3))
- (segment (start 146.05 91.44) (end 138.43 91.44) (width 1) (layer F.Cu) (net 3))
- (segment (start 138.176 84.074) (end 134.62 87.63) (width 1) (layer F.Cu) (net 3))
- (segment (start 157.52 91.44) (end 159.220001 93.140001) (width 1) (layer F.Cu) (net 3))
- (segment (start 159.220001 93.140001) (end 162.129999 93.140001) (width 1) (layer F.Cu) (net 3))
- (segment (start 162.129999 93.140001) (end 163.83 91.44) (width 1) (layer F.Cu) (net 3))
- (segment (start 152.870001 93.140001) (end 155.819999 93.140001) (width 1) (layer F.Cu) (net 3))
- (segment (start 155.819999 93.140001) (end 157.52 91.44) (width 1) (layer F.Cu) (net 3))
- (segment (start 146.05 91.44) (end 151.17 91.44) (width 1) (layer F.Cu) (net 3))
- (segment (start 151.17 91.44) (end 152.870001 93.140001) (width 1) (layer F.Cu) (net 3))
- (segment (start 142.004 84.074) (end 139.56137 84.074) (width 1) (layer B.Cu) (net 3))
- (segment (start 138.43 84.074) (end 138.176 84.074) (width 1) (layer B.Cu) (net 3))
- (segment (start 139.56137 84.074) (end 138.43 84.074) (width 1) (layer B.Cu) (net 3))
- (segment (start 151.17 91.44) (end 149.37 91.44) (width 1) (layer B.Cu) (net 3))
- (segment (start 149.37 91.44) (end 142.004 84.074) (width 1) (layer B.Cu) (net 3))
- (segment (start 65.278 62.23) (end 66.077999 63.029999) (width 1) (layer F.Cu) (net 4))
- (segment (start 70.903999 63.029999) (end 74.384001 66.510001) (width 1) (layer F.Cu) (net 4))
- (segment (start 66.077999 63.029999) (end 70.903999 63.029999) (width 1) (layer F.Cu) (net 4))
- (segment (start 74.384001 66.510001) (end 75.184 67.31) (width 1) (layer F.Cu) (net 4))
- (segment (start 69.85 55.88) (end 68.207049 57.522951) (width 1) (layer F.Cu) (net 4))
- (segment (start 68.207049 57.522951) (end 68.207049 59.300951) (width 1) (layer F.Cu) (net 4))
- (segment (start 68.207049 59.300951) (end 66.077999 61.430001) (width 1) (layer F.Cu) (net 4))
- (segment (start 66.077999 61.430001) (end 65.278 62.23) (width 1) (layer F.Cu) (net 4))
- (segment (start 65.278 98.298) (end 65.532 98.298) (width 1) (layer B.Cu) (net 5))
- (segment (start 65.532 98.298) (end 69.85 93.98) (width 1) (layer B.Cu) (net 5))
- (segment (start 72.39 105.41) (end 73.152 105.41) (width 1) (layer F.Cu) (net 5))
- (segment (start 65.278 98.298) (end 72.39 105.41) (width 1) (layer F.Cu) (net 5))
- (segment (start 133.858 61.722) (end 139.446 67.31) (width 1) (layer B.Cu) (net 6))
- (segment (start 139.446 67.31) (end 143.51 67.31) (width 1) (layer B.Cu) (net 6))
- (segment (start 133.858 61.722) (end 134.112 61.722) (width 1) (layer F.Cu) (net 6))
- (segment (start 138.43 55.88) (end 136.787049 57.522951) (width 1) (layer F.Cu) (net 6))
- (segment (start 136.787049 57.522951) (end 136.787049 58.792951) (width 1) (layer F.Cu) (net 6))
- (segment (start 136.787049 58.792951) (end 134.657999 60.922001) (width 1) (layer F.Cu) (net 6))
- (segment (start 134.657999 60.922001) (end 133.858 61.722) (width 1) (layer F.Cu) (net 6))
- (segment (start 134.62 99.06) (end 139.446 103.886) (width 1) (layer F.Cu) (net 7))
- (segment (start 136.787049 95.622951) (end 136.787049 96.892951) (width 1) (layer F.Cu) (net 7))
- (segment (start 136.787049 96.892951) (end 135.419999 98.260001) (width 1) (layer F.Cu) (net 7))
- (segment (start 139.446 103.886) (end 139.446 105.41) (width 1) (layer F.Cu) (net 7))
- (segment (start 135.419999 98.260001) (end 134.62 99.06) (width 1) (layer F.Cu) (net 7))
- (segment (start 138.43 93.98) (end 136.787049 95.622951) (width 1) (layer F.Cu) (net 7))
- (segment (start 123.057027 86.289654) (end 122.307028 85.539655) (width 1) (layer B.Cu) (net 8))
- (segment (start 122.307028 55.492972) (end 122.307028 84.478995) (width 1) (layer F.Cu) (net 8))
- (segment (start 124.397373 87.63) (end 123.057027 86.289654) (width 1) (layer B.Cu) (net 8))
- (segment (start 127 50.8) (end 122.307028 55.492972) (width 1) (layer F.Cu) (net 8))
- (segment (start 122.307028 84.478995) (end 122.307028 85.539655) (width 1) (layer F.Cu) (net 8))
- (segment (start 127 87.63) (end 124.397373 87.63) (width 1) (layer B.Cu) (net 8))
- (via (at 122.307028 85.539655) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 8))
- (segment (start 117.220001 101.122001) (end 117.220001 98.170001) (width 1) (layer B.Cu) (net 8))
- (segment (start 106.519978 104.780022) (end 113.56198 104.780022) (width 1) (layer B.Cu) (net 8))
- (segment (start 99.933737 111.366263) (end 106.519978 104.780022) (width 1) (layer B.Cu) (net 8))
- (segment (start 70.040347 111.366263) (end 99.933737 111.366263) (width 1) (layer B.Cu) (net 8))
- (segment (start 60.678052 102.003968) (end 70.040347 111.366263) (width 1) (layer B.Cu) (net 8))
- (segment (start 60.678051 89.888051) (end 60.678052 102.003968) (width 1) (layer B.Cu) (net 8))
- (segment (start 113.56198 104.780022) (end 117.220001 101.122001) (width 1) (layer B.Cu) (net 8))
- (segment (start 58.42 87.63) (end 60.678051 89.888051) (width 1) (layer B.Cu) (net 8))
- (segment (start 117.220001 98.170001) (end 116.84 97.79) (width 1) (layer B.Cu) (net 8))
- (segment (start 116.84 97.79) (end 118.59 97.79) (width 1) (layer F.Cu) (net 8))
- (segment (start 118.59 97.79) (end 119.99001 99.19001) (width 1) (layer F.Cu) (net 8))
- (segment (start 119.99001 99.19001) (end 123.079881 99.19001) (width 1) (layer F.Cu) (net 8))
- (segment (start 123.079881 99.19001) (end 123.134505 99.135386) (width 1) (layer F.Cu) (net 8))
- (segment (start 123.134505 99.135386) (end 123.899989 99.135386) (width 1) (layer F.Cu) (net 8))
- (segment (start 126.757059 90.879989) (end 124.900096 90.879989) (width 1) (layer F.Cu) (net 8))
- (segment (start 124.900096 90.879989) (end 123.899989 91.880096) (width 1) (layer F.Cu) (net 8))
- (segment (start 127 90.637047) (end 126.757059 90.879989) (width 1) (layer F.Cu) (net 8))
- (segment (start 127 87.63) (end 127 90.637047) (width 1) (layer F.Cu) (net 8))
- (segment (start 123.899989 91.880096) (end 123.899989 99.135386) (width 1) (layer F.Cu) (net 8))
- (segment (start 55.957999 53.262001) (end 58.947051 50.272949) (width 1) (layer B.Cu) (net 8))
- (segment (start 55.957999 85.167999) (end 55.957999 53.262001) (width 1) (layer B.Cu) (net 8))
- (segment (start 58.42 87.63) (end 55.957999 85.167999) (width 1) (layer B.Cu) (net 8))
- (segment (start 58.947051 50.272949) (end 59.69 49.53) (width 1) (layer B.Cu) (net 8))
- (segment (start 128.642951 81.652951) (end 127 80.01) (width 1) (layer F.Cu) (net 9))
- (segment (start 128.642951 91.186081) (end 128.642951 81.652951) (width 1) (layer F.Cu) (net 9))
- (segment (start 127.549033 92.279999) (end 128.642951 91.186081) (width 1) (layer F.Cu) (net 9))
- (segment (start 124.197364 100.817924) (end 125.299999 99.715289) (width 1) (layer F.Cu) (net 9))
- (segment (start 116.63066 100.33) (end 117.118584 100.817924) (width 1) (layer F.Cu) (net 9))
- (segment (start 115.57 100.33) (end 116.63066 100.33) (width 1) (layer F.Cu) (net 9))
- (segment (start 125.299999 99.715289) (end 125.299999 92.46) (width 1) (layer F.Cu) (net 9))
- (segment (start 125.299999 92.46) (end 125.479999 92.28) (width 1) (layer F.Cu) (net 9))
- (segment (start 125.479999 92.28) (end 127.549033 92.279999) (width 1) (layer F.Cu) (net 9))
- (segment (start 117.118584 100.817924) (end 124.197364 100.817924) (width 1) (layer F.Cu) (net 9))
- (segment (start 112.519989 103.380011) (end 114.820001 101.079999) (width 1) (layer B.Cu) (net 9))
- (segment (start 104.274045 103.380011) (end 112.519989 103.380011) (width 1) (layer B.Cu) (net 9))
- (segment (start 97.687804 109.966252) (end 104.274045 103.380011) (width 1) (layer B.Cu) (net 9))
- (segment (start 70.62025 109.966252) (end 97.687804 109.966252) (width 1) (layer B.Cu) (net 9))
- (segment (start 58.42 80.01) (end 60.16295 80.01) (width 1) (layer B.Cu) (net 9))
- (segment (start 62.078062 101.424064) (end 70.62025 109.966252) (width 1) (layer B.Cu) (net 9))
- (segment (start 60.16295 80.01) (end 62.078062 81.925112) (width 1) (layer B.Cu) (net 9))
- (segment (start 114.820001 101.079999) (end 115.57 100.33) (width 1) (layer B.Cu) (net 9))
- (segment (start 62.078062 81.925112) (end 62.078062 101.424064) (width 1) (layer B.Cu) (net 9))
- (segment (start 59.69 41.91) (end 61.43295 41.91) (width 1) (layer F.Cu) (net 9))
- (segment (start 61.43295 41.91) (end 63.075901 40.267049) (width 1) (layer F.Cu) (net 9))
- (segment (start 63.075901 40.267049) (end 122.344099 40.267049) (width 1) (layer F.Cu) (net 9))
- (segment (start 122.344099 40.267049) (end 125.25705 43.18) (width 1) (layer F.Cu) (net 9))
- (segment (start 125.25705 43.18) (end 127 43.18) (width 1) (layer F.Cu) (net 9))
- (segment (start 57.652625 72.97099) (end 58.402624 73.720989) (width 1) (layer F.Cu) (net 9))
- (segment (start 58.42 80.01) (end 58.42 73.738365) (width 1) (layer B.Cu) (net 9))
- (segment (start 55.957999 71.276364) (end 57.652625 72.97099) (width 1) (layer F.Cu) (net 9))
- (segment (start 55.957999 43.899051) (end 55.957999 71.276364) (width 1) (layer F.Cu) (net 9))
- (segment (start 59.69 41.91) (end 57.94705 41.91) (width 1) (layer F.Cu) (net 9))
- (segment (start 57.94705 41.91) (end 55.957999 43.899051) (width 1) (layer F.Cu) (net 9))
- (segment (start 58.42 73.738365) (end 58.402624 73.720989) (width 1) (layer B.Cu) (net 9))
- (via (at 58.402624 73.720989) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 9))
- (segment (start 116.84 106.68) (end 117.589999 107.429999) (width 1) (layer F.Cu) (net 10))
- (segment (start 117.589999 107.429999) (end 117.589999 109.642003) (width 1) (layer F.Cu) (net 10))
- (segment (start 117.589999 109.642003) (end 114.387003 112.844999) (width 1) (layer F.Cu) (net 10))
- (segment (start 94.02 116.905128) (end 94.02 118.142564) (width 1) (layer F.Cu) (net 10))
- (segment (start 114.387003 112.844999) (end 98.080129 112.844999) (width 1) (layer F.Cu) (net 10))
- (segment (start 98.080129 112.844999) (end 94.02 116.905128) (width 1) (layer F.Cu) (net 10))
- (segment (start 124.46 110.49) (end 128.27 114.3) (width 1) (layer B.Cu) (net 10))
- (segment (start 128.27 114.3) (end 143.51 114.3) (width 1) (layer B.Cu) (net 10))
- (segment (start 124.46 106.68) (end 124.46 110.49) (width 1) (layer B.Cu) (net 10))
- (segment (start 109.64894 87.685906) (end 110.398939 88.435905) (width 1) (layer B.Cu) (net 10))
- (segment (start 85.586457 80.228459) (end 102.191493 80.228459) (width 1) (layer B.Cu) (net 10))
- (segment (start 123.957038 87.863219) (end 123.384352 88.435905) (width 1) (layer F.Cu) (net 10))
- (via (at 110.398939 88.435905) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 10))
- (segment (start 72.820001 66.493999) (end 72.820001 67.462003) (width 1) (layer B.Cu) (net 10))
- (segment (start 70.256003 63.930001) (end 72.820001 66.493999) (width 1) (layer B.Cu) (net 10))
- (segment (start 61.898001 63.930001) (end 70.256003 63.930001) (width 1) (layer B.Cu) (net 10))
- (segment (start 72.820001 67.462003) (end 85.586457 80.228459) (width 1) (layer B.Cu) (net 10))
- (segment (start 111.148938 89.185904) (end 110.398939 88.435905) (width 1) (layer B.Cu) (net 10))
- (segment (start 102.191493 80.228459) (end 109.64894 87.685906) (width 1) (layer B.Cu) (net 10))
- (segment (start 118.483034 96.52) (end 111.148938 89.185904) (width 1) (layer B.Cu) (net 10))
- (segment (start 123.957038 61.462962) (end 123.957038 87.863219) (width 1) (layer F.Cu) (net 10))
- (segment (start 124.46 96.52) (end 118.483034 96.52) (width 1) (layer B.Cu) (net 10))
- (segment (start 123.384352 88.435905) (end 111.459599 88.435905) (width 1) (layer F.Cu) (net 10))
- (segment (start 126.238 59.182) (end 123.957038 61.462962) (width 1) (layer F.Cu) (net 10))
- (segment (start 111.459599 88.435905) (end 110.398939 88.435905) (width 1) (layer F.Cu) (net 10))
- (segment (start 57.658 59.69) (end 61.898001 63.930001) (width 1) (layer B.Cu) (net 10))
- (segment (start 127 96.52) (end 124.46 96.52) (width 1) (layer B.Cu) (net 10))
- (segment (start 124.46 106.68) (end 124.46 96.52) (width 1) (layer B.Cu) (net 10))
- (segment (start 127 96.52) (end 126.855544 96.664456) (width 1) (layer B.Cu) (net 10))
- (segment (start 116.84 106.68) (end 124.46 106.68) (width 1) (layer B.Cu) (net 10))
- (segment (start 60.052625 74.51299) (end 55.957999 78.607616) (width 1) (layer F.Cu) (net 10))
- (segment (start 57.658 59.69) (end 60.052625 62.084625) (width 1) (layer F.Cu) (net 10))
- (segment (start 60.052625 62.084625) (end 60.052625 74.51299) (width 1) (layer F.Cu) (net 10))
- (segment (start 56.52663 95.758) (end 57.658 95.758) (width 1) (layer F.Cu) (net 10))
- (segment (start 55.957999 78.607616) (end 55.957999 95.189369) (width 1) (layer F.Cu) (net 10))
- (segment (start 55.957999 95.189369) (end 56.52663 95.758) (width 1) (layer F.Cu) (net 10))
- (segment (start 77.47 91.44) (end 81.32 91.44) (width 1) (layer F.Cu) (net 11))
- (segment (start 69.85 91.44) (end 77.47 91.44) (width 1) (layer F.Cu) (net 11))
- (segment (start 69.85 85.598) (end 74.059568 85.598) (width 1) (layer B.Cu) (net 11))
- (segment (start 74.059568 85.598) (end 79.901568 91.44) (width 1) (layer B.Cu) (net 11))
- (segment (start 79.901568 91.44) (end 81.32 91.44) (width 1) (layer B.Cu) (net 11))
- (segment (start 93.98 91.44) (end 92.279999 89.739999) (width 1) (layer F.Cu) (net 11))
- (segment (start 92.279999 89.739999) (end 89.370001 89.739999) (width 1) (layer F.Cu) (net 11))
- (segment (start 89.370001 89.739999) (end 87.67 91.44) (width 1) (layer F.Cu) (net 11))
- (segment (start 69.85 85.598) (end 68.072 85.598) (width 1) (layer F.Cu) (net 11))
- (segment (start 68.072 85.598) (end 66.04 87.63) (width 1) (layer F.Cu) (net 11))
- (segment (start 87.67 91.44) (end 85.969999 89.739999) (width 1) (layer F.Cu) (net 11))
- (segment (start 85.969999 89.739999) (end 83.020001 89.739999) (width 1) (layer F.Cu) (net 11))
- (segment (start 83.020001 89.739999) (end 81.32 91.44) (width 1) (layer F.Cu) (net 11))
- (segment (start 65.278 57.15) (end 66.077999 56.350001) (width 1) (layer F.Cu) (net 12))
- (segment (start 66.077999 56.350001) (end 66.077999 54.006099) (width 1) (layer F.Cu) (net 12))
- (segment (start 66.077999 54.006099) (end 71.140097 48.944001) (width 1) (layer F.Cu) (net 12))
- (segment (start 71.140097 48.944001) (end 77.039999 48.944001) (width 1) (layer F.Cu) (net 12))
- (segment (start 77.039999 48.944001) (end 77.940001 48.043999) (width 1) (layer F.Cu) (net 12))
- (segment (start 77.940001 48.043999) (end 78.74 47.244) (width 1) (layer F.Cu) (net 12))
- (segment (start 86.36 45.72) (end 80.264 45.72) (width 1) (layer F.Cu) (net 12))
- (segment (start 80.264 45.72) (end 78.74 47.244) (width 1) (layer F.Cu) (net 12))
- (segment (start 82.804 67.31) (end 84.504001 69.010001) (width 1) (layer B.Cu) (net 12))
- (segment (start 84.504001 69.010001) (end 88.446001 69.010001) (width 1) (layer B.Cu) (net 12))
- (segment (start 94.02 62.76) (end 94.02 60.96) (width 1) (layer B.Cu) (net 12))
- (segment (start 88.446001 69.010001) (end 94.02 63.436002) (width 1) (layer B.Cu) (net 12))
- (segment (start 94.02 63.436002) (end 94.02 62.76) (width 1) (layer B.Cu) (net 12))
- (segment (start 86.36 45.72) (end 88.36 45.72) (width 1) (layer F.Cu) (net 12))
- (segment (start 88.36 45.72) (end 92.319999 49.679999) (width 1) (layer F.Cu) (net 12))
- (segment (start 92.319999 49.679999) (end 92.319999 57.459999) (width 1) (layer F.Cu) (net 12))
- (segment (start 92.319999 57.459999) (end 94.02 59.16) (width 1) (layer F.Cu) (net 12))
- (segment (start 94.02 59.16) (end 94.02 60.96) (width 1) (layer F.Cu) (net 12))
- (segment (start 80.772 105.41) (end 82.472001 107.110001) (width 1) (layer B.Cu) (net 13))
- (segment (start 82.472001 107.110001) (end 87.769999 107.110001) (width 1) (layer B.Cu) (net 13))
- (segment (start 87.769999 107.110001) (end 94.02 100.86) (width 1) (layer B.Cu) (net 13))
- (segment (start 94.02 100.86) (end 94.02 99.06) (width 1) (layer B.Cu) (net 13))
- (segment (start 65.278 93.218) (end 72.898 85.598) (width 1) (layer F.Cu) (net 13))
- (segment (start 72.898 85.598) (end 77.47 85.598) (width 1) (layer F.Cu) (net 13))
- (segment (start 90.17 83.82) (end 90.17 85.82) (width 1) (layer B.Cu) (net 13))
- (segment (start 94.02 97.26) (end 94.02 99.06) (width 1) (layer B.Cu) (net 13))
- (segment (start 90.17 85.82) (end 92.279999 87.929999) (width 1) (layer B.Cu) (net 13))
- (segment (start 92.279999 87.929999) (end 92.279999 95.519999) (width 1) (layer B.Cu) (net 13))
- (segment (start 92.279999 95.519999) (end 94.02 97.26) (width 1) (layer B.Cu) (net 13))
- (segment (start 77.47 85.598) (end 88.392 85.598) (width 1) (layer F.Cu) (net 13))
- (segment (start 88.392 85.598) (end 90.17 83.82) (width 1) (layer F.Cu) (net 13))
- (segment (start 133.858 56.642) (end 133.858 54.806098) (width 1) (layer F.Cu) (net 14))
- (segment (start 133.858 54.806098) (end 138.86028 49.803818) (width 1) (layer F.Cu) (net 14))
- (segment (start 138.86028 49.803818) (end 142.866812 49.803818) (width 1) (layer F.Cu) (net 14))
- (segment (start 144.91863 47.752) (end 146.05 47.752) (width 1) (layer F.Cu) (net 14))
- (segment (start 142.866812 49.803818) (end 144.91863 47.752) (width 1) (layer F.Cu) (net 14))
- (segment (start 151.13 67.31) (end 152.830001 69.010001) (width 1) (layer B.Cu) (net 14))
- (segment (start 152.830001 69.010001) (end 157.026001 69.010001) (width 1) (layer B.Cu) (net 14))
- (segment (start 162.56 62.76) (end 162.56 60.96) (width 1) (layer B.Cu) (net 14))
- (segment (start 157.026001 69.010001) (end 162.56 63.476002) (width 1) (layer B.Cu) (net 14))
- (segment (start 162.56 63.476002) (end 162.56 62.76) (width 1) (layer B.Cu) (net 14))
- (segment (start 156.21 45.72) (end 158.21 45.72) (width 1) (layer F.Cu) (net 14))
- (segment (start 158.21 45.72) (end 160.410001 47.920001) (width 1) (layer F.Cu) (net 14))
- (segment (start 160.410001 47.920001) (end 160.410001 57.010001) (width 1) (layer F.Cu) (net 14))
- (segment (start 162.56 59.16) (end 162.56 60.96) (width 1) (layer F.Cu) (net 14))
- (segment (start 160.410001 57.010001) (end 162.56 59.16) (width 1) (layer F.Cu) (net 14))
- (segment (start 156.21 45.72) (end 148.082 45.72) (width 1) (layer F.Cu) (net 14))
- (segment (start 148.082 45.72) (end 146.05 47.752) (width 1) (layer F.Cu) (net 14))
- (segment (start 134.62 93.98) (end 134.62 92.144098) (width 1) (layer F.Cu) (net 15))
- (segment (start 144.91863 84.074) (end 146.05 84.074) (width 1) (layer F.Cu) (net 15))
- (segment (start 134.62 92.144098) (end 142.690098 84.074) (width 1) (layer F.Cu) (net 15))
- (segment (start 142.690098 84.074) (end 144.91863 84.074) (width 1) (layer F.Cu) (net 15))
- (segment (start 155.956 84.074) (end 156.21 83.82) (width 1) (layer F.Cu) (net 15))
- (segment (start 146.05 84.074) (end 155.956 84.074) (width 1) (layer F.Cu) (net 15))
- (segment (start 156.21 83.82) (end 158.21 83.82) (width 1) (layer B.Cu) (net 15))
- (segment (start 163.83 105.640002) (end 162.106001 107.364001) (width 1) (layer B.Cu) (net 15))
- (segment (start 162.106001 107.364001) (end 149.020001 107.364001) (width 1) (layer B.Cu) (net 15))
- (segment (start 149.020001 107.364001) (end 147.865999 106.209999) (width 1) (layer B.Cu) (net 15))
- (segment (start 147.865999 106.209999) (end 147.066 105.41) (width 1) (layer B.Cu) (net 15))
- (segment (start 163.83 97.26) (end 163.83 99.06) (width 1) (layer B.Cu) (net 15))
- (segment (start 163.83 99.06) (end 163.83 105.640002) (width 1) (layer B.Cu) (net 15))
- (segment (start 158.21 83.82) (end 162.129999 87.739999) (width 1) (layer B.Cu) (net 15))
- (segment (start 162.129999 87.739999) (end 162.129999 95.559999) (width 1) (layer B.Cu) (net 15))
- (segment (start 162.129999 95.559999) (end 163.83 97.26) (width 1) (layer B.Cu) (net 15))
- (segment (start 114.3 97.79) (end 112.649999 96.139999) (width 1) (layer B.Cu) (net 16))
- (segment (start 104.697082 96.139999) (end 92.070001 83.512918) (width 1) (layer B.Cu) (net 16))
- (segment (start 91.890001 81.919999) (end 84.598629 81.919999) (width 1) (layer B.Cu) (net 16))
- (segment (start 112.649999 96.139999) (end 104.697082 96.139999) (width 1) (layer B.Cu) (net 16))
- (segment (start 92.070001 83.512918) (end 92.070001 82.099999) (width 1) (layer B.Cu) (net 16))
- (segment (start 92.070001 82.099999) (end 91.890001 81.919999) (width 1) (layer B.Cu) (net 16))
- (segment (start 84.598629 81.919999) (end 69.85 67.17137) (width 1) (layer B.Cu) (net 16))
- (segment (start 69.85 67.17137) (end 69.85 66.04) (width 1) (layer B.Cu) (net 16))
- (segment (start 69.85 66.04) (end 69.85 67.31) (width 1) (layer F.Cu) (net 16))
- (segment (start 69.85 67.31) (end 67.31 69.85) (width 1) (layer F.Cu) (net 16))
- (segment (start 103.390001 99.809999) (end 104.987997 99.809999) (width 1) (layer B.Cu) (net 17))
- (segment (start 104.987997 99.809999) (end 107.157999 101.980001) (width 1) (layer B.Cu) (net 17))
- (segment (start 107.157999 101.980001) (end 111.379999 101.980001) (width 1) (layer B.Cu) (net 17))
- (segment (start 111.379999 101.980001) (end 112.280001 101.079999) (width 1) (layer B.Cu) (net 17))
- (segment (start 112.280001 101.079999) (end 113.03 100.33) (width 1) (layer B.Cu) (net 17))
- (segment (start 94.633759 108.566241) (end 103.390001 99.809999) (width 1) (layer B.Cu) (net 17))
- (segment (start 64.77 101.6) (end 71.736241 108.566241) (width 1) (layer B.Cu) (net 17))
- (segment (start 71.736241 108.566241) (end 94.633759 108.566241) (width 1) (layer B.Cu) (net 17))
- (segment (start 64.77 101.6) (end 64.77 104.14) (width 1) (layer F.Cu) (net 17))
- (segment (start 64.77 104.14) (end 62.23 106.68) (width 1) (layer F.Cu) (net 17))
- (segment (start 113.410001 96.139999) (end 112.509999 97.040001) (width 1) (layer F.Cu) (net 18))
- (segment (start 112.509999 97.040001) (end 111.76 97.79) (width 1) (layer F.Cu) (net 18))
- (segment (start 117.660172 96.139999) (end 113.410001 96.139999) (width 1) (layer F.Cu) (net 18))
- (segment (start 125.357048 88.443123) (end 117.660172 96.139999) (width 1) (layer F.Cu) (net 18))
- (segment (start 125.357048 78.54705) (end 125.357048 88.443123) (width 1) (layer F.Cu) (net 18))
- (segment (start 132.08 71.824098) (end 125.357048 78.54705) (width 1) (layer F.Cu) (net 18))
- (segment (start 132.08 69.85) (end 132.08 71.824098) (width 1) (layer F.Cu) (net 18))
- (segment (start 134.366 65.532) (end 134.366 67.564) (width 1) (layer F.Cu) (net 18))
- (segment (start 134.366 67.564) (end 132.08 69.85) (width 1) (layer F.Cu) (net 18))
- (segment (start 110.49 100.33) (end 112.377934 102.217934) (width 1) (layer F.Cu) (net 19))
- (segment (start 125.86863 102.87) (end 127 102.87) (width 1) (layer F.Cu) (net 19))
- (segment (start 125.216564 102.217934) (end 125.86863 102.87) (width 1) (layer F.Cu) (net 19))
- (segment (start 112.377934 102.217934) (end 125.216564 102.217934) (width 1) (layer F.Cu) (net 19))
- (segment (start 127 102.87) (end 127 105.41) (width 1) (layer F.Cu) (net 19))
- (segment (start 127 105.41) (end 129.54 107.95) (width 1) (layer F.Cu) (net 19))
- (segment (start 62.23 66.04) (end 62.23 67.27) (width 1) (layer F.Cu) (net 20))
- (segment (start 62.23 67.27) (end 64.81 69.85) (width 1) (layer F.Cu) (net 20))
- (segment (start 62.23 66.04) (end 62.23 59.922) (width 1) (layer F.Cu) (net 20))
- (segment (start 62.23 59.922) (end 59.458 57.15) (width 1) (layer F.Cu) (net 20))
- (segment (start 57.658 57.15) (end 59.458 57.15) (width 1) (layer F.Cu) (net 20))
- (segment (start 57.15 101.6) (end 57.15 104.1) (width 1) (layer F.Cu) (net 21))
- (segment (start 57.15 104.1) (end 59.73 106.68) (width 1) (layer F.Cu) (net 21))
- (segment (start 59.906001 93.666001) (end 59.906001 98.843999) (width 1) (layer F.Cu) (net 21))
- (segment (start 59.906001 98.843999) (end 57.15 101.6) (width 1) (layer F.Cu) (net 21))
- (segment (start 59.458 93.218) (end 57.658 93.218) (width 1) (layer F.Cu) (net 21))
- (segment (start 59.906001 93.666001) (end 59.458 93.218) (width 1) (layer F.Cu) (net 21))
- (segment (start 129.58 68.366) (end 129.58 69.85) (width 1) (layer F.Cu) (net 22))
- (segment (start 126.746 65.532) (end 129.58 68.366) (width 1) (layer F.Cu) (net 22))
- (segment (start 126.238 56.642) (end 127.938001 58.342001) (width 1) (layer F.Cu) (net 22))
- (segment (start 127.938001 58.342001) (end 127.938001 64.339999) (width 1) (layer F.Cu) (net 22))
- (segment (start 127.938001 64.339999) (end 127.545999 64.732001) (width 1) (layer F.Cu) (net 22))
- (segment (start 127.545999 64.732001) (end 126.746 65.532) (width 1) (layer F.Cu) (net 22))
- (segment (start 134.62 102.87) (end 134.62 105.37) (width 1) (layer F.Cu) (net 23))
- (segment (start 134.62 101.6) (end 134.62 102.87) (width 1) (layer F.Cu) (net 23))
- (segment (start 127 93.98) (end 134.62 101.6) (width 1) (layer F.Cu) (net 23))
- (segment (start 134.62 105.37) (end 132.04 107.95) (width 1) (layer F.Cu) (net 23))
- (segment (start 111.76 50.8) (end 110.109999 49.149999) (width 1) (layer F.Cu) (net 24))
- (segment (start 110.109999 49.149999) (end 100.710001 49.149999) (width 1) (layer F.Cu) (net 24))
- (segment (start 100.710001 49.149999) (end 97.319999 52.540001) (width 1) (layer F.Cu) (net 24))
- (segment (start 97.319999 52.540001) (end 96.52 53.34) (width 1) (layer F.Cu) (net 24))
- (segment (start 65.278 59.69) (end 63.577999 57.989999) (width 1) (layer F.Cu) (net 24))
- (segment (start 63.577999 57.989999) (end 63.577999 48.182001) (width 1) (layer F.Cu) (net 24))
- (segment (start 63.577999 48.182001) (end 66.567051 45.192949) (width 1) (layer F.Cu) (net 24))
- (segment (start 66.567051 45.192949) (end 67.31 44.45) (width 1) (layer F.Cu) (net 24))
- (segment (start 69.85 60.96) (end 66.548 60.96) (width 1) (layer B.Cu) (net 24))
- (segment (start 66.548 60.96) (end 65.278 59.69) (width 1) (layer B.Cu) (net 24))
- (segment (start 95.25 67.31) (end 96.52 66.04) (width 1) (layer B.Cu) (net 24))
- (segment (start 96.52 66.04) (end 96.52 60.96) (width 1) (layer B.Cu) (net 24))
- (segment (start 77.47 60.96) (end 69.85 60.96) (width 1) (layer F.Cu) (net 24))
- (segment (start 81.32 60.96) (end 77.47 60.96) (width 1) (layer F.Cu) (net 24))
- (segment (start 83.82 53.34) (end 85.520001 55.040001) (width 1) (layer F.Cu) (net 24))
- (segment (start 85.520001 55.040001) (end 89.561369 55.040001) (width 1) (layer F.Cu) (net 24))
- (segment (start 89.561369 55.040001) (end 90.13 54.47137) (width 1) (layer F.Cu) (net 24))
- (segment (start 90.13 54.47137) (end 90.13 53.34) (width 1) (layer F.Cu) (net 24))
- (segment (start 81.32 60.96) (end 83.82 58.46) (width 1) (layer F.Cu) (net 24))
- (segment (start 83.82 58.46) (end 83.82 53.34) (width 1) (layer F.Cu) (net 24))
- (segment (start 90.17 60.96) (end 89.370001 61.759999) (width 1) (layer F.Cu) (net 24))
- (segment (start 89.370001 61.759999) (end 89.370001 62.480001) (width 1) (layer F.Cu) (net 24))
- (segment (start 89.370001 62.480001) (end 89.190001 62.660001) (width 1) (layer F.Cu) (net 24))
- (segment (start 89.190001 62.660001) (end 83.020001 62.660001) (width 1) (layer F.Cu) (net 24))
- (segment (start 83.020001 62.660001) (end 81.32 60.96) (width 1) (layer F.Cu) (net 24))
- (segment (start 96.52 60.96) (end 96.52 62.09137) (width 1) (layer F.Cu) (net 24))
- (segment (start 96.52 62.09137) (end 95.951369 62.660001) (width 1) (layer F.Cu) (net 24))
- (segment (start 95.951369 62.660001) (end 91.870001 62.660001) (width 1) (layer F.Cu) (net 24))
- (segment (start 91.870001 62.660001) (end 90.969999 61.759999) (width 1) (layer F.Cu) (net 24))
- (segment (start 90.969999 61.759999) (end 90.17 60.96) (width 1) (layer F.Cu) (net 24))
- (segment (start 91.44 45.72) (end 96.52 50.8) (width 1) (layer F.Cu) (net 24))
- (segment (start 96.52 50.8) (end 96.52 53.34) (width 1) (layer F.Cu) (net 24))
- (segment (start 96.52 53.34) (end 96.52 60.96) (width 1) (layer F.Cu) (net 24))
- (segment (start 109.22 50.8) (end 101.576002 50.8) (width 1) (layer B.Cu) (net 25))
- (segment (start 101.576002 50.8) (end 95.171369 57.204633) (width 1) (layer B.Cu) (net 25))
- (segment (start 95.171369 57.204633) (end 91.425367 57.204633) (width 1) (layer B.Cu) (net 25))
- (segment (start 91.425367 57.204633) (end 87.67 60.96) (width 1) (layer B.Cu) (net 25))
- (segment (start 77.47 58.42) (end 77.47 55.88) (width 1) (layer B.Cu) (net 25))
- (segment (start 83.82 60.96) (end 83.020001 60.160001) (width 1) (layer B.Cu) (net 25))
- (segment (start 83.020001 60.160001) (end 83.020001 59.439999) (width 1) (layer B.Cu) (net 25))
- (segment (start 83.020001 59.439999) (end 82.000002 58.42) (width 1) (layer B.Cu) (net 25))
- (segment (start 82.000002 58.42) (end 78.520689 58.42) (width 1) (layer B.Cu) (net 25))
- (segment (start 78.520689 58.42) (end 77.47 58.42) (width 1) (layer B.Cu) (net 25))
- (segment (start 87.67 60.96) (end 83.82 60.96) (width 1) (layer B.Cu) (net 25))
- (segment (start 87.63 67.31) (end 87.63 61) (width 1) (layer B.Cu) (net 25))
- (segment (start 87.63 61) (end 87.67 60.96) (width 1) (layer B.Cu) (net 25))
- (segment (start 95.25 83.82) (end 98.849495 80.220505) (width 1) (layer F.Cu) (net 26))
- (segment (start 98.849495 80.220505) (end 98.849495 57.350083) (width 1) (layer F.Cu) (net 26))
- (segment (start 98.849495 57.350083) (end 102.859578 53.34) (width 1) (layer F.Cu) (net 26))
- (segment (start 102.859578 53.34) (end 107.95 53.34) (width 1) (layer F.Cu) (net 26))
- (segment (start 90.17 91.44) (end 91.870001 93.140001) (width 1) (layer F.Cu) (net 26))
- (segment (start 96.48 92.57137) (end 96.48 91.44) (width 1) (layer F.Cu) (net 26))
- (segment (start 91.870001 93.140001) (end 95.911369 93.140001) (width 1) (layer F.Cu) (net 26))
- (segment (start 95.911369 93.140001) (end 96.48 92.57137) (width 1) (layer F.Cu) (net 26))
- (segment (start 66.40937 95.758) (end 65.278 95.758) (width 1) (layer F.Cu) (net 26))
- (segment (start 66.548 95.758) (end 66.40937 95.758) (width 1) (layer F.Cu) (net 26))
- (segment (start 69.85 99.06) (end 66.548 95.758) (width 1) (layer F.Cu) (net 26))
- (segment (start 65.278 95.758) (end 64.14663 95.758) (width 1) (layer F.Cu) (net 26))
- (segment (start 64.14663 95.758) (end 63.577999 95.189369) (width 1) (layer F.Cu) (net 26))
- (segment (start 63.577999 85.012001) (end 65.297051 83.292949) (width 1) (layer F.Cu) (net 26))
- (segment (start 63.577999 95.189369) (end 63.577999 85.012001) (width 1) (layer F.Cu) (net 26))
- (segment (start 65.297051 83.292949) (end 66.04 82.55) (width 1) (layer F.Cu) (net 26))
- (segment (start 83.82 91.44) (end 85.520001 93.140001) (width 1) (layer F.Cu) (net 26))
- (segment (start 85.520001 93.140001) (end 89.601369 93.140001) (width 1) (layer F.Cu) (net 26))
- (segment (start 89.601369 93.140001) (end 90.17 92.57137) (width 1) (layer F.Cu) (net 26))
- (segment (start 90.17 92.57137) (end 90.17 91.44) (width 1) (layer F.Cu) (net 26))
- (segment (start 83.82 91.44) (end 83.82 96.56) (width 1) (layer F.Cu) (net 26))
- (segment (start 83.82 96.56) (end 81.32 99.06) (width 1) (layer F.Cu) (net 26))
- (segment (start 96.48 91.44) (end 96.48 90.30863) (width 1) (layer F.Cu) (net 26))
- (segment (start 90.17 99.06) (end 90.17 100.19137) (width 1) (layer F.Cu) (net 26))
- (segment (start 90.17 100.19137) (end 89.601369 100.760001) (width 1) (layer F.Cu) (net 26))
- (segment (start 89.601369 100.760001) (end 83.020001 100.760001) (width 1) (layer F.Cu) (net 26))
- (segment (start 83.020001 100.760001) (end 81.32 99.06) (width 1) (layer F.Cu) (net 26))
- (segment (start 90.17 99.06) (end 91.870001 100.760001) (width 1) (layer F.Cu) (net 26))
- (segment (start 91.870001 100.760001) (end 95.951369 100.760001) (width 1) (layer F.Cu) (net 26))
- (segment (start 95.951369 100.760001) (end 96.52 100.19137) (width 1) (layer F.Cu) (net 26))
- (segment (start 96.52 100.19137) (end 96.52 99.06) (width 1) (layer F.Cu) (net 26))
- (segment (start 96.52 99.06) (end 96.52 102.87) (width 1) (layer F.Cu) (net 26))
- (segment (start 96.52 102.87) (end 93.98 105.41) (width 1) (layer F.Cu) (net 26))
- (segment (start 96.48 91.44) (end 96.48 99.02) (width 1) (layer F.Cu) (net 26))
- (segment (start 96.48 99.02) (end 96.52 99.06) (width 1) (layer F.Cu) (net 26))
- (segment (start 77.47 99.06) (end 81.32 99.06) (width 1) (layer F.Cu) (net 26))
- (segment (start 69.85 99.06) (end 77.47 99.06) (width 1) (layer F.Cu) (net 26))
- (segment (start 95.25 83.82) (end 96.48 85.05) (width 1) (layer F.Cu) (net 26))
- (segment (start 96.48 85.05) (end 96.48 91.44) (width 1) (layer F.Cu) (net 26))
- (segment (start 110.49 53.34) (end 109.600001 53.34) (width 1) (layer F.Cu) (net 27))
- (segment (start 109.600001 53.34) (end 109.600001 54.132001) (width 1) (layer F.Cu) (net 27))
- (segment (start 109.600001 54.132001) (end 108.742001 54.990001) (width 1) (layer F.Cu) (net 27))
- (segment (start 108.742001 54.990001) (end 107.157999 54.990001) (width 1) (layer F.Cu) (net 27))
- (segment (start 107.157999 54.990001) (end 106.908008 54.74001) (width 1) (layer F.Cu) (net 27))
- (segment (start 106.908008 54.74001) (end 103.43948 54.74001) (width 1) (layer F.Cu) (net 27))
- (segment (start 100.291361 57.888129) (end 100.291361 101.977636) (width 1) (layer F.Cu) (net 27))
- (segment (start 103.43948 54.74001) (end 100.291361 57.888129) (width 1) (layer F.Cu) (net 27))
- (segment (start 88.422001 103.827262) (end 87.672002 103.077263) (width 1) (layer F.Cu) (net 27))
- (segment (start 100.291361 101.977636) (end 95.134001 107.134996) (width 1) (layer F.Cu) (net 27))
- (segment (start 95.134001 107.134996) (end 91.729735 107.134996) (width 1) (layer F.Cu) (net 27))
- (segment (start 91.729735 107.134996) (end 88.422001 103.827262) (width 1) (layer F.Cu) (net 27))
- (segment (start 86.36 105.41) (end 87.672002 104.097998) (width 1) (layer B.Cu) (net 27))
- (segment (start 87.672002 104.097998) (end 87.672002 103.077263) (width 1) (layer B.Cu) (net 27))
- (via (at 87.672002 103.077263) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 27))
- (segment (start 87.67 99.06) (end 87.67 102.87) (width 1) (layer B.Cu) (net 27))
- (segment (start 87.67 102.87) (end 87.67 104.1) (width 1) (layer B.Cu) (net 27))
- (segment (start 77.47 96.52) (end 77.47 93.98) (width 1) (layer F.Cu) (net 27))
- (segment (start 87.67 104.1) (end 86.36 105.41) (width 1) (layer B.Cu) (net 27))
- (segment (start 83.82 99.06) (end 87.67 99.06) (width 1) (layer F.Cu) (net 27))
- (segment (start 77.47 96.52) (end 78.212949 95.777051) (width 1) (layer B.Cu) (net 27))
- (segment (start 78.212949 95.777051) (end 81.668421 95.777051) (width 1) (layer B.Cu) (net 27))
- (segment (start 81.668421 95.777051) (end 83.82 97.92863) (width 1) (layer B.Cu) (net 27))
- (segment (start 83.82 97.92863) (end 83.82 99.06) (width 1) (layer B.Cu) (net 27))
- (segment (start 119.36474 50.8) (end 122.756114 54.191374) (width 1) (layer B.Cu) (net 28))
- (segment (start 130.700639 54.191374) (end 131.761299 54.191374) (width 1) (layer B.Cu) (net 28))
- (segment (start 122.756114 54.191374) (end 130.700639 54.191374) (width 1) (layer B.Cu) (net 28))
- (segment (start 116.84 50.8) (end 119.36474 50.8) (width 1) (layer B.Cu) (net 28))
- (segment (start 149.86 60.96) (end 151.560001 62.660001) (width 1) (layer F.Cu) (net 28))
- (segment (start 151.560001 62.660001) (end 158.141369 62.660001) (width 1) (layer F.Cu) (net 28))
- (segment (start 158.141369 62.660001) (end 158.71 62.09137) (width 1) (layer F.Cu) (net 28))
- (segment (start 158.71 62.09137) (end 158.71 60.96) (width 1) (layer F.Cu) (net 28))
- (segment (start 146.05 60.96) (end 149.86 60.96) (width 1) (layer F.Cu) (net 28))
- (segment (start 138.43 60.96) (end 146.05 60.96) (width 1) (layer F.Cu) (net 28))
- (segment (start 165.06 60.96) (end 165.06 66.08) (width 1) (layer B.Cu) (net 28))
- (segment (start 165.06 66.08) (end 163.83 67.31) (width 1) (layer B.Cu) (net 28))
- (segment (start 158.71 53.34) (end 158.71 54.47137) (width 1) (layer F.Cu) (net 28))
- (segment (start 158.71 54.47137) (end 158.141369 55.040001) (width 1) (layer F.Cu) (net 28))
- (segment (start 153.159999 54.139999) (end 152.36 53.34) (width 1) (layer F.Cu) (net 28))
- (segment (start 158.141369 55.040001) (end 154.060001 55.040001) (width 1) (layer F.Cu) (net 28))
- (segment (start 154.060001 55.040001) (end 153.159999 54.139999) (width 1) (layer F.Cu) (net 28))
- (segment (start 165.06 53.34) (end 165.06 49.49) (width 1) (layer F.Cu) (net 28))
- (segment (start 165.06 49.49) (end 161.29 45.72) (width 1) (layer F.Cu) (net 28))
- (segment (start 131.761299 55.252034) (end 131.761299 54.191374) (width 1) (layer F.Cu) (net 28))
- (segment (start 133.858 59.182) (end 131.761299 57.085299) (width 1) (layer F.Cu) (net 28))
- (segment (start 131.761299 57.085299) (end 131.761299 55.252034) (width 1) (layer F.Cu) (net 28))
- (segment (start 131.761299 53.130714) (end 131.761299 54.191374) (width 1) (layer F.Cu) (net 28))
- (segment (start 134.62 45.72) (end 131.761299 48.578701) (width 1) (layer F.Cu) (net 28))
- (segment (start 131.761299 48.578701) (end 131.761299 53.130714) (width 1) (layer F.Cu) (net 28))
- (via (at 131.761299 54.191374) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 28))
- (segment (start 138.43 60.96) (end 135.636 60.96) (width 1) (layer B.Cu) (net 28))
- (segment (start 135.636 60.96) (end 133.858 59.182) (width 1) (layer B.Cu) (net 28))
- (segment (start 149.86 58.674) (end 152.36 56.174) (width 1) (layer F.Cu) (net 28))
- (segment (start 152.36 56.174) (end 152.36 53.34) (width 1) (layer F.Cu) (net 28))
- (segment (start 149.86 60.96) (end 149.86 58.674) (width 1) (layer F.Cu) (net 28))
- (segment (start 165.06 60.96) (end 165.06 62.09137) (width 1) (layer F.Cu) (net 28))
- (segment (start 165.06 62.09137) (end 164.491369 62.660001) (width 1) (layer F.Cu) (net 28))
- (segment (start 160.410001 62.660001) (end 159.509999 61.759999) (width 1) (layer F.Cu) (net 28))
- (segment (start 164.491369 62.660001) (end 160.410001 62.660001) (width 1) (layer F.Cu) (net 28))
- (segment (start 159.509999 61.759999) (end 158.71 60.96) (width 1) (layer F.Cu) (net 28))
- (segment (start 165.06 53.34) (end 165.06 60.96) (width 1) (layer F.Cu) (net 28))
- (segment (start 114.3 49.73934) (end 114.3 50.8) (width 1) (layer B.Cu) (net 29))
- (segment (start 114.889341 49.149999) (end 114.3 49.73934) (width 1) (layer B.Cu) (net 29))
- (segment (start 119.694653 49.149999) (end 114.889341 49.149999) (width 1) (layer B.Cu) (net 29))
- (segment (start 122.987605 52.442951) (end 119.694653 49.149999) (width 1) (layer B.Cu) (net 29))
- (segment (start 135.408617 52.442951) (end 122.987605 52.442951) (width 1) (layer B.Cu) (net 29))
- (segment (start 136.154519 51.697049) (end 135.408617 52.442951) (width 1) (layer B.Cu) (net 29))
- (segment (start 141.867049 51.697049) (end 136.154519 51.697049) (width 1) (layer B.Cu) (net 29))
- (segment (start 146.05 55.88) (end 141.867049 51.697049) (width 1) (layer B.Cu) (net 29))
- (segment (start 156.21 60.96) (end 156.21 67.31) (width 1) (layer B.Cu) (net 29))
- (segment (start 152.36 60.96) (end 156.21 60.96) (width 1) (layer B.Cu) (net 29))
- (segment (start 146.05 58.42) (end 150.95137 58.42) (width 1) (layer B.Cu) (net 29))
- (segment (start 150.95137 58.42) (end 152.36 59.82863) (width 1) (layer B.Cu) (net 29))
- (segment (start 152.36 59.82863) (end 152.36 60.96) (width 1) (layer B.Cu) (net 29))
- (segment (start 146.05 55.88) (end 146.05 58.42) (width 1) (layer B.Cu) (net 29))
- (segment (start 134.62 82.55) (end 113.03 60.96) (width 1) (layer B.Cu) (net 30))
- (segment (start 113.03 60.96) (end 113.03 55.415738) (width 1) (layer B.Cu) (net 30))
- (segment (start 113.03 55.415738) (end 113.03 53.34) (width 1) (layer B.Cu) (net 30))
- (segment (start 132.919999 84.250001) (end 133.877051 83.292949) (width 1) (layer F.Cu) (net 30))
- (segment (start 133.877051 83.292949) (end 134.62 82.55) (width 1) (layer F.Cu) (net 30))
- (segment (start 134.62 96.52) (end 132.919999 94.819999) (width 1) (layer F.Cu) (net 30))
- (segment (start 132.919999 94.819999) (end 132.919999 84.250001) (width 1) (layer F.Cu) (net 30))
- (segment (start 161.29 90.17) (end 161.720001 89.739999) (width 1) (layer F.Cu) (net 30))
- (segment (start 160.02 90.30863) (end 160.02 91.44) (width 1) (layer F.Cu) (net 30))
- (segment (start 159.451369 89.739999) (end 160.02 90.30863) (width 1) (layer F.Cu) (net 30))
- (segment (start 161.29 90.17) (end 160.02 91.44) (width 1) (layer F.Cu) (net 30))
- (segment (start 166.33 90.30863) (end 166.33 91.44) (width 1) (layer F.Cu) (net 30))
- (segment (start 161.720001 89.739999) (end 165.761369 89.739999) (width 1) (layer F.Cu) (net 30))
- (segment (start 166.33 91.44) (end 166.33 99.06) (width 1) (layer F.Cu) (net 30))
- (segment (start 165.761369 89.739999) (end 166.33 90.30863) (width 1) (layer F.Cu) (net 30))
- (segment (start 153.67 91.44) (end 155.370001 89.739999) (width 1) (layer F.Cu) (net 30))
- (segment (start 155.370001 89.739999) (end 159.451369 89.739999) (width 1) (layer F.Cu) (net 30))
- (segment (start 161.29 83.82) (end 161.29 90.17) (width 1) (layer F.Cu) (net 30))
- (segment (start 160.02 99.06) (end 160.02 100.19137) (width 1) (layer F.Cu) (net 30))
- (segment (start 160.02 100.19137) (end 159.451369 100.760001) (width 1) (layer F.Cu) (net 30))
- (segment (start 159.451369 100.760001) (end 152.870001 100.760001) (width 1) (layer F.Cu) (net 30))
- (segment (start 152.870001 100.760001) (end 151.17 99.06) (width 1) (layer F.Cu) (net 30))
- (segment (start 166.33 100.19137) (end 165.761369 100.760001) (width 1) (layer F.Cu) (net 30))
- (segment (start 166.33 99.06) (end 166.33 100.624) (width 1) (layer F.Cu) (net 30))
- (segment (start 166.33 100.624) (end 161.29 105.664) (width 1) (layer F.Cu) (net 30))
- (segment (start 166.33 99.06) (end 166.33 100.19137) (width 1) (layer F.Cu) (net 30))
- (segment (start 165.761369 100.760001) (end 161.720001 100.760001) (width 1) (layer F.Cu) (net 30))
- (segment (start 161.720001 100.760001) (end 160.819999 99.859999) (width 1) (layer F.Cu) (net 30))
- (segment (start 160.819999 99.859999) (end 160.02 99.06) (width 1) (layer F.Cu) (net 30))
- (segment (start 146.05 99.06) (end 151.17 99.06) (width 1) (layer B.Cu) (net 30))
- (segment (start 134.62 96.52) (end 135.89 96.52) (width 1) (layer B.Cu) (net 30))
- (segment (start 138.43 99.06) (end 146.05 99.06) (width 1) (layer B.Cu) (net 30))
- (segment (start 135.89 96.52) (end 138.43 99.06) (width 1) (layer B.Cu) (net 30))
- (segment (start 115.57 53.34) (end 115.586729 53.356729) (width 1) (layer B.Cu) (net 31))
- (segment (start 136.262951 79.221383) (end 136.262951 85.24364) (width 1) (layer B.Cu) (net 31))
- (segment (start 115.586729 53.356729) (end 115.586729 59.572699) (width 1) (layer B.Cu) (net 31))
- (segment (start 115.586729 59.572699) (end 134.381079 78.367049) (width 1) (layer B.Cu) (net 31))
- (segment (start 134.381079 78.367049) (end 135.408617 78.367049) (width 1) (layer B.Cu) (net 31))
- (segment (start 136.262951 85.24364) (end 144.999311 93.98) (width 1) (layer B.Cu) (net 31))
- (segment (start 135.408617 78.367049) (end 136.262951 79.221383) (width 1) (layer B.Cu) (net 31))
- (segment (start 144.999311 93.98) (end 146.05 93.98) (width 1) (layer B.Cu) (net 31))
- (segment (start 153.67 97.92863) (end 152.26137 96.52) (width 1) (layer F.Cu) (net 31))
- (segment (start 153.67 99.06) (end 153.67 97.92863) (width 1) (layer F.Cu) (net 31))
- (segment (start 157.52 99.06) (end 153.67 99.06) (width 1) (layer F.Cu) (net 31))
- (segment (start 152.26137 96.52) (end 147.100689 96.52) (width 1) (layer F.Cu) (net 31))
- (segment (start 146.05 96.52) (end 146.05 93.98) (width 1) (layer F.Cu) (net 31))
- (segment (start 147.100689 96.52) (end 146.05 96.52) (width 1) (layer F.Cu) (net 31))
- (segment (start 153.67 99.06) (end 153.67 105.664) (width 1) (layer B.Cu) (net 31))
- (segment (start 107.95 109.22) (end 98.567564 109.22) (width 1) (layer F.Cu) (net 32))
- (segment (start 98.567564 109.22) (end 91.52 116.267564) (width 1) (layer F.Cu) (net 32))
- (segment (start 91.52 116.267564) (end 91.52 118.142564) (width 1) (layer F.Cu) (net 32))
- (segment (start 120.065 109.22) (end 116.63066 109.22) (width 1) (layer B.Cu) (net 33))
- (segment (start 127.08 118.11) (end 127.08 116.235) (width 1) (layer B.Cu) (net 33))
- (segment (start 127.08 116.235) (end 120.065 109.22) (width 1) (layer B.Cu) (net 33))
- (segment (start 116.63066 109.22) (end 115.57 109.22) (width 1) (layer B.Cu) (net 33))
- (segment (start 96.52 118.142564) (end 97.757436 118.142564) (width 1) (layer B.Cu) (net 33))
- (segment (start 97.757436 118.142564) (end 103.055001 112.844999) (width 1) (layer B.Cu) (net 33))
- (segment (start 103.055001 112.844999) (end 111.945001 112.844999) (width 1) (layer B.Cu) (net 33))
- (segment (start 111.945001 112.844999) (end 114.820001 109.969999) (width 1) (layer B.Cu) (net 33))
- (segment (start 114.820001 109.969999) (end 115.57 109.22) (width 1) (layer B.Cu) (net 33))
- (segment (start 129.58 112.518461) (end 129.58 118.11) (width 1) (layer F.Cu) (net 34))
- (segment (start 120.929475 103.867936) (end 129.58 112.518461) (width 1) (layer F.Cu) (net 34))
- (segment (start 117.112064 103.867936) (end 119.868815 103.867936) (width 1) (layer B.Cu) (net 34))
- (segment (start 114.3 106.68) (end 117.112064 103.867936) (width 1) (layer B.Cu) (net 34))
- (segment (start 119.868815 103.867936) (end 120.929475 103.867936) (width 1) (layer B.Cu) (net 34))
- (via (at 120.929475 103.867936) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 34))
- (segment (start 132.08 118.11) (end 139.7 118.11) (width 1) (layer B.Cu) (net 35))
- (segment (start 139.7 118.11) (end 143.51 121.92) (width 1) (layer B.Cu) (net 35))
- )
|