123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683 |
- (kicad_pcb (version 4) (host pcbnew 4.0.7)
- (general
- (links 139)
- (no_connects 0)
- (area 49.454999 34.214999 175.335001 113.105001)
- (thickness 1.6)
- (drawings 29)
- (tracks 610)
- (zones 0)
- (modules 68)
- (nets 35)
- )
- (page A4)
- (layers
- (0 F.Cu signal)
- (31 B.Cu signal)
- (33 F.Adhes user hide)
- (35 F.Paste user hide)
- (37 F.SilkS 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 0.2)
- (segment_width 0.2)
- (edge_width 0.15)
- (via_size 1.5)
- (via_drill 1)
- (via_min_size 0.4)
- (via_min_drill 0.3)
- (uvia_size 1)
- (uvia_drill 0.5)
- (uvias_allowed no)
- (uvia_min_size 0.2)
- (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 0 0)
- (visible_elements 7FFFEFFF)
- (pcbplotparams
- (layerselection 0x00030_80000001)
- (usegerberextensions false)
- (excludeedgelayer true)
- (linewidth 0.100000)
- (plotframeref false)
- (viasonmask false)
- (mode 1)
- (useauxorigin false)
- (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 1)
- (scaleselection 1)
- (outputdirectory ""))
- )
- (net 0 "")
- (net 1 "Net-(C1-Pad1)")
- (net 2 Earth)
- (net 3 "Net-(C3-Pad2)")
- (net 4 "Net-(C7-Pad2)")
- (net 5 "Net-(C10-Pad1)")
- (net 6 "Net-(C11-Pad2)")
- (net 7 "Net-(C13-Pad1)")
- (net 8 "Net-(C15-Pad2)")
- (net 9 "Net-(IC1-Pad2)")
- (net 10 "Net-(IC2-Pad2)")
- (net 11 "Net-(IC3-Pad2)")
- (net 12 "Net-(IC4-Pad2)")
- (net 13 DC_IN)
- (net 14 DC_GND)
- (net 15 ARD_TEMP)
- (net 16 ARD_GND)
- (net 17 "Net-(R2-Pad2)")
- (net 18 "Net-(R4-Pad2)")
- (net 19 "Net-(R6-Pad2)")
- (net 20 "Net-(R8-Pad2)")
- (net 21 "Net-(C20-Pad1)")
- (net 22 "Net-(C17-Pad1)")
- (net 23 "Net-(C19-Pad1)")
- (net 24 "Net-(C21-Pad1)")
- (net 25 "Net-(C23-Pad1)")
- (net 26 "Net-(R3-Pad1)")
- (net 27 "Net-(R5-Pad1)")
- (net 28 "Net-(R7-Pad1)")
- (net 29 "Net-(R9-Pad1)")
- (net 30 ARD_PWM_A)
- (net 31 ARD_PWM_B)
- (net 32 ARD_PWM_C)
- (net 33 ARD_PWM_D)
- (net 34 ARD_5V)
- (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_5V)
- (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 DC_GND)
- (add_net DC_IN)
- (add_net Earth)
- (add_net "Net-(C1-Pad1)")
- (add_net "Net-(C10-Pad1)")
- (add_net "Net-(C11-Pad2)")
- (add_net "Net-(C13-Pad1)")
- (add_net "Net-(C15-Pad2)")
- (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-(C3-Pad2)")
- (add_net "Net-(C7-Pad2)")
- (add_net "Net-(IC1-Pad2)")
- (add_net "Net-(IC2-Pad2)")
- (add_net "Net-(IC3-Pad2)")
- (add_net "Net-(IC4-Pad2)")
- (add_net "Net-(R2-Pad2)")
- (add_net "Net-(R3-Pad1)")
- (add_net "Net-(R4-Pad2)")
- (add_net "Net-(R5-Pad1)")
- (add_net "Net-(R6-Pad2)")
- (add_net "Net-(R7-Pad1)")
- (add_net "Net-(R8-Pad2)")
- (add_net "Net-(R9-Pad1)")
- )
- (module Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF6872)
- (at 127.635 56.515)
- (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 19 "Net-(R6-Pad2)"))
- (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 11 "Net-(IC3-Pad2)"))
- (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 16 ARD_GND))
- (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 24 "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 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 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 5 "Net-(C10-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 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 14 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 13 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 7 "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 29 "Net-(R9-Pad1)"))
- (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 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 14 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 13 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 21 "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 27 "Net-(R5-Pad1)"))
- (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 14 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 13 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 5 "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 "Net-(R7-Pad1)"))
- (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 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 25 "Net-(C23-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 12 "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 2 Earth))
- (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 Earth))
- (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 8 "Net-(C15-Pad2)"))
- (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 8 "Net-(C15-Pad2)"))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 25 "Net-(C23-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 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 23 "Net-(C19-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 10 "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 2 Earth))
- (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 Earth))
- (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 4 "Net-(C7-Pad2)"))
- (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 4 "Net-(C7-Pad2)"))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 23 "Net-(C19-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 24 "Net-(C21-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 11 "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 2 Earth))
- (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 Earth))
- (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 6 "Net-(C11-Pad2)"))
- (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 6 "Net-(C11-Pad2)"))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 24 "Net-(C21-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 22 "Net-(C17-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 9 "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 2 Earth))
- (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 Earth))
- (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 3 "Net-(C3-Pad2)"))
- (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 3 "Net-(C3-Pad2)"))
- (pad 8 thru_hole circle (at 7.62 0 90) (size 1.4859 1.4859) (drill 0.9906) (layers *.Cu *.Mask F.SilkS)
- (net 22 "Net-(C17-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 14 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 13 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 26 "Net-(R3-Pad1)"))
- (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 2 Earth))
- (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 2 Earth))
- (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 2 Earth))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 3 "Net-(C3-Pad2)"))
- (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 3 "Net-(C3-Pad2)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 21 "Net-(C20-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 21 "Net-(C20-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 2 Earth))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 4 "Net-(C7-Pad2)"))
- (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 4 "Net-(C7-Pad2)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 5 "Net-(C10-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 2 Earth))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 6 "Net-(C11-Pad2)"))
- (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 6 "Net-(C11-Pad2)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 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 7 "Net-(C13-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 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 7 "Net-(C13-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 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 2 Earth))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 8 "Net-(C15-Pad2)"))
- (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 8 "Net-(C15-Pad2)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 PartsLibraries:RJ45 (layer F.Cu) (tedit 59511D7C) (tstamp 59A6EC93)
- (at 116.84 50.8 180)
- (tags RJ45)
- (path /59526541)
- (fp_text reference J1 (at 4.7 11.18 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value RJ45 (at 4.59 6.25 180) (layer F.Fab)
- (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))
- (pad 2 thru_hole circle (at 1.27 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 3 thru_hole circle (at 2.54 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 4 thru_hole circle (at 3.81 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 5 thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (pad 6 thru_hole circle (at 6.35 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask))
- (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)
- (net 15 ARD_TEMP))
- (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 Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ECBC)
- (at 111.76 66.04 180)
- (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
- (tags "connector jst xh tht top vertical 2.50mm")
- (path /599EAAF2)
- (fp_text reference J2 (at 1.25 -3.5 180) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value "Temperature Probe" (at 1.25 4.5 180) (layer F.Fab)
- (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 4.95 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 -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 5.45 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 -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 5.05 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -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 1.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -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 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -2.45) (end 3.25 -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 1.25 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 2.75) (end 1.25 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 1.25 2.5 180) (layer F.Fab)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (pad 1 thru_hole rect (at 0 0 180) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
- (net 34 ARD_5V))
- (pad 2 thru_hole circle (at 2.5 0 180) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
- (net 15 ARD_TEMP))
- (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ECE5)
- (at 77.51 44.45)
- (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
- (tags "connector jst xh tht top vertical 2.50mm")
- (path /59498AA5/595237FD)
- (fp_text reference J3 (at 1.25 -3.5) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value "Drive Signal" (at 1.25 4.5) (layer F.Fab)
- (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 4.95 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 -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 5.45 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 -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 5.05 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -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 1.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -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 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -2.45) (end 3.25 -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 1.25 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 2.75) (end 1.25 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 1.25 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.05) (layers *.Cu *.Mask)
- (net 3 "Net-(C3-Pad2)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
- (net 2 Earth))
- (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ED0E)
- (at 80.05 82.55)
- (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
- (tags "connector jst xh tht top vertical 2.50mm")
- (path /59A7109E/595237FD)
- (fp_text reference J4 (at 1.25 -3.5) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value "Drive Signal" (at 1.25 4.5) (layer F.Fab)
- (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 4.95 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 -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 5.45 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 -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 5.05 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -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 1.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -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 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -2.45) (end 3.25 -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 1.25 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 2.75) (end 1.25 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 1.25 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.05) (layers *.Cu *.Mask)
- (net 4 "Net-(C7-Pad2)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
- (net 2 Earth))
- (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ED37)
- (at 146.09 44.45)
- (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
- (tags "connector jst xh tht top vertical 2.50mm")
- (path /59A71299/595237FD)
- (fp_text reference J5 (at 1.25 -3.5) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value "Drive Signal" (at 1.25 4.5) (layer F.Fab)
- (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 4.95 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 -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 5.45 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 -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 5.05 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -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 1.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -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 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -2.45) (end 3.25 -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 1.25 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 2.75) (end 1.25 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 1.25 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.05) (layers *.Cu *.Mask)
- (net 6 "Net-(C11-Pad2)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
- (net 2 Earth))
- (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl
- (at (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
- (module Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight (layer F.Cu) (tedit 58EAE7F0) (tstamp 59A6ED60)
- (at 146.09 82.55)
- (descr "JST XH series connector, B02B-XH-A, top entry type, through hole")
- (tags "connector jst xh tht top vertical 2.50mm")
- (path /59A712A3/595237FD)
- (fp_text reference J6 (at 1.25 -3.5) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value "Drive Signal" (at 1.25 4.5) (layer F.Fab)
- (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 4.95 3.4) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer F.Fab) (width 0.1))
- (fp_line (start 4.95 -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 5.45 3.9) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer F.CrtYd) (width 0.05))
- (fp_line (start 5.45 -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 5.05 3.5) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 3.5) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -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 1.75 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 1.75 -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 3.25 -2.45) (end 3.25 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -2.45) (end 3.25 -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 1.25 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer F.SilkS) (width 0.12))
- (fp_line (start 4.3 2.75) (end 1.25 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 1.25 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.05) (layers *.Cu *.Mask)
- (net 8 "Net-(C15-Pad2)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.75 1.75) (drill 1.05) (layers *.Cu *.Mask)
- (net 2 Earth))
- (model Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.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 59A6ED76)
- (at 107.95 58.42)
- (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) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 100 (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 15 ARD_TEMP))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 14 DC_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 71.12 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/59A6DA9F)
- (fp_text reference R2 (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 30 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 17 "Net-(R2-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 59A6EDB4)
- (at 62.23 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/59A6DA9F)
- (fp_text reference R4 (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 31 ARD_PWM_B))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 18 "Net-(R4-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 59A6EE04)
- (at 128.27 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 /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 33 ARD_PWM_D))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 20 "Net-(R8-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 59511D7C) (tstamp 59A7E8CF)
- (at 107.95 77.47)
- (tags RJ45)
- (path /59A7EBD8)
- (fp_text reference J7 (at 4.7 11.18) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value RJ45 (at 4.59 6.25) (layer F.Fab)
- (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 13 DC_IN))
- (pad 2 thru_hole circle (at 1.27 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 14 DC_GND))
- (pad 3 thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 30 ARD_PWM_A))
- (pad 4 thru_hole circle (at 3.81 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 31 ARD_PWM_B))
- (pad 5 thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 32 ARD_PWM_C))
- (pad 6 thru_hole circle (at 6.35 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 33 ARD_PWM_D))
- (pad 7 thru_hole circle (at 7.62 0) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 34 ARD_5V))
- (pad 8 thru_hole circle (at 8.89 -2.54) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
- (net 16 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 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 22 "Net-(C17-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 2 Earth))
- (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 23 "Net-(C19-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 21 "Net-(C20-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 24 "Net-(C21-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 5 "Net-(C10-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 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 25 "Net-(C23-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 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 7 "Net-(C13-Pad1)"))
- (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 74.93 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/59EF0FC7)
- (fp_text reference R10 (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 22 "Net-(C17-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 9 "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 3 "Net-(C3-Pad2)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 73.66 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/59EF0FC7)
- (fp_text reference R12 (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 23 "Net-(C19-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 10 "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 4 "Net-(C7-Pad2)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 147.32 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 24 "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 11 "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 151.13 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 6 "Net-(C11-Pad2)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 59EF680E)
- (at 139.7 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 /59A712A3/59EF0FC7)
- (fp_text reference R16 (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 "Net-(C23-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 12 "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 Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59EF6824)
- (at 151.13 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 /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 8 "Net-(C15-Pad2)"))
- (pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 59.055 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 17 "Net-(R2-Pad2)"))
- (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 9 "Net-(IC1-Pad2)"))
- (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 16 ARD_GND))
- (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 22 "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 59.055 93.345)
- (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 18 "Net-(R4-Pad2)"))
- (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 10 "Net-(IC2-Pad2)"))
- (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 16 ARD_GND))
- (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 23 "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 Housings_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 59EF688C)
- (at 127.635 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 20 "Net-(R8-Pad2)"))
- (pad 4 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 12 "Net-(IC4-Pad2)"))
- (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 16 ARD_GND))
- (pad 5 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 25 "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 59F0538A)
- (at 71.12 41.91 270)
- (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 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 3K (at 3.81 2.31 270) (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 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 26 "Net-(R3-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 22 "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 72.39 80.01 270)
- (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 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 3K (at 3.81 2.31 270) (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 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 27 "Net-(R5-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 23 "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 139.7 43.18 270)
- (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 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 3K (at 3.81 2.31 270) (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 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 28 "Net-(R7-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 24 "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 59F053CC)
- (at 139.7 80.01 270)
- (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 270) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.15)))
- )
- (fp_text value 3K (at 3.81 2.31 270) (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 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 29 "Net-(R9-Pad1)"))
- (pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
- (net 25 "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 Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59F05D37)
- (at 135.89 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/59A6DA9F)
- (fp_text reference R6 (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 32 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 19 "Net-(R6-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 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 22 "Net-(C17-Pad1)"))
- (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 23 "Net-(C19-Pad1)"))
- (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 24 "Net-(C21-Pad1)"))
- (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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 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 25 "Net-(C23-Pad1)"))
- (pad 2 thru_hole oval (at 5.08 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
- (net 2 Earth))
- (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))
- )
- )
- (gr_line (start 172.72 74.93) (end 172.72 110.49) (layer F.SilkS) (width 0.2) (tstamp 59F22E2A))
- (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))
- (gr_line (start 121.92 74.93) (end 172.72 74.93) (layer F.SilkS) (width 0.2) (tstamp 59F22E27))
- (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 113.03) (end 175.26 113.03) (layer Edge.Cuts) (width 0.15))
- (gr_line (start 49.53 34.29) (end 49.53 113.03) (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 78.74 (width 0.3) (layer Dwgs.User)
- (gr_text "78.740 mm" (at 182.96 73.66 90) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 177.8 34.29) (xy 184.31 34.29)))
- (feature2 (pts (xy 177.8 113.03) (xy 184.31 113.03)))
- (crossbar (pts (xy 181.61 113.03) (xy 181.61 34.29)))
- (arrow1a (pts (xy 181.61 34.29) (xy 182.196421 35.416504)))
- (arrow1b (pts (xy 181.61 34.29) (xy 181.023579 35.416504)))
- (arrow2a (pts (xy 181.61 113.03) (xy 182.196421 111.903496)))
- (arrow2b (pts (xy 181.61 113.03) (xy 181.023579 111.903496)))
- )
- (dimension 125.73 (width 0.3) (layer Dwgs.User)
- (gr_text "125.730 mm" (at 112.395 27.909839) (layer Dwgs.User)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (feature1 (pts (xy 175.26 31.75) (xy 175.26 26.559839)))
- (feature2 (pts (xy 49.53 31.75) (xy 49.53 26.559839)))
- (crossbar (pts (xy 49.53 29.259839) (xy 175.26 29.259839)))
- (arrow1a (pts (xy 175.26 29.259839) (xy 174.133496 29.84626)))
- (arrow1b (pts (xy 175.26 29.259839) (xy 174.133496 28.673418)))
- (arrow2a (pts (xy 49.53 29.259839) (xy 50.656504 29.84626)))
- (arrow2b (pts (xy 49.53 29.259839) (xy 50.656504 28.673418)))
- )
- (gr_text "© Enertechnos Ltd. 2017" (at 171.45 60.96 90) (layer F.SilkS)
- (effects (font (size 1 1) (thickness 0.2)))
- )
- (gr_text "Module Rev1" (at 111.680347 109.815299) (layer B.Cu)
- (effects (font (size 1 1) (thickness 0.25)) (justify mirror))
- )
- (gr_text "Module Rev1" (at 111.680347 108.189699) (layer F.Cu)
- (effects (font (size 1 1) (thickness 0.25)))
- )
- (gr_line (start 175.26 34.29) (end 175.26 113.03) (layer Edge.Cuts) (width 0.15))
- (gr_text "Switch 4" (at 140.97 77.47) (layer F.SilkS)
- (effects (font (size 1.5 1.5) (thickness 0.3)))
- )
- (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 83.020001 55.040001) (width 1) (layer F.Cu) (net 1))
- (segment (start 83.020001 55.040001) (end 85.929999 55.040001) (width 1) (layer F.Cu) (net 1))
- (segment (start 85.929999 55.040001) (end 87.63 53.34) (width 1) (layer F.Cu) (net 1))
- (segment (start 87.63 53.34) (end 87.63 54.61) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 87.63 54.61) (end 88.9 55.88) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 88.9 55.88) (end 92.71 55.88) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 92.71 55.88) (end 93.98 54.61) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 93.98 54.61) (end 93.98 53.34) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 93.98 53.34) (end 94.02 53.34) (width 1) (layer F.Cu) (net 1) (tstamp 59F3163F) (status 80000))
- (segment (start 81.32 53.34) (end 81.28 53.34) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 67.31 49.53) (end 66.04 49.53) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 66.04 49.53) (end 64.77 48.26) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 64.77 48.26) (end 64.77 40.64) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 64.77 40.64) (end 66.04 39.37) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 66.04 39.37) (end 72.39 39.37) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 72.39 39.37) (end 74.93 41.91) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 74.93 41.91) (end 74.93 46.99) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 74.93 46.99) (end 81.28 53.34) (width 1) (layer F.Cu) (net 1) (status 80000))
- (segment (start 81.28 53.34) (end 81.32 53.34) (width 1) (layer F.Cu) (net 1) (tstamp 59F2FD0D) (status 80000))
- (segment (start 96.52 60.96) (end 101.6 55.88) (width 1) (layer B.Cu) (net 2))
- (segment (start 101.6 55.88) (end 116.84 55.88) (width 1) (layer B.Cu) (net 2))
- (segment (start 116.84 55.88) (end 118.11 54.61) (width 1) (layer B.Cu) (net 2))
- (segment (start 118.11 54.61) (end 130.81 54.61) (width 1) (layer B.Cu) (net 2))
- (segment (start 130.81 54.61) (end 134.455001 58.255001) (width 1) (layer B.Cu) (net 2))
- (segment (start 134.455001 58.255001) (end 135.255 59.055) (width 1) (layer B.Cu) (net 2))
- (segment (start 161.29 83.82) (end 161.29 87.63) (width 1) (layer F.Cu) (net 2))
- (segment (start 161.29 87.63) (end 160.02 88.9) (width 1) (layer F.Cu) (net 2))
- (segment (start 161.29 45.72) (end 161.29 47.134213) (width 1) (layer F.Cu) (net 2))
- (segment (start 161.29 47.134213) (end 165.06 50.904213) (width 1) (layer F.Cu) (net 2))
- (segment (start 165.06 50.904213) (end 165.06 52.20863) (width 1) (layer F.Cu) (net 2))
- (segment (start 165.06 52.20863) (end 165.06 53.34) (width 1) (layer F.Cu) (net 2))
- (segment (start 83.82 53.34) (end 83.82 48.26) (width 1) (layer F.Cu) (net 2))
- (segment (start 83.82 48.26) (end 80.01 44.45) (width 1) (layer F.Cu) (net 2))
- (segment (start 91.44 45.72) (end 91.44 50.8) (width 1) (layer F.Cu) (net 2))
- (segment (start 158.75 67.31) (end 160.02 68.58) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 160.02 68.58) (end 160.02 69.85) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 160.02 69.85) (end 161.29 71.12) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 161.29 71.12) (end 161.29 83.82) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 152.36 53.34) (end 152.4 53.34) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 152.4 53.34) (end 152.4 50.8) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 152.4 50.8) (end 148.59 46.99) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 148.59 46.99) (end 148.59 44.45) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 161.29 83.82) (end 158.75 81.28) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 158.75 81.28) (end 153.67 81.28) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 153.67 81.28) (end 152.4 82.55) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 152.4 82.55) (end 148.59 82.55) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 95.25 83.82) (end 95.25 67.31) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 138.43 99.06) (end 138.43 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 138.43 101.6) (end 133.35 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 133.35 101.6) (end 133.35 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 133.35 96.52) (end 135.255 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 69.85 99.06) (end 69.85 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 69.85 101.6) (end 67.31 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 67.31 101.6) (end 66.04 100.33) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 66.04 100.33) (end 64.77 100.33) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 64.77 100.33) (end 64.77 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 64.77 96.52) (end 67.31 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 67.31 96.52) (end 66.675 95.885) (width 1) (layer B.Cu) (net 2) (tstamp 59F31652) (status 80000))
- (segment (start 96.52 99.06) (end 96.52 101.6) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 96.52 101.6) (end 93.98 104.14) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 93.98 104.14) (end 93.98 105.41) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 82.55 82.55) (end 83.82 83.82) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 83.82 83.82) (end 83.82 91.44) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 96.48 91.44) (end 96.52 91.44) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 96.52 91.44) (end 96.52 85.09) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 96.52 85.09) (end 95.25 83.82) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 160.02 99.06) (end 160.02 101.6) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 160.02 101.6) (end 158.75 102.87) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 158.75 102.87) (end 158.75 105.41) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 95.25 67.31) (end 96.52 66.04) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 96.52 66.04) (end 96.52 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 160.02 99.06) (end 160.02 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 160.02 101.6) (end 152.4 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 152.4 101.6) (end 151.13 100.33) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 151.13 100.33) (end 151.13 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 151.13 99.06) (end 151.17 99.06) (width 1) (layer B.Cu) (net 2) (tstamp 59F31648) (status 80000))
- (segment (start 90.17 60.96) (end 90.17 63.5) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 90.17 63.5) (end 82.55 63.5) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 82.55 63.5) (end 81.28 62.23) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 81.28 62.23) (end 81.28 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 81.28 60.96) (end 81.32 60.96) (width 1) (layer B.Cu) (net 2) (tstamp 59F31647) (status 80000))
- (segment (start 149.86 60.96) (end 149.86 62.23) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 149.86 62.23) (end 151.13 63.5) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 151.13 63.5) (end 158.75 63.5) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 158.75 63.5) (end 158.75 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 158.75 60.96) (end 158.71 60.96) (width 1) (layer B.Cu) (net 2) (tstamp 59F31646) (status 80000))
- (segment (start 90.17 99.06) (end 90.17 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 90.17 101.6) (end 82.55 101.6) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 82.55 101.6) (end 81.28 100.33) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 81.28 100.33) (end 81.28 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 81.28 99.06) (end 81.32 99.06) (width 1) (layer B.Cu) (net 2) (tstamp 59F31645) (status 80000))
- (segment (start 77.47 99.06) (end 69.85 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 165.06 60.96) (end 165.1 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 165.1 60.96) (end 165.1 53.34) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 165.1 53.34) (end 165.06 53.34) (width 1) (layer F.Cu) (net 2) (tstamp 59F31644) (status 80000))
- (segment (start 135.255 59.055) (end 135.89 59.69) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 135.89 59.69) (end 137.16 59.69) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 137.16 59.69) (end 137.16 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 137.16 60.96) (end 138.43 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 138.43 60.96) (end 146.05 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 146.05 99.06) (end 138.43 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 90.17 91.44) (end 90.17 99.06) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 160.02 91.44) (end 160.02 99.06) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 96.52 60.96) (end 96.52 53.34) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 160.02 91.44) (end 161.29 92.71) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 161.29 92.71) (end 161.29 93.98) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 161.29 93.98) (end 166.37 93.98) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 166.37 93.98) (end 166.37 91.44) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 166.37 91.44) (end 166.33 91.44) (width 1) (layer B.Cu) (net 2) (tstamp 59F31643) (status 80000))
- (segment (start 160.02 99.06) (end 161.29 97.79) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 161.29 97.79) (end 161.29 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 161.29 96.52) (end 166.37 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 166.37 96.52) (end 166.37 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 166.37 99.06) (end 166.33 99.06) (width 1) (layer B.Cu) (net 2) (tstamp 59F31642) (status 80000))
- (segment (start 158.71 60.96) (end 158.75 60.96) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 158.75 60.96) (end 158.75 67.31) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 90.17 99.06) (end 91.44 97.79) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 91.44 97.79) (end 91.44 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 91.44 96.52) (end 96.52 96.52) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 96.52 96.52) (end 96.52 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 158.71 60.96) (end 158.75 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 158.75 60.96) (end 160.02 59.69) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 160.02 59.69) (end 160.02 58.42) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 160.02 58.42) (end 165.1 58.42) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 165.1 58.42) (end 165.1 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 165.1 60.96) (end 165.06 60.96) (width 1) (layer B.Cu) (net 2) (tstamp 59F31641) (status 80000))
- (segment (start 90.17 91.44) (end 91.44 90.17) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 91.44 90.17) (end 91.44 88.9) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 91.44 88.9) (end 96.52 88.9) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 96.52 88.9) (end 96.52 91.44) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 96.52 91.44) (end 96.48 91.44) (width 1) (layer F.Cu) (net 2) (tstamp 59F31640) (status 80000))
- (segment (start 160.02 91.44) (end 160.02 88.9) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 160.02 88.9) (end 154.94 88.9) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 154.94 88.9) (end 153.67 90.17) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 153.67 90.17) (end 153.67 91.44) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 158.71 53.34) (end 158.75 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 158.75 53.34) (end 158.75 55.88) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 158.75 55.88) (end 153.67 55.88) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 153.67 55.88) (end 153.67 54.61) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 153.67 54.61) (end 152.4 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 152.4 53.34) (end 152.36 53.34) (width 1) (layer B.Cu) (net 2) (tstamp 59F3163C) (status 80000))
- (segment (start 165.06 53.34) (end 165.1 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 165.1 53.34) (end 165.1 50.8) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 165.1 50.8) (end 160.02 50.8) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 160.02 50.8) (end 160.02 52.07) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 160.02 52.07) (end 158.75 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 158.75 53.34) (end 158.71 53.34) (width 1) (layer B.Cu) (net 2) (tstamp 59F3163B) (status 80000))
- (segment (start 83.82 91.44) (end 85.09 92.71) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 85.09 92.71) (end 85.09 93.98) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 85.09 93.98) (end 90.17 93.98) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 90.17 93.98) (end 90.17 91.44) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 96.52 60.96) (end 96.52 58.42) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 96.52 58.42) (end 91.44 58.42) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 91.44 58.42) (end 91.44 59.69) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 91.44 59.69) (end 90.17 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 96.52 53.34) (end 96.52 50.8) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 96.52 50.8) (end 91.44 50.8) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 91.44 50.8) (end 90.17 52.07) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 90.17 52.07) (end 90.17 53.34) (width 1) (layer F.Cu) (net 2) (status 80000))
- (segment (start 90.17 53.34) (end 90.13 53.34) (width 1) (layer F.Cu) (net 2) (tstamp 59F3163A) (status 80000))
- (segment (start 90.13 53.34) (end 90.17 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 90.17 53.34) (end 90.17 50.8) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 90.17 50.8) (end 85.09 50.8) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 85.09 50.8) (end 85.09 52.07) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 85.09 52.07) (end 83.82 53.34) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 151.17 99.06) (end 146.05 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 146.05 60.96) (end 149.86 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 81.32 99.06) (end 77.47 99.06) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 77.47 60.96) (end 69.85 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 81.32 60.96) (end 77.47 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 69.85 60.96) (end 68.58 60.96) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 68.58 60.96) (end 68.58 59.69) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 68.58 59.69) (end 66.675 59.69) (width 1) (layer B.Cu) (net 2) (status 80000))
- (segment (start 87.67 60.96) (end 87.63 60.96) (width 1) (layer F.Cu) (net 3) (status 80000))
- (segment (start 87.63 60.96) (end 87.63 67.31) (width 1) (layer F.Cu) (net 3) (status 80000))
- (segment (start 83.82 60.96) (end 87.67 60.96) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 77.47 58.42) (end 83.82 58.42) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 83.82 58.42) (end 83.82 60.96) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 77.47 55.88) (end 97.79 55.88) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 97.79 55.88) (end 99.06 54.61) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 99.06 54.61) (end 99.06 52.07) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 99.06 52.07) (end 95.25 48.26) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 95.25 48.26) (end 83.82 48.26) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 83.82 48.26) (end 82.55 46.99) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 82.55 46.99) (end 78.74 46.99) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 78.74 46.99) (end 77.47 45.72) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 77.47 45.72) (end 77.47 44.45) (width 1) (layer B.Cu) (net 3) (status 80000))
- (segment (start 77.47 44.45) (end 77.51 44.45) (width 1) (layer B.Cu) (net 3) (tstamp 59F30DD5) (status 80000))
- (segment (start 77.47 58.42) (end 77.47 55.88) (width 1) (layer F.Cu) (net 3) (status 80000))
- (segment (start 78.175 82.55) (end 80.05 82.55) (width 1) (layer F.Cu) (net 4))
- (segment (start 75.819998 92.329998) (end 75.819998 84.905002) (width 1) (layer F.Cu) (net 4))
- (segment (start 77.47 93.98) (end 75.819998 92.329998) (width 1) (layer F.Cu) (net 4))
- (segment (start 75.819998 84.905002) (end 78.175 82.55) (width 1) (layer F.Cu) (net 4))
- (segment (start 83.82 99.06) (end 83.82 96.52) (width 1) (layer B.Cu) (net 4) (status 80000))
- (segment (start 83.82 96.52) (end 77.47 96.52) (width 1) (layer B.Cu) (net 4) (status 80000))
- (segment (start 86.36 105.41) (end 87.63 104.14) (width 1) (layer F.Cu) (net 4) (status 80000))
- (segment (start 87.63 104.14) (end 87.63 99.06) (width 1) (layer F.Cu) (net 4) (status 80000))
- (segment (start 87.63 99.06) (end 87.67 99.06) (width 1) (layer F.Cu) (net 4) (tstamp 59F3164A) (status 80000))
- (segment (start 87.67 99.06) (end 83.82 99.06) (width 1) (layer B.Cu) (net 4) (status 80000))
- (segment (start 77.47 96.52) (end 77.47 93.98) (width 1) (layer F.Cu) (net 4) (status 80000))
- (segment (start 156.427012 49.66001) (end 156.21 49.442998) (width 1) (layer F.Cu) (net 5))
- (segment (start 160.68001 49.66001) (end 156.427012 49.66001) (width 1) (layer F.Cu) (net 5))
- (segment (start 162.56 51.54) (end 160.68001 49.66001) (width 1) (layer F.Cu) (net 5))
- (segment (start 162.56 53.34) (end 162.56 51.54) (width 1) (layer F.Cu) (net 5))
- (segment (start 134.62 50.8) (end 142.745001 42.674999) (width 1) (layer F.Cu) (net 5))
- (segment (start 142.745001 42.674999) (end 149.442001 42.674999) (width 1) (layer F.Cu) (net 5))
- (segment (start 149.442001 42.674999) (end 156.21 49.442998) (width 1) (layer F.Cu) (net 5))
- (segment (start 156.21 49.442998) (end 156.21 51.54) (width 1) (layer F.Cu) (net 5))
- (segment (start 156.21 51.54) (end 156.21 53.34) (width 1) (layer F.Cu) (net 5))
- (segment (start 156.21 53.34) (end 153.67 55.88) (width 1) (layer F.Cu) (net 5) (status 80000))
- (segment (start 153.67 55.88) (end 151.13 55.88) (width 1) (layer F.Cu) (net 5) (status 80000))
- (segment (start 151.13 55.88) (end 149.86 54.61) (width 1) (layer F.Cu) (net 5) (status 80000))
- (segment (start 149.86 54.61) (end 149.86 53.34) (width 1) (layer F.Cu) (net 5) (status 80000))
- (segment (start 156.21 52.07) (end 156.21 53.34) (width 1) (layer F.Cu) (net 5) (status 80000))
- (segment (start 146.05 58.42) (end 152.4 58.42) (width 1) (layer B.Cu) (net 6) (status 80000))
- (segment (start 152.4 58.42) (end 152.4 60.96) (width 1) (layer B.Cu) (net 6) (status 80000))
- (segment (start 152.4 60.96) (end 152.36 60.96) (width 1) (layer B.Cu) (net 6) (tstamp 59F31651) (status 80000))
- (segment (start 146.05 55.88) (end 143.51 55.88) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 143.51 55.88) (end 143.51 52.07) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 143.51 52.07) (end 146.05 49.53) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 146.05 49.53) (end 146.05 44.45) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 146.05 44.45) (end 146.09 44.45) (width 1) (layer F.Cu) (net 6) (tstamp 59F3164D) (status 80000))
- (segment (start 152.36 60.96) (end 152.4 60.96) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 152.4 60.96) (end 152.4 63.5) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 152.4 63.5) (end 151.13 64.77) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 151.13 64.77) (end 151.13 67.31) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 152.36 60.96) (end 156.21 60.96) (width 1) (layer B.Cu) (net 6) (status 80000))
- (segment (start 146.05 58.42) (end 146.05 55.88) (width 1) (layer F.Cu) (net 6) (status 80000))
- (segment (start 151.17 91.44) (end 151.13 91.44) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 151.13 91.44) (end 144.78 85.09) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 144.78 85.09) (end 137.16 85.09) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 137.16 85.09) (end 137.16 86.36) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 137.16 86.36) (end 135.89 87.63) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 135.89 87.63) (end 134.62 87.63) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 157.52 91.44) (end 157.48 91.44) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 157.48 91.44) (end 154.94 93.98) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 154.94 93.98) (end 152.4 93.98) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 152.4 93.98) (end 151.13 92.71) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 151.13 92.71) (end 151.13 91.44) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 151.13 91.44) (end 151.17 91.44) (width 1) (layer B.Cu) (net 7) (tstamp 59F3163E) (status 80000))
- (segment (start 163.83 91.44) (end 161.29 88.9) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 161.29 88.9) (end 158.75 88.9) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 158.75 88.9) (end 157.48 90.17) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 157.48 90.17) (end 157.48 91.44) (width 1) (layer B.Cu) (net 7) (status 80000))
- (segment (start 157.48 91.44) (end 157.52 91.44) (width 1) (layer B.Cu) (net 7) (tstamp 59F3163D) (status 80000))
- (segment (start 153.67 99.06) (end 153.67 96.52) (width 1) (layer B.Cu) (net 8) (status 80000))
- (segment (start 153.67 96.52) (end 146.05 96.52) (width 1) (layer B.Cu) (net 8) (status 80000))
- (segment (start 153.67 99.06) (end 153.67 101.6) (width 1) (layer F.Cu) (net 8) (status 80000))
- (segment (start 153.67 101.6) (end 151.13 104.14) (width 1) (layer F.Cu) (net 8) (status 80000))
- (segment (start 151.13 104.14) (end 151.13 105.41) (width 1) (layer F.Cu) (net 8) (status 80000))
- (segment (start 146.05 93.98) (end 143.51 93.98) (width 1) (layer F.Cu) (net 8) (status 80000))
- (segment (start 143.51 93.98) (end 143.51 90.17) (width 1) (layer F.Cu) (net 8) (status 80000))
- (segment (start 143.51 90.17) (end 146.05 87.63) (width 1) (layer F.Cu) (net 8) (status 80000))
- (segment (start 146.05 87.63) (end 146.05 82.55) (width 1) (layer F.Cu) (net 8) (status 80000))
- (segment (start 146.05 82.55) (end 146.09 82.55) (width 1) (layer F.Cu) (net 8) (tstamp 59F3164C) (status 80000))
- (segment (start 157.52 99.06) (end 153.67 99.06) (width 1) (layer B.Cu) (net 8) (status 80000))
- (segment (start 146.05 96.52) (end 146.05 93.98) (width 1) (layer F.Cu) (net 8) (status 80000))
- (segment (start 66.675 62.23) (end 67.31 62.23) (width 1) (layer B.Cu) (net 9) (status 80000))
- (segment (start 67.31 62.23) (end 67.31 63.5) (width 1) (layer B.Cu) (net 9) (status 80000))
- (segment (start 67.31 63.5) (end 68.58 64.77) (width 1) (layer B.Cu) (net 9) (status 80000))
- (segment (start 68.58 64.77) (end 76.2 64.77) (width 1) (layer B.Cu) (net 9) (status 80000))
- (segment (start 76.2 64.77) (end 78.74 67.31) (width 1) (layer B.Cu) (net 9) (status 80000))
- (segment (start 78.74 67.31) (end 82.55 67.31) (width 1) (layer B.Cu) (net 9) (status 80000))
- (segment (start 69.85 55.88) (end 71.12 55.88) (width 1) (layer F.Cu) (net 9) (status 80000))
- (segment (start 71.12 55.88) (end 72.39 57.15) (width 1) (layer F.Cu) (net 9) (status 80000))
- (segment (start 72.39 57.15) (end 72.39 62.23) (width 1) (layer F.Cu) (net 9) (status 80000))
- (segment (start 72.39 62.23) (end 71.12 63.5) (width 1) (layer F.Cu) (net 9) (status 80000))
- (segment (start 71.12 63.5) (end 68.58 63.5) (width 1) (layer F.Cu) (net 9) (status 80000))
- (segment (start 68.58 63.5) (end 67.31 62.23) (width 1) (layer F.Cu) (net 9) (status 80000))
- (segment (start 67.31 62.23) (end 66.675 62.23) (width 1) (layer F.Cu) (net 9) (tstamp 59F30571) (status 80000))
- (segment (start 81.28 105.41) (end 77.47 105.41) (width 1) (layer F.Cu) (net 10))
- (segment (start 77.47 105.41) (end 72.39 100.33) (width 1) (layer F.Cu) (net 10))
- (segment (start 66.675 98.425) (end 67.31 99.06) (width 1) (layer F.Cu) (net 10) (status 80000))
- (segment (start 67.31 99.06) (end 67.31 100.33) (width 1) (layer F.Cu) (net 10) (status 80000))
- (segment (start 67.31 100.33) (end 68.58 101.6) (width 1) (layer F.Cu) (net 10) (status 80000))
- (segment (start 68.58 101.6) (end 71.12 101.6) (width 1) (layer F.Cu) (net 10) (status 80000))
- (segment (start 71.12 101.6) (end 72.39 100.33) (width 1) (layer F.Cu) (net 10) (status 80000))
- (segment (start 72.39 100.33) (end 72.39 95.25) (width 1) (layer F.Cu) (net 10) (status 80000))
- (segment (start 72.39 95.25) (end 71.12 93.98) (width 1) (layer F.Cu) (net 10) (status 80000))
- (segment (start 71.12 93.98) (end 69.85 93.98) (width 1) (layer F.Cu) (net 10) (status 80000))
- (segment (start 139.7 67.31) (end 135.89 63.5) (width 1) (layer B.Cu) (net 11) (status 80000))
- (segment (start 135.89 63.5) (end 135.89 62.23) (width 1) (layer B.Cu) (net 11) (status 80000))
- (segment (start 135.89 62.23) (end 135.255 61.595) (width 1) (layer B.Cu) (net 11) (tstamp 59F31654) (status 80000))
- (segment (start 135.255 61.595) (end 135.89 62.23) (width 1) (layer F.Cu) (net 11) (status 80000))
- (segment (start 135.89 62.23) (end 135.89 63.5) (width 1) (layer F.Cu) (net 11) (status 80000))
- (segment (start 135.89 63.5) (end 140.97 63.5) (width 1) (layer F.Cu) (net 11) (status 80000))
- (segment (start 140.97 63.5) (end 140.97 57.15) (width 1) (layer F.Cu) (net 11) (status 80000))
- (segment (start 140.97 57.15) (end 139.7 55.88) (width 1) (layer F.Cu) (net 11) (status 80000))
- (segment (start 139.7 55.88) (end 138.43 55.88) (width 1) (layer F.Cu) (net 11) (status 80000))
- (segment (start 135.255 99.06) (end 135.89 99.06) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 135.89 99.06) (end 134.62 100.33) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 134.62 100.33) (end 133.35 100.33) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 133.35 100.33) (end 133.35 107.95) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 133.35 107.95) (end 144.78 107.95) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 144.78 107.95) (end 147.32 105.41) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 138.43 93.98) (end 139.7 93.98) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 139.7 93.98) (end 140.97 95.25) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 140.97 95.25) (end 140.97 100.33) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 140.97 100.33) (end 139.7 101.6) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 139.7 101.6) (end 137.16 101.6) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 137.16 101.6) (end 135.89 100.33) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 135.89 100.33) (end 135.89 99.06) (width 1) (layer F.Cu) (net 12) (status 80000))
- (segment (start 135.89 99.06) (end 135.255 99.06) (width 1) (layer F.Cu) (net 12) (tstamp 59F31650) (status 80000))
- (segment (start 60.96 66.370067) (end 60.96 50.8) (width 1) (layer F.Cu) (net 13))
- (segment (start 60.432949 50.272949) (end 59.69 49.53) (width 1) (layer F.Cu) (net 13))
- (segment (start 61.071127 84.978873) (end 61.071127 66.481194) (width 1) (layer F.Cu) (net 13))
- (segment (start 58.42 87.63) (end 61.071127 84.978873) (width 1) (layer F.Cu) (net 13))
- (segment (start 61.071127 66.481194) (end 60.96 66.370067) (width 1) (layer F.Cu) (net 13))
- (segment (start 60.96 50.8) (end 60.432949 50.272949) (width 1) (layer F.Cu) (net 13))
- (segment (start 158.719384 76.169384) (end 122.958464 76.169384) (width 1) (layer B.Cu) (net 13))
- (segment (start 123.710001 69.329999) (end 124.46 68.58) (width 1) (layer B.Cu) (net 13))
- (segment (start 122.958464 76.169384) (end 121.290023 74.500943) (width 1) (layer B.Cu) (net 13))
- (segment (start 121.290023 74.500943) (end 121.290023 71.749977) (width 1) (layer B.Cu) (net 13))
- (segment (start 165.1 82.55) (end 158.719384 76.169384) (width 1) (layer B.Cu) (net 13))
- (segment (start 121.290023 71.749977) (end 123.710001 69.329999) (width 1) (layer B.Cu) (net 13))
- (segment (start 161.810001 107.429999) (end 162.56 106.68) (width 1) (layer B.Cu) (net 13))
- (segment (start 124.534988 106.194902) (end 126.850098 108.510012) (width 1) (layer B.Cu) (net 13))
- (segment (start 160.729988 108.510012) (end 161.810001 107.429999) (width 1) (layer B.Cu) (net 13))
- (segment (start 124.534988 90.095012) (end 124.534988 106.194902) (width 1) (layer B.Cu) (net 13))
- (segment (start 127 87.63) (end 124.534988 90.095012) (width 1) (layer B.Cu) (net 13))
- (segment (start 126.850098 108.510012) (end 160.729988 108.510012) (width 1) (layer B.Cu) (net 13))
- (via (at 162.56 106.68) (size 1.5) (layers F.Cu B.Cu) (net 13) (status 80000))
- (segment (start 162.56 106.68) (end 168.91 100.33) (width 1) (layer F.Cu) (net 13) (status 80000))
- (segment (start 168.91 100.33) (end 168.91 90.17) (width 1) (layer F.Cu) (net 13) (status 80000))
- (segment (start 168.91 90.17) (end 165.1 86.36) (width 1) (layer F.Cu) (net 13) (status 80000))
- (segment (start 165.1 86.36) (end 165.1 82.55) (width 1) (layer F.Cu) (net 13) (status 80000))
- (via (at 165.1 82.55) (size 1.5) (layers F.Cu B.Cu) (net 13) (status 80000))
- (via (at 124.46 68.58) (size 1.5) (layers F.Cu B.Cu) (net 13) (status 80000))
- (segment (start 124.46 68.58) (end 125.73 67.31) (width 1) (layer F.Cu) (net 13) (status 80000))
- (segment (start 125.73 67.31) (end 125.73 54.61) (width 1) (layer F.Cu) (net 13) (status 80000))
- (segment (start 125.73 54.61) (end 127 53.34) (width 1) (layer F.Cu) (net 13) (status 80000))
- (segment (start 127 53.34) (end 127 50.8) (width 1) (layer F.Cu) (net 13) (status 80000))
- (segment (start 63.5 82.55) (end 59.162949 86.887051) (width 1) (layer B.Cu) (net 13))
- (segment (start 63.930001 78.309999) (end 63.5 78.74) (width 1) (layer B.Cu) (net 13))
- (segment (start 107.110001 78.309999) (end 63.930001 78.309999) (width 1) (layer B.Cu) (net 13))
- (segment (start 63.5 78.74) (end 63.5 82.55) (width 1) (layer B.Cu) (net 13))
- (segment (start 59.162949 86.887051) (end 58.42 87.63) (width 1) (layer B.Cu) (net 13))
- (segment (start 107.95 77.47) (end 107.110001 78.309999) (width 1) (layer B.Cu) (net 13))
- (segment (start 107.95 77.47) (end 107.95 78.74) (width 1) (layer B.Cu) (net 13) (status 80000))
- (segment (start 107.95 78.74) (end 116.84 87.63) (width 1) (layer B.Cu) (net 13) (status 80000))
- (segment (start 116.84 87.63) (end 127 87.63) (width 1) (layer B.Cu) (net 13) (status 80000))
- (segment (start 59.671116 67.786944) (end 59.671116 77.015934) (width 1) (layer F.Cu) (net 14))
- (segment (start 57.15 42.70705) (end 57.15 65.265828) (width 1) (layer F.Cu) (net 14))
- (segment (start 57.94705 41.91) (end 57.15 42.70705) (width 1) (layer F.Cu) (net 14))
- (segment (start 57.15 65.265828) (end 59.671116 67.786944) (width 1) (layer F.Cu) (net 14))
- (segment (start 58.42 78.26705) (end 58.42 80.01) (width 1) (layer F.Cu) (net 14))
- (segment (start 59.69 41.91) (end 57.94705 41.91) (width 1) (layer F.Cu) (net 14))
- (segment (start 59.671116 77.015934) (end 58.42 78.26705) (width 1) (layer F.Cu) (net 14))
- (segment (start 125.25705 80.01) (end 127 80.01) (width 1) (layer B.Cu) (net 14))
- (segment (start 118.490001 75.660749) (end 122.335296 79.506044) (width 1) (layer B.Cu) (net 14))
- (segment (start 122.335296 79.506044) (end 124.753094 79.506044) (width 1) (layer B.Cu) (net 14))
- (segment (start 117.632001 73.279999) (end 118.490001 74.137999) (width 1) (layer B.Cu) (net 14))
- (segment (start 110.870001 73.279999) (end 117.632001 73.279999) (width 1) (layer B.Cu) (net 14))
- (segment (start 109.22 74.93) (end 110.870001 73.279999) (width 1) (layer B.Cu) (net 14))
- (segment (start 118.490001 74.137999) (end 118.490001 75.660749) (width 1) (layer B.Cu) (net 14))
- (segment (start 124.753094 79.506044) (end 125.25705 80.01) (width 1) (layer B.Cu) (net 14))
- (segment (start 115.57 58.42) (end 124.46 49.53) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 124.46 49.53) (end 124.46 44.45) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 124.46 44.45) (end 125.73 43.18) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 125.73 43.18) (end 127 43.18) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 105.409926 76.909988) (end 107.389914 74.93) (width 1) (layer B.Cu) (net 14))
- (segment (start 63.262962 76.909988) (end 105.409926 76.909988) (width 1) (layer B.Cu) (net 14))
- (segment (start 108.15934 74.93) (end 109.22 74.93) (width 1) (layer B.Cu) (net 14))
- (segment (start 58.42 80.01) (end 60.16295 80.01) (width 1) (layer B.Cu) (net 14))
- (segment (start 107.389914 74.93) (end 108.15934 74.93) (width 1) (layer B.Cu) (net 14))
- (segment (start 60.16295 80.01) (end 63.262962 76.909988) (width 1) (layer B.Cu) (net 14))
- (segment (start 109.22 74.93) (end 106.68 72.39) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 106.68 72.39) (end 106.68 64.77) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 106.68 64.77) (end 107.95 63.5) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 107.95 63.5) (end 110.49 63.5) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 110.49 63.5) (end 115.57 58.42) (width 1) (layer F.Cu) (net 14) (status 80000))
- (segment (start 107.95 58.42) (end 107.95 64.77) (width 1) (layer B.Cu) (net 15) (status 80000))
- (segment (start 107.95 64.77) (end 109.22 66.04) (width 1) (layer B.Cu) (net 15) (status 80000))
- (segment (start 109.22 66.04) (end 109.26 66.04) (width 1) (layer B.Cu) (net 15) (tstamp 59F3164B) (status 80000))
- (segment (start 107.95 53.34) (end 107.95 58.42) (width 1) (layer F.Cu) (net 15) (status 80000))
- (segment (start 57.125946 71.700046) (end 57.875945 70.950047) (width 1) (layer F.Cu) (net 16))
- (segment (start 55.117725 93.079095) (end 55.117725 73.708267) (width 1) (layer F.Cu) (net 16))
- (segment (start 59.055 95.885) (end 57.92363 95.885) (width 1) (layer F.Cu) (net 16))
- (segment (start 57.125946 61.619054) (end 57.125946 70.200048) (width 1) (layer B.Cu) (net 16))
- (segment (start 59.055 59.69) (end 57.125946 61.619054) (width 1) (layer B.Cu) (net 16))
- (via (at 57.875945 70.950047) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 16))
- (segment (start 57.92363 95.885) (end 55.117725 93.079095) (width 1) (layer F.Cu) (net 16))
- (segment (start 55.117725 73.708267) (end 57.125946 71.700046) (width 1) (layer F.Cu) (net 16))
- (segment (start 57.125946 70.200048) (end 57.875945 70.950047) (width 1) (layer B.Cu) (net 16))
- (segment (start 123.47803 81.301906) (end 121.945124 82.834812) (width 1) (layer F.Cu) (net 16))
- (segment (start 121.945124 82.834812) (end 121.945124 100.304876) (width 1) (layer F.Cu) (net 16))
- (segment (start 121.945124 100.304876) (end 121.92 100.33) (width 1) (layer F.Cu) (net 16))
- (segment (start 122.41737 81.301906) (end 123.47803 81.301906) (width 1) (layer B.Cu) (net 16))
- (segment (start 116.84 75.99066) (end 122.151246 81.301906) (width 1) (layer B.Cu) (net 16))
- (segment (start 123.47803 80.241246) (end 123.47803 81.301906) (width 1) (layer F.Cu) (net 16))
- (segment (start 123.47803 79.150458) (end 123.47803 80.241246) (width 1) (layer F.Cu) (net 16))
- (segment (start 122.151246 81.301906) (end 122.41737 81.301906) (width 1) (layer B.Cu) (net 16))
- (via (at 123.47803 81.301906) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 16))
- (segment (start 116.84 74.93) (end 116.84 75.99066) (width 1) (layer B.Cu) (net 16))
- (segment (start 131.427438 71.20105) (end 123.47803 79.150458) (width 1) (layer F.Cu) (net 16))
- (segment (start 131.427438 62.847438) (end 131.427438 70.14039) (width 1) (layer B.Cu) (net 16))
- (segment (start 127.635 59.055) (end 131.427438 62.847438) (width 1) (layer B.Cu) (net 16))
- (via (at 131.427438 71.20105) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 16))
- (segment (start 131.427438 70.14039) (end 131.427438 71.20105) (width 1) (layer B.Cu) (net 16))
- (segment (start 127.635 96.52) (end 125.73 96.52) (width 1) (layer F.Cu) (net 16))
- (segment (start 125.73 96.52) (end 121.92 100.33) (width 1) (layer F.Cu) (net 16))
- (segment (start 121.92 100.33) (end 102.903619 100.33) (width 1) (layer F.Cu) (net 16))
- (segment (start 102.903619 100.33) (end 94.53738 108.696239) (width 1) (layer F.Cu) (net 16))
- (segment (start 94.53738 108.696239) (end 61.706239 108.696239) (width 1) (layer F.Cu) (net 16))
- (segment (start 59.69 106.68) (end 59.69 101.6) (width 1) (layer F.Cu) (net 16))
- (segment (start 59.69 101.6) (end 60.96 100.33) (width 1) (layer F.Cu) (net 16))
- (segment (start 61.706239 108.696239) (end 59.69 106.68) (width 1) (layer F.Cu) (net 16))
- (segment (start 59.69 96.52) (end 59.055 95.885) (width 1) (layer F.Cu) (net 16))
- (segment (start 60.96 100.33) (end 60.96 96.52) (width 1) (layer F.Cu) (net 16))
- (segment (start 60.96 96.52) (end 59.69 96.52) (width 1) (layer F.Cu) (net 16))
- (segment (start 59.055 57.15) (end 60.96 57.15) (width 1) (layer B.Cu) (net 17) (status 80000))
- (segment (start 60.96 57.15) (end 60.96 64.77) (width 1) (layer B.Cu) (net 17) (status 80000))
- (segment (start 60.96 64.77) (end 63.5 67.31) (width 1) (layer B.Cu) (net 17) (status 80000))
- (segment (start 69.85 105.41) (end 68.58 104.14) (width 1) (layer B.Cu) (net 18))
- (segment (start 68.58 104.14) (end 64.77 104.14) (width 1) (layer B.Cu) (net 18))
- (segment (start 64.77 104.14) (end 63.5 102.87) (width 1) (layer B.Cu) (net 18))
- (segment (start 63.5 102.87) (end 62.23 102.87) (width 1) (layer B.Cu) (net 18))
- (segment (start 62.23 102.87) (end 62.23 95.240713) (width 1) (layer B.Cu) (net 18))
- (segment (start 62.23 95.240713) (end 60.969287 93.98) (width 1) (layer B.Cu) (net 18))
- (segment (start 60.969287 93.98) (end 59.69 93.98) (width 1) (layer B.Cu) (net 18))
- (segment (start 59.69 93.98) (end 59.055 93.345) (width 1) (layer B.Cu) (net 18))
- (segment (start 128.27 67.31) (end 129.54 66.04) (width 1) (layer F.Cu) (net 19) (status 80000))
- (segment (start 129.54 66.04) (end 129.54 57.15) (width 1) (layer F.Cu) (net 19) (status 80000))
- (segment (start 129.54 57.15) (end 128.27 57.15) (width 1) (layer F.Cu) (net 19) (status 80000))
- (segment (start 128.27 57.15) (end 127.635 56.515) (width 1) (layer F.Cu) (net 19) (tstamp 59F31649) (status 80000))
- (segment (start 125.934999 105.591001) (end 125.934999 95.680001) (width 1) (layer B.Cu) (net 20))
- (segment (start 134.189999 107.110001) (end 127.453999 107.110001) (width 1) (layer B.Cu) (net 20))
- (segment (start 135.89 105.41) (end 134.189999 107.110001) (width 1) (layer B.Cu) (net 20))
- (segment (start 127.453999 107.110001) (end 125.934999 105.591001) (width 1) (layer B.Cu) (net 20))
- (segment (start 125.934999 95.680001) (end 127.635 93.98) (width 1) (layer B.Cu) (net 20))
- (segment (start 77.47 86.36) (end 76.720001 85.610001) (width 1) (layer B.Cu) (net 21))
- (segment (start 76.720001 85.610001) (end 68.059999 85.610001) (width 1) (layer B.Cu) (net 21))
- (segment (start 68.059999 85.610001) (end 66.782949 86.887051) (width 1) (layer B.Cu) (net 21))
- (segment (start 66.782949 86.887051) (end 66.04 87.63) (width 1) (layer B.Cu) (net 21))
- (segment (start 81.32 91.44) (end 81.32 90.21) (width 1) (layer F.Cu) (net 21))
- (segment (start 81.32 90.21) (end 77.47 86.36) (width 1) (layer F.Cu) (net 21))
- (via (at 77.47 86.36) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 21))
- (segment (start 87.67 91.44) (end 87.63 91.44) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 87.63 91.44) (end 87.63 90.17) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 87.63 90.17) (end 88.9 88.9) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 88.9 88.9) (end 91.44 88.9) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 91.44 88.9) (end 93.98 91.44) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 81.32 91.44) (end 81.28 91.44) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 81.28 91.44) (end 81.28 90.17) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 81.28 90.17) (end 82.55 88.9) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 82.55 88.9) (end 85.09 88.9) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 85.09 88.9) (end 87.63 91.44) (width 1) (layer B.Cu) (net 21) (status 80000))
- (segment (start 87.63 91.44) (end 87.67 91.44) (width 1) (layer B.Cu) (net 21) (tstamp 59F31639) (status 80000))
- (segment (start 101.104182 59.917544) (end 101.854181 59.167545) (width 1) (layer B.Cu) (net 22))
- (segment (start 95.748897 62.688897) (end 98.332829 62.688897) (width 1) (layer B.Cu) (net 22))
- (segment (start 94.02 60.96) (end 95.748897 62.688897) (width 1) (layer B.Cu) (net 22))
- (segment (start 95.25 44.45) (end 101.854181 51.054181) (width 1) (layer F.Cu) (net 22))
- (segment (start 101.854181 51.054181) (end 101.854181 58.106885) (width 1) (layer F.Cu) (net 22))
- (segment (start 98.332829 62.688897) (end 101.104182 59.917544) (width 1) (layer B.Cu) (net 22))
- (segment (start 101.854181 58.106885) (end 101.854181 59.167545) (width 1) (layer F.Cu) (net 22))
- (via (at 101.854181 59.167545) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 22))
- (segment (start 86.36 45.72) (end 88.9 43.18) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 88.9 43.18) (end 93.98 43.18) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 93.98 43.18) (end 95.25 44.45) (width 1) (layer B.Cu) (net 22) (status 80000))
- (via (at 95.25 44.45) (size 1.5) (layers F.Cu B.Cu) (net 22) (status 80000))
- (segment (start 77.47 53.34) (end 77.47 50.8) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 77.47 50.8) (end 74.93 48.26) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 74.93 48.26) (end 74.93 41.91) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 74.93 41.91) (end 81.28 41.91) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 81.28 41.91) (end 83.82 44.45) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 83.82 44.45) (end 85.09 44.45) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 85.09 44.45) (end 86.36 45.72) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 77.47 53.34) (end 74.93 53.34) (width 1) (layer F.Cu) (net 22) (status 80000))
- (segment (start 74.93 53.34) (end 74.93 67.31) (width 1) (layer F.Cu) (net 22) (status 80000))
- (segment (start 69.85 53.34) (end 77.47 53.34) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 69.85 53.34) (end 71.12 52.07) (width 1) (layer F.Cu) (net 22) (status 80000))
- (segment (start 71.12 52.07) (end 71.12 49.53) (width 1) (layer F.Cu) (net 22) (status 80000))
- (segment (start 66.675 57.15) (end 67.31 57.15) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 67.31 57.15) (end 67.31 54.61) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 67.31 54.61) (end 68.58 53.34) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 68.58 53.34) (end 69.85 53.34) (width 1) (layer B.Cu) (net 22) (status 80000))
- (segment (start 72.860001 106.209999) (end 73.66 105.41) (width 1) (layer F.Cu) (net 23))
- (segment (start 66.675071 107.296228) (end 71.773772 107.296228) (width 1) (layer F.Cu) (net 23))
- (segment (start 64.77 105.391157) (end 66.675071 107.296228) (width 1) (layer F.Cu) (net 23))
- (segment (start 64.77 94.77705) (end 64.77 105.391157) (width 1) (layer F.Cu) (net 23))
- (segment (start 68.10705 91.44) (end 64.77 94.77705) (width 1) (layer F.Cu) (net 23))
- (segment (start 69.85 91.44) (end 68.10705 91.44) (width 1) (layer F.Cu) (net 23))
- (segment (start 71.773772 107.296228) (end 72.860001 106.209999) (width 1) (layer F.Cu) (net 23))
- (segment (start 77.47 91.44) (end 77.47 88.9) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 77.47 88.9) (end 81.28 85.09) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 81.28 85.09) (end 83.82 85.09) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 83.82 85.09) (end 85.09 83.82) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 85.09 83.82) (end 90.17 83.82) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 90.17 83.82) (end 92.71 86.36) (width 1) (layer F.Cu) (net 23) (status 80000))
- (segment (start 92.71 86.36) (end 99.06 86.36) (width 1) (layer F.Cu) (net 23) (status 80000))
- (segment (start 99.06 86.36) (end 99.06 93.98) (width 1) (layer F.Cu) (net 23) (status 80000))
- (segment (start 99.06 93.98) (end 97.79 93.98) (width 1) (layer F.Cu) (net 23) (status 80000))
- (segment (start 97.79 93.98) (end 93.98 97.79) (width 1) (layer F.Cu) (net 23) (status 80000))
- (segment (start 93.98 97.79) (end 93.98 99.06) (width 1) (layer F.Cu) (net 23) (status 80000))
- (segment (start 93.98 99.06) (end 94.02 99.06) (width 1) (layer F.Cu) (net 23) (tstamp 59F31655) (status 80000))
- (segment (start 66.675 93.345) (end 67.31 93.98) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 67.31 93.98) (end 67.31 92.71) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 67.31 92.71) (end 68.58 91.44) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 68.58 91.44) (end 69.85 91.44) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 69.85 91.44) (end 72.39 88.9) (width 1) (layer F.Cu) (net 23) (status 80000))
- (segment (start 72.39 88.9) (end 72.39 87.63) (width 1) (layer F.Cu) (net 23) (status 80000))
- (segment (start 69.85 91.44) (end 77.47 91.44) (width 1) (layer B.Cu) (net 23) (status 80000))
- (segment (start 156.21 45.72) (end 156.21 47.72) (width 1) (layer B.Cu) (net 24))
- (segment (start 156.21 47.72) (end 156.75 48.26) (width 1) (layer B.Cu) (net 24))
- (segment (start 156.75 48.26) (end 157.48 48.26) (width 1) (layer B.Cu) (net 24))
- (segment (start 147.32 67.31) (end 147.32 72.39) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 147.32 72.39) (end 163.83 72.39) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 163.83 72.39) (end 163.83 71.12) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 163.83 71.12) (end 165.1 69.85) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 165.1 69.85) (end 165.1 64.77) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 165.1 64.77) (end 162.56 62.23) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 162.56 62.23) (end 162.56 60.96) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 147.32 67.31) (end 149.86 69.85) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 149.86 69.85) (end 161.29 69.85) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 161.29 69.85) (end 162.56 68.58) (width 1) (layer B.Cu) (net 24) (status 80000))
- (via (at 162.56 68.58) (size 1.5) (layers F.Cu B.Cu) (net 24) (status 80000))
- (segment (start 162.56 68.58) (end 167.64 63.5) (width 1) (layer F.Cu) (net 24) (status 80000))
- (segment (start 167.64 63.5) (end 167.64 50.8) (width 1) (layer F.Cu) (net 24) (status 80000))
- (segment (start 167.64 50.8) (end 165.1 48.26) (width 1) (layer F.Cu) (net 24) (status 80000))
- (segment (start 165.1 48.26) (end 165.1 46.99) (width 1) (layer F.Cu) (net 24) (status 80000))
- (via (at 165.1 46.99) (size 1.5) (layers F.Cu B.Cu) (net 24) (status 80000))
- (segment (start 165.1 46.99) (end 163.83 48.26) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 163.83 48.26) (end 157.48 48.26) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 157.48 48.26) (end 154.94 50.8) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 154.94 50.8) (end 146.05 50.8) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 146.05 50.8) (end 146.05 53.34) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 138.43 53.34) (end 137.16 53.34) (width 1) (layer F.Cu) (net 24) (status 80000))
- (segment (start 137.16 53.34) (end 135.89 54.61) (width 1) (layer F.Cu) (net 24) (status 80000))
- (segment (start 135.89 54.61) (end 135.89 57.15) (width 1) (layer F.Cu) (net 24) (status 80000))
- (segment (start 135.89 57.15) (end 135.255 56.515) (width 1) (layer F.Cu) (net 24) (tstamp 59F3164E) (status 80000))
- (segment (start 146.05 53.34) (end 138.43 53.34) (width 1) (layer B.Cu) (net 24) (status 80000))
- (segment (start 138.43 53.34) (end 139.7 52.07) (width 1) (layer F.Cu) (net 24) (status 80000))
- (segment (start 139.7 52.07) (end 139.7 50.8) (width 1) (layer F.Cu) (net 24) (status 80000))
- (segment (start 151.13 86.36) (end 151.13 83.82) (width 1) (layer F.Cu) (net 25))
- (segment (start 151.13 83.82) (end 151.13 81.28) (width 1) (layer F.Cu) (net 25))
- (segment (start 156.21 83.82) (end 151.13 83.82) (width 1) (layer F.Cu) (net 25))
- (segment (start 156.21 83.82) (end 158.75 86.36) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 158.75 86.36) (end 163.83 86.36) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 163.83 86.36) (end 166.37 88.9) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 166.37 88.9) (end 168.91 88.9) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 168.91 88.9) (end 168.91 101.6) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 168.91 101.6) (end 165.1 101.6) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 165.1 101.6) (end 163.83 100.33) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 163.83 100.33) (end 163.83 99.06) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 139.7 105.41) (end 142.24 105.41) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 142.24 105.41) (end 144.78 102.87) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 144.78 102.87) (end 146.05 102.87) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 146.05 102.87) (end 148.59 100.33) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 148.59 100.33) (end 148.59 88.9) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 148.59 88.9) (end 151.13 86.36) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 151.13 81.28) (end 149.86 80.01) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 149.86 80.01) (end 143.51 80.01) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 143.51 80.01) (end 138.43 85.09) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 138.43 85.09) (end 137.16 85.09) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 137.16 85.09) (end 137.16 90.17) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 137.16 90.17) (end 138.43 91.44) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 138.43 91.44) (end 137.16 91.44) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 137.16 91.44) (end 135.89 92.71) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 135.89 92.71) (end 135.89 93.98) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 135.89 93.98) (end 135.255 93.98) (width 1) (layer F.Cu) (net 25) (tstamp 59F3164F) (status 80000))
- (segment (start 138.43 91.44) (end 139.7 90.17) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 139.7 90.17) (end 139.7 87.63) (width 1) (layer F.Cu) (net 25) (status 80000))
- (segment (start 138.43 91.44) (end 146.05 91.44) (width 1) (layer B.Cu) (net 25) (status 80000))
- (segment (start 71.12 41.91) (end 68.58 44.45) (width 1) (layer B.Cu) (net 26) (status 80000))
- (segment (start 68.58 44.45) (end 67.31 44.45) (width 1) (layer B.Cu) (net 26) (status 80000))
- (segment (start 66.04 82.55) (end 67.31 82.55) (width 1) (layer B.Cu) (net 27) (status 80000))
- (segment (start 67.31 82.55) (end 69.85 80.01) (width 1) (layer B.Cu) (net 27) (status 80000))
- (segment (start 69.85 80.01) (end 72.39 80.01) (width 1) (layer B.Cu) (net 27) (status 80000))
- (segment (start 139.7 43.18) (end 137.16 45.72) (width 1) (layer B.Cu) (net 28) (status 80000))
- (segment (start 137.16 45.72) (end 134.62 45.72) (width 1) (layer B.Cu) (net 28) (status 80000))
- (segment (start 139.7 80.01) (end 137.16 82.55) (width 1) (layer B.Cu) (net 29) (status 80000))
- (segment (start 137.16 82.55) (end 134.62 82.55) (width 1) (layer B.Cu) (net 29) (status 80000))
- (segment (start 97.99934 70.73999) (end 99.06 70.73999) (width 1) (layer B.Cu) (net 30))
- (segment (start 109.01066 80.01) (end 107.26935 80.01) (width 1) (layer F.Cu) (net 30))
- (segment (start 99.06 71.80065) (end 99.06 70.73999) (width 1) (layer F.Cu) (net 30))
- (via (at 99.06 70.73999) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 30))
- (segment (start 110.49 77.47) (end 110.49 78.53066) (width 1) (layer F.Cu) (net 30))
- (segment (start 71.12 67.31) (end 74.54999 70.73999) (width 1) (layer B.Cu) (net 30))
- (segment (start 74.54999 70.73999) (end 97.99934 70.73999) (width 1) (layer B.Cu) (net 30))
- (segment (start 110.49 78.53066) (end 109.01066 80.01) (width 1) (layer F.Cu) (net 30))
- (segment (start 107.26935 80.01) (end 99.06 71.80065) (width 1) (layer F.Cu) (net 30))
- (segment (start 109.22 71.12) (end 104.830023 75.509977) (width 1) (layer B.Cu) (net 31))
- (segment (start 104.830023 75.509977) (end 59.461524 75.509977) (width 1) (layer B.Cu) (net 31))
- (segment (start 59.461524 75.509977) (end 56.777049 78.194452) (width 1) (layer B.Cu) (net 31))
- (segment (start 56.777049 78.194452) (end 56.777049 99.957049) (width 1) (layer B.Cu) (net 31))
- (segment (start 56.777049 99.957049) (end 61.430001 104.610001) (width 1) (layer B.Cu) (net 31))
- (segment (start 61.430001 104.610001) (end 62.23 105.41) (width 1) (layer B.Cu) (net 31))
- (segment (start 111.76 74.93) (end 111.76 73.66) (width 1) (layer F.Cu) (net 31))
- (segment (start 111.76 73.66) (end 109.22 71.12) (width 1) (layer F.Cu) (net 31))
- (via (at 109.22 71.12) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 31))
- (segment (start 119.702439 80.01) (end 115.57 80.01) (width 1) (layer F.Cu) (net 32))
- (segment (start 135.89 67.31) (end 132.402439 67.31) (width 1) (layer F.Cu) (net 32))
- (segment (start 113.779999 78.219999) (end 113.03 77.47) (width 1) (layer F.Cu) (net 32))
- (segment (start 132.402439 67.31) (end 119.702439 80.01) (width 1) (layer F.Cu) (net 32))
- (segment (start 115.57 80.01) (end 113.779999 78.219999) (width 1) (layer F.Cu) (net 32))
- (segment (start 122.378561 77.569395) (end 119.890012 75.080846) (width 1) (layer B.Cu) (net 33))
- (segment (start 119.890012 73.558096) (end 117.451916 71.12) (width 1) (layer B.Cu) (net 33))
- (segment (start 128.27 105.41) (end 129.335001 104.344999) (width 1) (layer B.Cu) (net 33))
- (segment (start 115.36066 71.12) (end 114.3 71.12) (width 1) (layer B.Cu) (net 33))
- (segment (start 119.890012 75.080846) (end 119.890012 73.558096) (width 1) (layer B.Cu) (net 33))
- (segment (start 127.393576 77.569395) (end 122.378561 77.569395) (width 1) (layer B.Cu) (net 33))
- (segment (start 117.451916 71.12) (end 115.36066 71.12) (width 1) (layer B.Cu) (net 33))
- (segment (start 129.335001 104.344999) (end 129.335001 79.51082) (width 1) (layer B.Cu) (net 33))
- (segment (start 129.335001 79.51082) (end 127.393576 77.569395) (width 1) (layer B.Cu) (net 33))
- (segment (start 114.3 74.93) (end 114.3 71.12) (width 1) (layer F.Cu) (net 33))
- (via (at 114.3 71.12) (size 1.5) (drill 1) (layers F.Cu B.Cu) (net 33))
- (segment (start 115.57 77.47) (end 118.11 77.47) (width 1) (layer F.Cu) (net 34) (status 80000))
- (segment (start 118.11 77.47) (end 119.38 76.2) (width 1) (layer F.Cu) (net 34) (status 80000))
- (segment (start 119.38 76.2) (end 119.38 73.66) (width 1) (layer F.Cu) (net 34) (status 80000))
- (segment (start 119.38 73.66) (end 111.76 66.04) (width 1) (layer F.Cu) (net 34) (status 80000))
- )
|