DuPal_DIP.kicad_pcb 190 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324
  1. (kicad_pcb (version 20171130) (host pcbnew 5.1.6-1.fc32)
  2. (general
  3. (thickness 1.6)
  4. (drawings 11)
  5. (tracks 0)
  6. (zones 0)
  7. (modules 51)
  8. (nets 84)
  9. )
  10. (page A4)
  11. (layers
  12. (0 F.Cu signal)
  13. (31 B.Cu signal)
  14. (32 B.Adhes user)
  15. (33 F.Adhes user)
  16. (34 B.Paste user)
  17. (35 F.Paste user)
  18. (36 B.SilkS user)
  19. (37 F.SilkS user)
  20. (38 B.Mask user)
  21. (39 F.Mask user)
  22. (40 Dwgs.User user)
  23. (41 Cmts.User user)
  24. (42 Eco1.User user)
  25. (43 Eco2.User user)
  26. (44 Edge.Cuts user)
  27. (45 Margin user)
  28. (46 B.CrtYd user)
  29. (47 F.CrtYd user)
  30. (48 B.Fab user)
  31. (49 F.Fab user hide)
  32. )
  33. (setup
  34. (last_trace_width 0.25)
  35. (trace_clearance 0.2)
  36. (zone_clearance 0.508)
  37. (zone_45_only no)
  38. (trace_min 0.2)
  39. (via_size 0.8)
  40. (via_drill 0.4)
  41. (via_min_size 0.4)
  42. (via_min_drill 0.3)
  43. (uvia_size 0.3)
  44. (uvia_drill 0.1)
  45. (uvias_allowed no)
  46. (uvia_min_size 0.2)
  47. (uvia_min_drill 0.1)
  48. (edge_width 0.05)
  49. (segment_width 0.2)
  50. (pcb_text_width 0.3)
  51. (pcb_text_size 1.5 1.5)
  52. (mod_edge_width 0.12)
  53. (mod_text_size 1 1)
  54. (mod_text_width 0.15)
  55. (pad_size 1.524 1.524)
  56. (pad_drill 0.762)
  57. (pad_to_mask_clearance 0.051)
  58. (solder_mask_min_width 0.25)
  59. (aux_axis_origin 0 0)
  60. (visible_elements 7FFFFFFF)
  61. (pcbplotparams
  62. (layerselection 0x010fc_ffffffff)
  63. (usegerberextensions true)
  64. (usegerberattributes false)
  65. (usegerberadvancedattributes false)
  66. (creategerberjobfile false)
  67. (excludeedgelayer true)
  68. (linewidth 0.100000)
  69. (plotframeref false)
  70. (viasonmask false)
  71. (mode 1)
  72. (useauxorigin false)
  73. (hpglpennumber 1)
  74. (hpglpenspeed 20)
  75. (hpglpendiameter 15.000000)
  76. (psnegative false)
  77. (psa4output false)
  78. (plotreference true)
  79. (plotvalue true)
  80. (plotinvisibletext false)
  81. (padsonsilk false)
  82. (subtractmaskfromsilk false)
  83. (outputformat 1)
  84. (mirror false)
  85. (drillshape 0)
  86. (scaleselection 1)
  87. (outputdirectory "gerbers/rev_1.1/"))
  88. )
  89. (net 0 "")
  90. (net 1 /XTAL1)
  91. (net 2 GND)
  92. (net 3 /XTAL2)
  93. (net 4 "Net-(C3-Pad2)")
  94. (net 5 /~RESET)
  95. (net 6 "Net-(C4-Pad2)")
  96. (net 7 "Net-(C4-Pad1)")
  97. (net 8 "Net-(C5-Pad2)")
  98. (net 9 "Net-(C5-Pad1)")
  99. (net 10 VCC)
  100. (net 11 "Net-(C6-Pad1)")
  101. (net 12 "Net-(C7-Pad2)")
  102. (net 13 /RECT_V12)
  103. (net 14 /SCK)
  104. (net 15 "Net-(D1-Pad1)")
  105. (net 16 "Net-(D2-Pad1)")
  106. (net 17 /SW_12V)
  107. (net 18 /MOSI)
  108. (net 19 /MISO)
  109. (net 20 /RS232-DTR)
  110. (net 21 /RS232-TX)
  111. (net 22 /RS232-RX)
  112. (net 23 +12V)
  113. (net 24 /TTL-TX)
  114. (net 25 /TTL-RX)
  115. (net 26 "Net-(U2-Pad9)")
  116. (net 27 "Net-(D4-Pad2)")
  117. (net 28 "Net-(D4-Pad1)")
  118. (net 29 "Net-(D5-Pad2)")
  119. (net 30 "Net-(D5-Pad1)")
  120. (net 31 "Net-(J2-Pad9)")
  121. (net 32 "Net-(J2-Pad8)")
  122. (net 33 "Net-(J2-Pad7)")
  123. (net 34 "Net-(J2-Pad6)")
  124. (net 35 "Net-(J2-Pad1)")
  125. (net 36 /P20_18)
  126. (net 37 /SIPO_O_14)
  127. (net 38 /P20_17)
  128. (net 39 /SIPO_O_13)
  129. (net 40 /P20_16)
  130. (net 41 /SIPO_O_12)
  131. (net 42 /P20_15)
  132. (net 43 /SIPO_O_11)
  133. (net 44 /P20_14)
  134. (net 45 /SIPO_O_10)
  135. (net 46 /P20_13)
  136. (net 47 /SIPO_O_9)
  137. (net 48 /P20_19)
  138. (net 49 /SIPO_O_8)
  139. (net 50 /P20_12)
  140. (net 51 /SIPO_O_7)
  141. (net 52 /SIPO_SER)
  142. (net 53 "Net-(U1-Pad13)")
  143. (net 54 "Net-(U1-Pad26)")
  144. (net 55 /PISO_SER)
  145. (net 56 "Net-(U1-Pad25)")
  146. (net 57 /PISO_CLK)
  147. (net 58 /~SIPO_OE)
  148. (net 59 /SIPO_RCLK)
  149. (net 60 /PISO_INH)
  150. (net 61 /PISO_SH)
  151. (net 62 /~PISO_CLR)
  152. (net 63 /~SIPO_CLR)
  153. (net 64 /SIPO_CLK)
  154. (net 65 /SIPO_O_1)
  155. (net 66 /P24_11)
  156. (net 67 /P24_13)
  157. (net 68 /P24_14)
  158. (net 69 /P24_23)
  159. (net 70 /SIPO_O_2)
  160. (net 71 /P20_9)
  161. (net 72 /P20_11)
  162. (net 73 "Net-(U3-Pad9)")
  163. (net 74 /P20_8)
  164. (net 75 /P20_7)
  165. (net 76 /P20_6)
  166. (net 77 /P20_5)
  167. (net 78 /P20_4)
  168. (net 79 /P20_3)
  169. (net 80 /P20_2)
  170. (net 81 /P20_1)
  171. (net 82 "Net-(U6-Pad14)")
  172. (net 83 "Net-(U9-Pad9)")
  173. (net_class Default "This is the default net class."
  174. (clearance 0.2)
  175. (trace_width 0.25)
  176. (via_dia 0.8)
  177. (via_drill 0.4)
  178. (uvia_dia 0.3)
  179. (uvia_drill 0.1)
  180. (add_net /MISO)
  181. (add_net /MOSI)
  182. (add_net /P20_1)
  183. (add_net /P20_11)
  184. (add_net /P20_12)
  185. (add_net /P20_13)
  186. (add_net /P20_14)
  187. (add_net /P20_15)
  188. (add_net /P20_16)
  189. (add_net /P20_17)
  190. (add_net /P20_18)
  191. (add_net /P20_19)
  192. (add_net /P20_2)
  193. (add_net /P20_3)
  194. (add_net /P20_4)
  195. (add_net /P20_5)
  196. (add_net /P20_6)
  197. (add_net /P20_7)
  198. (add_net /P20_8)
  199. (add_net /P20_9)
  200. (add_net /P24_11)
  201. (add_net /P24_13)
  202. (add_net /P24_14)
  203. (add_net /P24_23)
  204. (add_net /PISO_CLK)
  205. (add_net /PISO_INH)
  206. (add_net /PISO_SER)
  207. (add_net /PISO_SH)
  208. (add_net /RS232-DTR)
  209. (add_net /RS232-RX)
  210. (add_net /RS232-TX)
  211. (add_net /SCK)
  212. (add_net /SIPO_CLK)
  213. (add_net /SIPO_O_1)
  214. (add_net /SIPO_O_10)
  215. (add_net /SIPO_O_11)
  216. (add_net /SIPO_O_12)
  217. (add_net /SIPO_O_13)
  218. (add_net /SIPO_O_14)
  219. (add_net /SIPO_O_2)
  220. (add_net /SIPO_O_7)
  221. (add_net /SIPO_O_8)
  222. (add_net /SIPO_O_9)
  223. (add_net /SIPO_RCLK)
  224. (add_net /SIPO_SER)
  225. (add_net /TTL-RX)
  226. (add_net /TTL-TX)
  227. (add_net /XTAL1)
  228. (add_net /XTAL2)
  229. (add_net /~PISO_CLR)
  230. (add_net /~RESET)
  231. (add_net /~SIPO_CLR)
  232. (add_net /~SIPO_OE)
  233. (add_net "Net-(C3-Pad2)")
  234. (add_net "Net-(C4-Pad1)")
  235. (add_net "Net-(C4-Pad2)")
  236. (add_net "Net-(C5-Pad1)")
  237. (add_net "Net-(C5-Pad2)")
  238. (add_net "Net-(C6-Pad1)")
  239. (add_net "Net-(C7-Pad2)")
  240. (add_net "Net-(D1-Pad1)")
  241. (add_net "Net-(D2-Pad1)")
  242. (add_net "Net-(D4-Pad1)")
  243. (add_net "Net-(D4-Pad2)")
  244. (add_net "Net-(D5-Pad1)")
  245. (add_net "Net-(D5-Pad2)")
  246. (add_net "Net-(J2-Pad1)")
  247. (add_net "Net-(J2-Pad6)")
  248. (add_net "Net-(J2-Pad7)")
  249. (add_net "Net-(J2-Pad8)")
  250. (add_net "Net-(J2-Pad9)")
  251. (add_net "Net-(U1-Pad13)")
  252. (add_net "Net-(U1-Pad25)")
  253. (add_net "Net-(U1-Pad26)")
  254. (add_net "Net-(U2-Pad9)")
  255. (add_net "Net-(U3-Pad9)")
  256. (add_net "Net-(U6-Pad14)")
  257. (add_net "Net-(U9-Pad9)")
  258. )
  259. (net_class POWER ""
  260. (clearance 0.25)
  261. (trace_width 0.4)
  262. (via_dia 0.8)
  263. (via_drill 0.4)
  264. (uvia_dia 0.3)
  265. (uvia_drill 0.1)
  266. (add_net +12V)
  267. (add_net /RECT_V12)
  268. (add_net /SW_12V)
  269. (add_net GND)
  270. (add_net VCC)
  271. )
  272. (module Socket:DIP_Socket-24_W4.3_W5.08_W7.62_W10.16_W10.9_3M_224-5248-00-0602J (layer F.Cu) (tedit 5AF5D4CC) (tstamp 5F3987DA)
  273. (at 105.41 104.14)
  274. (descr "3M 24-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf")
  275. (tags "THT DIP DIL ZIF 7.62mm 300mil Socket")
  276. (path /61C8AE16)
  277. (fp_text reference U10 (at 5.08 -8.89) (layer F.SilkS)
  278. (effects (font (size 1 1) (thickness 0.15)))
  279. )
  280. (fp_text value "24 Pin PAL" (at 3.81 35.94) (layer F.Fab)
  281. (effects (font (size 0.6 0.6) (thickness 0.09)))
  282. )
  283. (fp_text user %R (at 3.81 12.19) (layer F.Fab)
  284. (effects (font (size 1 1) (thickness 0.15)))
  285. )
  286. (fp_circle (center -3.2 -6.35) (end -0.65 -6.35) (layer F.SilkS) (width 0.12))
  287. (fp_circle (center -3.2 -6.35) (end -2.3 -6.35) (layer F.SilkS) (width 0.12))
  288. (fp_line (start -5.5 -23.36) (end 0.1 -23.36) (layer F.CrtYd) (width 0.05))
  289. (fp_line (start 0.1 -23.36) (end 0.1 -11.06) (layer F.CrtYd) (width 0.05))
  290. (fp_line (start 0.1 -11.06) (end 11.91 -11.06) (layer F.CrtYd) (width 0.05))
  291. (fp_line (start 11.91 -11.06) (end 11.91 35.44) (layer F.CrtYd) (width 0.05))
  292. (fp_line (start 11.91 35.44) (end -4.29 35.44) (layer F.CrtYd) (width 0.05))
  293. (fp_line (start -4.29 35.44) (end -4.29 -3.4) (layer F.CrtYd) (width 0.05))
  294. (fp_line (start -4.29 -3.4) (end -5.5 -3.4) (layer F.CrtYd) (width 0.05))
  295. (fp_line (start -5.5 -3.4) (end -5.5 -23.36) (layer F.CrtYd) (width 0.05))
  296. (fp_line (start -5 -21.46) (end -3.7 -22.86) (layer F.Fab) (width 0.1))
  297. (fp_line (start -3.7 -22.86) (end -1.7 -22.86) (layer F.Fab) (width 0.1))
  298. (fp_line (start -1.7 -22.86) (end -0.4 -21.46) (layer F.Fab) (width 0.1))
  299. (fp_line (start -0.4 -21.46) (end -5 -21.46) (layer F.Fab) (width 0.1))
  300. (fp_line (start -5 -21.46) (end -5 -17.86) (layer F.Fab) (width 0.1))
  301. (fp_line (start -5 -17.86) (end -0.4 -17.86) (layer F.Fab) (width 0.1))
  302. (fp_line (start -0.4 -17.86) (end -0.4 -21.46) (layer F.Fab) (width 0.1))
  303. (fp_line (start -5 -17.86) (end -3.5 -15.86) (layer F.Fab) (width 0.1))
  304. (fp_line (start -0.4 -17.86) (end -1.9 -15.86) (layer F.Fab) (width 0.1))
  305. (fp_line (start -3.5 -9.75) (end -3.5 -15.86) (layer F.Fab) (width 0.1))
  306. (fp_line (start -3.5 -15.86) (end -1.9 -15.86) (layer F.Fab) (width 0.1))
  307. (fp_line (start -1.9 -15.86) (end -1.9 -10.56) (layer F.Fab) (width 0.1))
  308. (fp_line (start 11.41 34.94) (end -3.79 34.94) (layer F.Fab) (width 0.1))
  309. (fp_line (start -3.79 34.94) (end -3.79 -9.4) (layer F.Fab) (width 0.1))
  310. (fp_line (start -3.79 -9.4) (end -2.85 -10.56) (layer F.Fab) (width 0.1))
  311. (fp_line (start -2.85 -10.56) (end 11.41 -10.56) (layer F.Fab) (width 0.1))
  312. (fp_line (start 11.41 -10.56) (end 11.41 34.94) (layer F.Fab) (width 0.1))
  313. (fp_line (start -3.89 -3.9) (end -3.89 35.04) (layer F.SilkS) (width 0.12))
  314. (fp_line (start -3.89 35.04) (end 11.51 35.04) (layer F.SilkS) (width 0.12))
  315. (fp_line (start 11.51 35.04) (end 11.51 -10.66) (layer F.SilkS) (width 0.12))
  316. (fp_line (start 11.51 -10.66) (end -3.89 -10.66) (layer F.SilkS) (width 0.12))
  317. (fp_line (start -3.89 -10.66) (end -3.89 -8.8) (layer F.SilkS) (width 0.12))
  318. (fp_line (start -1.65 -10.66) (end -1.65 -8.4) (layer F.SilkS) (width 0.12))
  319. (fp_line (start -4.95 1.27) (end -4.95 -1.27) (layer F.SilkS) (width 0.12))
  320. (pad 13 thru_hole oval (at 7.62 27.94) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  321. (net 67 /P24_13))
  322. (pad 12 thru_hole oval (at 0 27.94) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  323. (net 2 GND))
  324. (pad 14 thru_hole oval (at 7.62 25.4) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  325. (net 68 /P24_14))
  326. (pad 11 thru_hole oval (at 0 25.4) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  327. (net 66 /P24_11))
  328. (pad 15 thru_hole oval (at 7.62 22.86) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  329. (net 36 /P20_18))
  330. (pad 10 thru_hole oval (at 0 22.86) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  331. (net 72 /P20_11))
  332. (pad 16 thru_hole oval (at 7.62 20.32) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  333. (net 38 /P20_17))
  334. (pad 9 thru_hole oval (at 0 20.32) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  335. (net 71 /P20_9))
  336. (pad 17 thru_hole oval (at 7.62 17.78) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  337. (net 40 /P20_16))
  338. (pad 8 thru_hole oval (at 0 17.78) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  339. (net 74 /P20_8))
  340. (pad 18 thru_hole oval (at 7.62 15.24) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  341. (net 42 /P20_15))
  342. (pad 7 thru_hole oval (at 0 15.24) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  343. (net 75 /P20_7))
  344. (pad 19 thru_hole oval (at 7.62 12.7) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  345. (net 44 /P20_14))
  346. (pad 6 thru_hole oval (at 0 12.7) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  347. (net 76 /P20_6))
  348. (pad 20 thru_hole oval (at 7.62 10.16) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  349. (net 46 /P20_13))
  350. (pad 5 thru_hole oval (at 0 10.16) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  351. (net 77 /P20_5))
  352. (pad 21 thru_hole oval (at 7.62 7.62) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  353. (net 48 /P20_19))
  354. (pad 4 thru_hole oval (at 0 7.62) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  355. (net 78 /P20_4))
  356. (pad 22 thru_hole oval (at 7.62 5.08) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  357. (net 50 /P20_12))
  358. (pad 3 thru_hole oval (at 0 5.08) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  359. (net 79 /P20_3))
  360. (pad 23 thru_hole oval (at 7.62 2.54) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  361. (net 69 /P24_23))
  362. (pad 2 thru_hole oval (at 0 2.54) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  363. (net 80 /P20_2))
  364. (pad 24 thru_hole oval (at 7.62 0) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  365. (net 10 VCC))
  366. (pad 1 thru_hole rect (at 0 0) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  367. (net 81 /P20_1))
  368. (model ${KISYS3DMOD}/Socket.3dshapes/DIP_Socket-24_W4.3_W5.08_W7.62_W10.16_W10.9_3M_224-5248-00-0602J.wrl
  369. (at (xyz 0 0 0))
  370. (scale (xyz 1 1 1))
  371. (rotate (xyz 0 0 0))
  372. )
  373. )
  374. (module Package_DIP:DIP-16_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 5F39879B)
  375. (at 68.58 123.19)
  376. (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  377. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  378. (path /5F3CD878)
  379. (fp_text reference U9 (at 3.81 -2.33) (layer F.SilkS)
  380. (effects (font (size 1 1) (thickness 0.15)))
  381. )
  382. (fp_text value 74HC595 (at 3.81 20.11) (layer F.Fab)
  383. (effects (font (size 1 1) (thickness 0.15)))
  384. )
  385. (fp_text user %R (at 3.81 8.89) (layer F.Fab)
  386. (effects (font (size 1 1) (thickness 0.15)))
  387. )
  388. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  389. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  390. (fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer F.Fab) (width 0.1))
  391. (fp_line (start 6.985 19.05) (end 0.635 19.05) (layer F.Fab) (width 0.1))
  392. (fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  393. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  394. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  395. (fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer F.SilkS) (width 0.12))
  396. (fp_line (start 1.16 19.11) (end 6.46 19.11) (layer F.SilkS) (width 0.12))
  397. (fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  398. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  399. (fp_line (start -1.1 -1.55) (end -1.1 19.3) (layer F.CrtYd) (width 0.05))
  400. (fp_line (start -1.1 19.3) (end 8.7 19.3) (layer F.CrtYd) (width 0.05))
  401. (fp_line (start 8.7 19.3) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  402. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  403. (pad 16 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  404. (net 10 VCC))
  405. (pad 8 thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  406. (net 2 GND))
  407. (pad 15 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  408. (net 74 /P20_8))
  409. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  410. (net 81 /P20_1))
  411. (pad 14 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  412. (net 73 "Net-(U3-Pad9)"))
  413. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  414. (net 80 /P20_2))
  415. (pad 13 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  416. (net 58 /~SIPO_OE))
  417. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  418. (net 79 /P20_3))
  419. (pad 12 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  420. (net 59 /SIPO_RCLK))
  421. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  422. (net 78 /P20_4))
  423. (pad 11 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  424. (net 64 /SIPO_CLK))
  425. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  426. (net 77 /P20_5))
  427. (pad 10 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  428. (net 63 /~SIPO_CLR))
  429. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  430. (net 76 /P20_6))
  431. (pad 9 thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  432. (net 83 "Net-(U9-Pad9)"))
  433. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  434. (net 75 /P20_7))
  435. (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl
  436. (at (xyz 0 0 0))
  437. (scale (xyz 1 1 1))
  438. (rotate (xyz 0 0 0))
  439. )
  440. )
  441. (module Package_DIP:DIP-16_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 5F398777)
  442. (at 68.58 100.33)
  443. (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  444. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  445. (path /5F547526)
  446. (fp_text reference U8 (at 3.81 -2.33) (layer F.SilkS)
  447. (effects (font (size 1 1) (thickness 0.15)))
  448. )
  449. (fp_text value 74HC166 (at 3.81 20.11) (layer F.Fab)
  450. (effects (font (size 1 1) (thickness 0.15)))
  451. )
  452. (fp_text user %R (at 3.81 8.89) (layer F.Fab)
  453. (effects (font (size 1 1) (thickness 0.15)))
  454. )
  455. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  456. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  457. (fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer F.Fab) (width 0.1))
  458. (fp_line (start 6.985 19.05) (end 0.635 19.05) (layer F.Fab) (width 0.1))
  459. (fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  460. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  461. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  462. (fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer F.SilkS) (width 0.12))
  463. (fp_line (start 1.16 19.11) (end 6.46 19.11) (layer F.SilkS) (width 0.12))
  464. (fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  465. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  466. (fp_line (start -1.1 -1.55) (end -1.1 19.3) (layer F.CrtYd) (width 0.05))
  467. (fp_line (start -1.1 19.3) (end 8.7 19.3) (layer F.CrtYd) (width 0.05))
  468. (fp_line (start 8.7 19.3) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  469. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  470. (pad 16 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  471. (net 10 VCC))
  472. (pad 8 thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  473. (net 2 GND))
  474. (pad 15 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  475. (net 61 /PISO_SH))
  476. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  477. (net 57 /PISO_CLK))
  478. (pad 14 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  479. (net 36 /P20_18))
  480. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  481. (net 60 /PISO_INH))
  482. (pad 13 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  483. (net 55 /PISO_SER))
  484. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  485. (net 44 /P20_14))
  486. (pad 12 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  487. (net 38 /P20_17))
  488. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  489. (net 46 /P20_13))
  490. (pad 11 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  491. (net 40 /P20_16))
  492. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  493. (net 48 /P20_19))
  494. (pad 10 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  495. (net 42 /P20_15))
  496. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  497. (net 50 /P20_12))
  498. (pad 9 thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  499. (net 62 /~PISO_CLR))
  500. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  501. (net 2 GND))
  502. (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl
  503. (at (xyz 0 0 0))
  504. (scale (xyz 1 1 1))
  505. (rotate (xyz 0 0 0))
  506. )
  507. )
  508. (module Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown (layer F.Cu) (tedit 5AC8BA0D) (tstamp 5E56FD14)
  509. (at 123.19 45.72 270)
  510. (descr "TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf")
  511. (tags "TO-220-3 Horizontal RM 2.54mm")
  512. (path /5E8C0200)
  513. (fp_text reference U7 (at 2.54 -20.58 90) (layer F.SilkS)
  514. (effects (font (size 1 1) (thickness 0.15)))
  515. )
  516. (fp_text value L7805 (at 2.54 2 90) (layer F.Fab)
  517. (effects (font (size 1 1) (thickness 0.15)))
  518. )
  519. (fp_text user %R (at 2.54 -20.58 90) (layer F.Fab)
  520. (effects (font (size 1 1) (thickness 0.15)))
  521. )
  522. (fp_circle (center 2.54 -16.66) (end 4.39 -16.66) (layer F.Fab) (width 0.1))
  523. (fp_line (start -2.46 -13.06) (end -2.46 -19.46) (layer F.Fab) (width 0.1))
  524. (fp_line (start -2.46 -19.46) (end 7.54 -19.46) (layer F.Fab) (width 0.1))
  525. (fp_line (start 7.54 -19.46) (end 7.54 -13.06) (layer F.Fab) (width 0.1))
  526. (fp_line (start 7.54 -13.06) (end -2.46 -13.06) (layer F.Fab) (width 0.1))
  527. (fp_line (start -2.46 -3.81) (end -2.46 -13.06) (layer F.Fab) (width 0.1))
  528. (fp_line (start -2.46 -13.06) (end 7.54 -13.06) (layer F.Fab) (width 0.1))
  529. (fp_line (start 7.54 -13.06) (end 7.54 -3.81) (layer F.Fab) (width 0.1))
  530. (fp_line (start 7.54 -3.81) (end -2.46 -3.81) (layer F.Fab) (width 0.1))
  531. (fp_line (start 0 -3.81) (end 0 0) (layer F.Fab) (width 0.1))
  532. (fp_line (start 2.54 -3.81) (end 2.54 0) (layer F.Fab) (width 0.1))
  533. (fp_line (start 5.08 -3.81) (end 5.08 0) (layer F.Fab) (width 0.1))
  534. (fp_line (start -2.58 -3.69) (end 7.66 -3.69) (layer F.SilkS) (width 0.12))
  535. (fp_line (start -2.58 -19.58) (end 7.66 -19.58) (layer F.SilkS) (width 0.12))
  536. (fp_line (start -2.58 -19.58) (end -2.58 -3.69) (layer F.SilkS) (width 0.12))
  537. (fp_line (start 7.66 -19.58) (end 7.66 -3.69) (layer F.SilkS) (width 0.12))
  538. (fp_line (start 0 -3.69) (end 0 -1.15) (layer F.SilkS) (width 0.12))
  539. (fp_line (start 2.54 -3.69) (end 2.54 -1.15) (layer F.SilkS) (width 0.12))
  540. (fp_line (start 5.08 -3.69) (end 5.08 -1.15) (layer F.SilkS) (width 0.12))
  541. (fp_line (start -2.71 -19.71) (end -2.71 1.25) (layer F.CrtYd) (width 0.05))
  542. (fp_line (start -2.71 1.25) (end 7.79 1.25) (layer F.CrtYd) (width 0.05))
  543. (fp_line (start 7.79 1.25) (end 7.79 -19.71) (layer F.CrtYd) (width 0.05))
  544. (fp_line (start 7.79 -19.71) (end -2.71 -19.71) (layer F.CrtYd) (width 0.05))
  545. (pad 3 thru_hole oval (at 5.08 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
  546. (net 10 VCC))
  547. (pad 2 thru_hole oval (at 2.54 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
  548. (net 2 GND))
  549. (pad 1 thru_hole rect (at 0 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
  550. (net 13 /RECT_V12))
  551. (pad "" np_thru_hole oval (at 2.54 -16.66 270) (size 3.5 3.5) (drill 3.5) (layers *.Cu *.Mask))
  552. (model ${KISYS3DMOD}/Package_TO_SOT_THT.3dshapes/TO-220-3_Horizontal_TabDown.wrl
  553. (at (xyz 0 0 0))
  554. (scale (xyz 1 1 1))
  555. (rotate (xyz 0 0 0))
  556. )
  557. )
  558. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5F398546)
  559. (at 109.22 142.24 180)
  560. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  561. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  562. (path /61B70AF1)
  563. (fp_text reference R20 (at 3.81 0) (layer F.SilkS)
  564. (effects (font (size 1 1) (thickness 0.15)))
  565. )
  566. (fp_text value 680 (at 3.81 1.92) (layer F.Fab)
  567. (effects (font (size 1 1) (thickness 0.15)))
  568. )
  569. (fp_text user %R (at 3.81 0) (layer F.Fab)
  570. (effects (font (size 0.72 0.72) (thickness 0.108)))
  571. )
  572. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  573. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  574. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  575. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  576. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  577. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  578. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  579. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  580. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  581. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  582. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  583. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  584. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  585. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  586. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  587. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  588. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  589. (net 2 GND))
  590. (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  591. (net 30 "Net-(D5-Pad1)"))
  592. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  593. (at (xyz 0 0 0))
  594. (scale (xyz 1 1 1))
  595. (rotate (xyz 0 0 0))
  596. )
  597. )
  598. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5F39852F)
  599. (at 88.9 142.24 180)
  600. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  601. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  602. (path /61BC6E3A)
  603. (fp_text reference R19 (at 3.81 0) (layer F.SilkS)
  604. (effects (font (size 1 1) (thickness 0.15)))
  605. )
  606. (fp_text value 680 (at 3.81 1.92) (layer F.Fab)
  607. (effects (font (size 1 1) (thickness 0.15)))
  608. )
  609. (fp_text user %R (at 3.81 0) (layer F.Fab)
  610. (effects (font (size 0.72 0.72) (thickness 0.108)))
  611. )
  612. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  613. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  614. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  615. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  616. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  617. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  618. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  619. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  620. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  621. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  622. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  623. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  624. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  625. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  626. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  627. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  628. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  629. (net 2 GND))
  630. (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  631. (net 28 "Net-(D4-Pad1)"))
  632. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  633. (at (xyz 0 0 0))
  634. (scale (xyz 1 1 1))
  635. (rotate (xyz 0 0 0))
  636. )
  637. )
  638. (module LED_THT:LED_D2.0mm_W4.8mm_H2.5mm_FlatTop (layer F.Cu) (tedit 5880A862) (tstamp 5F39822E)
  639. (at 113.03 142.24)
  640. (descr "LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf")
  641. (tags "LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins")
  642. (path /61B70AE6)
  643. (fp_text reference D5 (at 5.08 0) (layer F.SilkS)
  644. (effects (font (size 1 1) (thickness 0.15)))
  645. )
  646. (fp_text value PAL24_LED (at 1.27 2.31) (layer F.Fab)
  647. (effects (font (size 1 1) (thickness 0.15)))
  648. )
  649. (fp_circle (center 1.27 0) (end 2.27 0) (layer F.Fab) (width 0.1))
  650. (fp_line (start -1.13 -1.25) (end -1.13 1.25) (layer F.Fab) (width 0.1))
  651. (fp_line (start -1.13 1.25) (end 3.67 1.25) (layer F.Fab) (width 0.1))
  652. (fp_line (start 3.67 1.25) (end 3.67 -1.25) (layer F.Fab) (width 0.1))
  653. (fp_line (start 3.67 -1.25) (end -1.13 -1.25) (layer F.Fab) (width 0.1))
  654. (fp_line (start -1.19 -1.31) (end 3.73 -1.31) (layer F.SilkS) (width 0.12))
  655. (fp_line (start -1.19 1.31) (end 3.73 1.31) (layer F.SilkS) (width 0.12))
  656. (fp_line (start -1.19 -1.31) (end -1.19 1.31) (layer F.SilkS) (width 0.12))
  657. (fp_line (start 3.73 -1.31) (end 3.73 1.31) (layer F.SilkS) (width 0.12))
  658. (fp_line (start -1.07 -1.31) (end -1.07 -1.08) (layer F.SilkS) (width 0.12))
  659. (fp_line (start -1.07 1.08) (end -1.07 1.31) (layer F.SilkS) (width 0.12))
  660. (fp_line (start -0.95 -1.31) (end -0.95 -1.08) (layer F.SilkS) (width 0.12))
  661. (fp_line (start -0.95 1.08) (end -0.95 1.31) (layer F.SilkS) (width 0.12))
  662. (fp_line (start -1.45 -1.6) (end -1.45 1.6) (layer F.CrtYd) (width 0.05))
  663. (fp_line (start -1.45 1.6) (end 4 1.6) (layer F.CrtYd) (width 0.05))
  664. (fp_line (start 4 1.6) (end 4 -1.6) (layer F.CrtYd) (width 0.05))
  665. (fp_line (start 4 -1.6) (end -1.45 -1.6) (layer F.CrtYd) (width 0.05))
  666. (pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
  667. (net 29 "Net-(D5-Pad2)"))
  668. (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
  669. (net 30 "Net-(D5-Pad1)"))
  670. (model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D2.0mm_W4.8mm_H2.5mm_FlatTop.wrl
  671. (at (xyz 0 0 0))
  672. (scale (xyz 1 1 1))
  673. (rotate (xyz 0 0 0))
  674. )
  675. )
  676. (module LED_THT:LED_D2.0mm_W4.8mm_H2.5mm_FlatTop (layer F.Cu) (tedit 5880A862) (tstamp 5F398217)
  677. (at 92.71 142.24)
  678. (descr "LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf")
  679. (tags "LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins")
  680. (path /61BC6E2F)
  681. (fp_text reference D4 (at 5.08 0) (layer F.SilkS)
  682. (effects (font (size 1 1) (thickness 0.15)))
  683. )
  684. (fp_text value PAL20_LED (at 1.27 2.31) (layer F.Fab)
  685. (effects (font (size 1 1) (thickness 0.15)))
  686. )
  687. (fp_circle (center 1.27 0) (end 2.27 0) (layer F.Fab) (width 0.1))
  688. (fp_line (start -1.13 -1.25) (end -1.13 1.25) (layer F.Fab) (width 0.1))
  689. (fp_line (start -1.13 1.25) (end 3.67 1.25) (layer F.Fab) (width 0.1))
  690. (fp_line (start 3.67 1.25) (end 3.67 -1.25) (layer F.Fab) (width 0.1))
  691. (fp_line (start 3.67 -1.25) (end -1.13 -1.25) (layer F.Fab) (width 0.1))
  692. (fp_line (start -1.19 -1.31) (end 3.73 -1.31) (layer F.SilkS) (width 0.12))
  693. (fp_line (start -1.19 1.31) (end 3.73 1.31) (layer F.SilkS) (width 0.12))
  694. (fp_line (start -1.19 -1.31) (end -1.19 1.31) (layer F.SilkS) (width 0.12))
  695. (fp_line (start 3.73 -1.31) (end 3.73 1.31) (layer F.SilkS) (width 0.12))
  696. (fp_line (start -1.07 -1.31) (end -1.07 -1.08) (layer F.SilkS) (width 0.12))
  697. (fp_line (start -1.07 1.08) (end -1.07 1.31) (layer F.SilkS) (width 0.12))
  698. (fp_line (start -0.95 -1.31) (end -0.95 -1.08) (layer F.SilkS) (width 0.12))
  699. (fp_line (start -0.95 1.08) (end -0.95 1.31) (layer F.SilkS) (width 0.12))
  700. (fp_line (start -1.45 -1.6) (end -1.45 1.6) (layer F.CrtYd) (width 0.05))
  701. (fp_line (start -1.45 1.6) (end 4 1.6) (layer F.CrtYd) (width 0.05))
  702. (fp_line (start 4 1.6) (end 4 -1.6) (layer F.CrtYd) (width 0.05))
  703. (fp_line (start 4 -1.6) (end -1.45 -1.6) (layer F.CrtYd) (width 0.05))
  704. (pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
  705. (net 27 "Net-(D4-Pad2)"))
  706. (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
  707. (net 28 "Net-(D4-Pad1)"))
  708. (model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D2.0mm_W4.8mm_H2.5mm_FlatTop.wrl
  709. (at (xyz 0 0 0))
  710. (scale (xyz 1 1 1))
  711. (rotate (xyz 0 0 0))
  712. )
  713. )
  714. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5F39816C)
  715. (at 72.39 107.95 270)
  716. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  717. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  718. (path /61A81BD7)
  719. (fp_text reference C17 (at 6.35 0 90) (layer F.SilkS)
  720. (effects (font (size 1 1) (thickness 0.15)))
  721. )
  722. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  723. (effects (font (size 1 1) (thickness 0.15)))
  724. )
  725. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  726. (effects (font (size 0.68 0.68) (thickness 0.102)))
  727. )
  728. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  729. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  730. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  731. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  732. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  733. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  734. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  735. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  736. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  737. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  738. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  739. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  740. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  741. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  742. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  743. (net 2 GND))
  744. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  745. (net 10 VCC))
  746. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  747. (at (xyz 0 0 0))
  748. (scale (xyz 1 1 1))
  749. (rotate (xyz 0 0 0))
  750. )
  751. )
  752. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5F398157)
  753. (at 72.39 130.81 270)
  754. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  755. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  756. (path /619A5323)
  757. (fp_text reference C16 (at 6.35 0 90) (layer F.SilkS)
  758. (effects (font (size 1 1) (thickness 0.15)))
  759. )
  760. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  761. (effects (font (size 1 1) (thickness 0.15)))
  762. )
  763. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  764. (effects (font (size 0.68 0.68) (thickness 0.102)))
  765. )
  766. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  767. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  768. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  769. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  770. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  771. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  772. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  773. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  774. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  775. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  776. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  777. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  778. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  779. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  780. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  781. (net 2 GND))
  782. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  783. (net 10 VCC))
  784. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  785. (at (xyz 0 0 0))
  786. (scale (xyz 1 1 1))
  787. (rotate (xyz 0 0 0))
  788. )
  789. )
  790. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5F398014)
  791. (at 99.06 134.62 270)
  792. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  793. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  794. (path /619A425B)
  795. (fp_text reference C13 (at 1.25 -2.3 90) (layer F.SilkS)
  796. (effects (font (size 1 1) (thickness 0.15)))
  797. )
  798. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  799. (effects (font (size 1 1) (thickness 0.15)))
  800. )
  801. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  802. (effects (font (size 0.68 0.68) (thickness 0.102)))
  803. )
  804. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  805. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  806. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  807. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  808. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  809. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  810. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  811. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  812. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  813. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  814. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  815. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  816. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  817. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  818. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  819. (net 2 GND))
  820. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  821. (net 10 VCC))
  822. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  823. (at (xyz 0 0 0))
  824. (scale (xyz 1 1 1))
  825. (rotate (xyz 0 0 0))
  826. )
  827. )
  828. (module Crystal:Crystal_HC49-U_Vertical (layer F.Cu) (tedit 5A1AD3B8) (tstamp 5E56FD2B)
  829. (at 34.29 138.43 90)
  830. (descr "Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf")
  831. (tags "THT crystalHC-49/U")
  832. (path /5E62EBAC)
  833. (fp_text reference Y1 (at 2.54 0 90) (layer F.SilkS)
  834. (effects (font (size 1 1) (thickness 0.15)))
  835. )
  836. (fp_text value 8Mhz (at 2.44 3.525 90) (layer F.Fab)
  837. (effects (font (size 1 1) (thickness 0.15)))
  838. )
  839. (fp_line (start -0.685 -2.325) (end 5.565 -2.325) (layer F.Fab) (width 0.1))
  840. (fp_line (start -0.685 2.325) (end 5.565 2.325) (layer F.Fab) (width 0.1))
  841. (fp_line (start -0.56 -2) (end 5.44 -2) (layer F.Fab) (width 0.1))
  842. (fp_line (start -0.56 2) (end 5.44 2) (layer F.Fab) (width 0.1))
  843. (fp_line (start -0.685 -2.525) (end 5.565 -2.525) (layer F.SilkS) (width 0.12))
  844. (fp_line (start -0.685 2.525) (end 5.565 2.525) (layer F.SilkS) (width 0.12))
  845. (fp_line (start -3.5 -2.8) (end -3.5 2.8) (layer F.CrtYd) (width 0.05))
  846. (fp_line (start -3.5 2.8) (end 8.4 2.8) (layer F.CrtYd) (width 0.05))
  847. (fp_line (start 8.4 2.8) (end 8.4 -2.8) (layer F.CrtYd) (width 0.05))
  848. (fp_line (start 8.4 -2.8) (end -3.5 -2.8) (layer F.CrtYd) (width 0.05))
  849. (fp_arc (start 5.565 0) (end 5.565 -2.525) (angle 180) (layer F.SilkS) (width 0.12))
  850. (fp_arc (start -0.685 0) (end -0.685 -2.525) (angle -180) (layer F.SilkS) (width 0.12))
  851. (fp_arc (start 5.44 0) (end 5.44 -2) (angle 180) (layer F.Fab) (width 0.1))
  852. (fp_arc (start -0.56 0) (end -0.56 -2) (angle -180) (layer F.Fab) (width 0.1))
  853. (fp_arc (start 5.565 0) (end 5.565 -2.325) (angle 180) (layer F.Fab) (width 0.1))
  854. (fp_arc (start -0.685 0) (end -0.685 -2.325) (angle -180) (layer F.Fab) (width 0.1))
  855. (fp_text user %R (at 2.44 0 90) (layer F.Fab)
  856. (effects (font (size 1 1) (thickness 0.15)))
  857. )
  858. (pad 2 thru_hole circle (at 4.88 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
  859. (net 1 /XTAL1))
  860. (pad 1 thru_hole circle (at 0 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
  861. (net 3 /XTAL2))
  862. (model ${KISYS3DMOD}/Crystal.3dshapes/Crystal_HC49-U_Vertical.wrl
  863. (at (xyz 0 0 0))
  864. (scale (xyz 1 1 1))
  865. (rotate (xyz 0 0 0))
  866. )
  867. )
  868. (module Package_DIP:DIP-16_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 5E56FCFA)
  869. (at 38.1 88.9 90)
  870. (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  871. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  872. (path /5E6911B2)
  873. (fp_text reference U6 (at 3.81 -2.33 90) (layer F.SilkS)
  874. (effects (font (size 1 1) (thickness 0.15)))
  875. )
  876. (fp_text value MAX232 (at 3.81 20.11 90) (layer F.Fab)
  877. (effects (font (size 1 1) (thickness 0.15)))
  878. )
  879. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  880. (fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer F.Fab) (width 0.1))
  881. (fp_line (start 6.985 19.05) (end 0.635 19.05) (layer F.Fab) (width 0.1))
  882. (fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  883. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  884. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  885. (fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer F.SilkS) (width 0.12))
  886. (fp_line (start 1.16 19.11) (end 6.46 19.11) (layer F.SilkS) (width 0.12))
  887. (fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  888. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  889. (fp_line (start -1.1 -1.55) (end -1.1 19.3) (layer F.CrtYd) (width 0.05))
  890. (fp_line (start -1.1 19.3) (end 8.7 19.3) (layer F.CrtYd) (width 0.05))
  891. (fp_line (start 8.7 19.3) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  892. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  893. (fp_text user %R (at 3.81 8.89 90) (layer F.Fab)
  894. (effects (font (size 1 1) (thickness 0.15)))
  895. )
  896. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  897. (pad 16 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  898. (net 10 VCC))
  899. (pad 8 thru_hole oval (at 0 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  900. (net 21 /RS232-TX))
  901. (pad 15 thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  902. (net 2 GND))
  903. (pad 7 thru_hole oval (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  904. (net 22 /RS232-RX))
  905. (pad 14 thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  906. (net 82 "Net-(U6-Pad14)"))
  907. (pad 6 thru_hole oval (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  908. (net 12 "Net-(C7-Pad2)"))
  909. (pad 13 thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  910. (net 20 /RS232-DTR))
  911. (pad 5 thru_hole oval (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  912. (net 8 "Net-(C5-Pad2)"))
  913. (pad 12 thru_hole oval (at 7.62 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  914. (net 4 "Net-(C3-Pad2)"))
  915. (pad 4 thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  916. (net 9 "Net-(C5-Pad1)"))
  917. (pad 11 thru_hole oval (at 7.62 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  918. (net 2 GND))
  919. (pad 3 thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  920. (net 6 "Net-(C4-Pad2)"))
  921. (pad 10 thru_hole oval (at 7.62 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  922. (net 24 /TTL-TX))
  923. (pad 2 thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  924. (net 11 "Net-(C6-Pad1)"))
  925. (pad 9 thru_hole oval (at 7.62 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  926. (net 25 /TTL-RX))
  927. (pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  928. (net 7 "Net-(C4-Pad1)"))
  929. (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl
  930. (at (xyz 0 0 0))
  931. (scale (xyz 1 1 1))
  932. (rotate (xyz 0 0 0))
  933. )
  934. )
  935. (module Socket:DIP_Socket-20_W4.3_W5.08_W7.62_W10.16_W10.9_3M_220-3342-00-0602J (layer F.Cu) (tedit 5AF5D4CC) (tstamp 5E56FCD6)
  936. (at 85.09 109.22)
  937. (descr "3M 20-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf")
  938. (tags "THT DIP DIL ZIF 7.62mm 300mil Socket")
  939. (path /5E5512FA)
  940. (fp_text reference U5 (at 3.81 -8.89) (layer F.SilkS)
  941. (effects (font (size 1 1) (thickness 0.15)))
  942. )
  943. (fp_text value "20 Pin PAL" (at 3.81 30.84) (layer F.Fab)
  944. (effects (font (size 0.6 0.6) (thickness 0.09)))
  945. )
  946. (fp_circle (center -3.2 -6.35) (end -0.65 -6.35) (layer F.SilkS) (width 0.12))
  947. (fp_circle (center -3.2 -6.35) (end -2.3 -6.35) (layer F.SilkS) (width 0.12))
  948. (fp_line (start -5.5 -23.36) (end 0.1 -23.36) (layer F.CrtYd) (width 0.05))
  949. (fp_line (start 0.1 -23.36) (end 0.1 -11.06) (layer F.CrtYd) (width 0.05))
  950. (fp_line (start 0.1 -11.06) (end 11.91 -11.06) (layer F.CrtYd) (width 0.05))
  951. (fp_line (start 11.91 -11.06) (end 11.91 30.34) (layer F.CrtYd) (width 0.05))
  952. (fp_line (start 11.91 30.34) (end -4.29 30.34) (layer F.CrtYd) (width 0.05))
  953. (fp_line (start -4.29 30.34) (end -4.29 -3.4) (layer F.CrtYd) (width 0.05))
  954. (fp_line (start -4.29 -3.4) (end -5.5 -3.4) (layer F.CrtYd) (width 0.05))
  955. (fp_line (start -5.5 -3.4) (end -5.5 -23.36) (layer F.CrtYd) (width 0.05))
  956. (fp_line (start -5 -21.46) (end -3.7 -22.86) (layer F.Fab) (width 0.1))
  957. (fp_line (start -3.7 -22.86) (end -1.7 -22.86) (layer F.Fab) (width 0.1))
  958. (fp_line (start -1.7 -22.86) (end -0.4 -21.46) (layer F.Fab) (width 0.1))
  959. (fp_line (start -0.4 -21.46) (end -5 -21.46) (layer F.Fab) (width 0.1))
  960. (fp_line (start -5 -21.46) (end -5 -17.86) (layer F.Fab) (width 0.1))
  961. (fp_line (start -5 -17.86) (end -0.4 -17.86) (layer F.Fab) (width 0.1))
  962. (fp_line (start -0.4 -17.86) (end -0.4 -21.46) (layer F.Fab) (width 0.1))
  963. (fp_line (start -5 -17.86) (end -3.5 -15.86) (layer F.Fab) (width 0.1))
  964. (fp_line (start -0.4 -17.86) (end -1.9 -15.86) (layer F.Fab) (width 0.1))
  965. (fp_line (start -3.5 -9.75) (end -3.5 -15.86) (layer F.Fab) (width 0.1))
  966. (fp_line (start -3.5 -15.86) (end -1.9 -15.86) (layer F.Fab) (width 0.1))
  967. (fp_line (start -1.9 -15.86) (end -1.9 -10.56) (layer F.Fab) (width 0.1))
  968. (fp_line (start 11.41 29.84) (end -3.79 29.84) (layer F.Fab) (width 0.1))
  969. (fp_line (start -3.79 29.84) (end -3.79 -9.4) (layer F.Fab) (width 0.1))
  970. (fp_line (start -3.79 -9.4) (end -2.85 -10.56) (layer F.Fab) (width 0.1))
  971. (fp_line (start -2.85 -10.56) (end 11.41 -10.56) (layer F.Fab) (width 0.1))
  972. (fp_line (start 11.41 -10.56) (end 11.41 29.84) (layer F.Fab) (width 0.1))
  973. (fp_line (start -3.89 -3.9) (end -3.89 29.94) (layer F.SilkS) (width 0.12))
  974. (fp_line (start -3.89 29.94) (end 11.51 29.94) (layer F.SilkS) (width 0.12))
  975. (fp_line (start 11.51 29.94) (end 11.51 -10.66) (layer F.SilkS) (width 0.12))
  976. (fp_line (start 11.51 -10.66) (end -3.89 -10.66) (layer F.SilkS) (width 0.12))
  977. (fp_line (start -3.89 -10.66) (end -3.89 -8.8) (layer F.SilkS) (width 0.12))
  978. (fp_line (start -1.65 -10.66) (end -1.65 -8.4) (layer F.SilkS) (width 0.12))
  979. (fp_line (start -4.95 1.27) (end -4.95 -1.27) (layer F.SilkS) (width 0.12))
  980. (fp_text user %R (at 3.81 9.64) (layer F.Fab)
  981. (effects (font (size 1 1) (thickness 0.15)))
  982. )
  983. (pad 11 thru_hole oval (at 7.62 22.86) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  984. (net 72 /P20_11))
  985. (pad 10 thru_hole oval (at 0 22.86) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  986. (net 2 GND))
  987. (pad 12 thru_hole oval (at 7.62 20.32) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  988. (net 50 /P20_12))
  989. (pad 9 thru_hole oval (at 0 20.32) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  990. (net 71 /P20_9))
  991. (pad 13 thru_hole oval (at 7.62 17.78) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  992. (net 46 /P20_13))
  993. (pad 8 thru_hole oval (at 0 17.78) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  994. (net 74 /P20_8))
  995. (pad 14 thru_hole oval (at 7.62 15.24) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  996. (net 44 /P20_14))
  997. (pad 7 thru_hole oval (at 0 15.24) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  998. (net 75 /P20_7))
  999. (pad 15 thru_hole oval (at 7.62 12.7) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1000. (net 42 /P20_15))
  1001. (pad 6 thru_hole oval (at 0 12.7) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1002. (net 76 /P20_6))
  1003. (pad 16 thru_hole oval (at 7.62 10.16) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1004. (net 40 /P20_16))
  1005. (pad 5 thru_hole oval (at 0 10.16) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1006. (net 77 /P20_5))
  1007. (pad 17 thru_hole oval (at 7.62 7.62) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1008. (net 38 /P20_17))
  1009. (pad 4 thru_hole oval (at 0 7.62) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1010. (net 78 /P20_4))
  1011. (pad 18 thru_hole oval (at 7.62 5.08) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1012. (net 36 /P20_18))
  1013. (pad 3 thru_hole oval (at 0 5.08) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1014. (net 79 /P20_3))
  1015. (pad 19 thru_hole oval (at 7.62 2.54) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1016. (net 48 /P20_19))
  1017. (pad 2 thru_hole oval (at 0 2.54) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1018. (net 80 /P20_2))
  1019. (pad 20 thru_hole oval (at 7.62 0) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1020. (net 10 VCC))
  1021. (pad 1 thru_hole rect (at 0 0) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
  1022. (net 81 /P20_1))
  1023. (model ${KISYS3DMOD}/Socket.3dshapes/DIP_Socket-20_W4.3_W5.08_W7.62_W10.16_W10.9_3M_220-3342-00-0602J.wrl
  1024. (at (xyz 0 0 0))
  1025. (scale (xyz 1 1 1))
  1026. (rotate (xyz 0 0 0))
  1027. )
  1028. )
  1029. (module Package_DIP:DIP-16_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 5E56FC9B)
  1030. (at 55.88 123.19)
  1031. (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  1032. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  1033. (path /5E54DF9A)
  1034. (fp_text reference U3 (at 3.81 -2.33) (layer F.SilkS)
  1035. (effects (font (size 1 1) (thickness 0.15)))
  1036. )
  1037. (fp_text value 74HC595 (at 3.81 20.11) (layer F.Fab)
  1038. (effects (font (size 1 1) (thickness 0.15)))
  1039. )
  1040. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  1041. (fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer F.Fab) (width 0.1))
  1042. (fp_line (start 6.985 19.05) (end 0.635 19.05) (layer F.Fab) (width 0.1))
  1043. (fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  1044. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  1045. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  1046. (fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer F.SilkS) (width 0.12))
  1047. (fp_line (start 1.16 19.11) (end 6.46 19.11) (layer F.SilkS) (width 0.12))
  1048. (fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  1049. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  1050. (fp_line (start -1.1 -1.55) (end -1.1 19.3) (layer F.CrtYd) (width 0.05))
  1051. (fp_line (start -1.1 19.3) (end 8.7 19.3) (layer F.CrtYd) (width 0.05))
  1052. (fp_line (start 8.7 19.3) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  1053. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  1054. (fp_text user %R (at 3.81 8.89) (layer F.Fab)
  1055. (effects (font (size 1 1) (thickness 0.15)))
  1056. )
  1057. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  1058. (pad 16 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1059. (net 10 VCC))
  1060. (pad 8 thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1061. (net 2 GND))
  1062. (pad 15 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1063. (net 47 /SIPO_O_9))
  1064. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1065. (net 71 /P20_9))
  1066. (pad 14 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1067. (net 26 "Net-(U2-Pad9)"))
  1068. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1069. (net 72 /P20_11))
  1070. (pad 13 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1071. (net 58 /~SIPO_OE))
  1072. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1073. (net 37 /SIPO_O_14))
  1074. (pad 12 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1075. (net 59 /SIPO_RCLK))
  1076. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1077. (net 39 /SIPO_O_13))
  1078. (pad 11 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1079. (net 64 /SIPO_CLK))
  1080. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1081. (net 41 /SIPO_O_12))
  1082. (pad 10 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1083. (net 63 /~SIPO_CLR))
  1084. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1085. (net 43 /SIPO_O_11))
  1086. (pad 9 thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1087. (net 73 "Net-(U3-Pad9)"))
  1088. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1089. (net 45 /SIPO_O_10))
  1090. (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl
  1091. (at (xyz 0 0 0))
  1092. (scale (xyz 1 1 1))
  1093. (rotate (xyz 0 0 0))
  1094. )
  1095. )
  1096. (module Package_DIP:DIP-16_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 5E56FC77)
  1097. (at 55.88 100.33)
  1098. (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  1099. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  1100. (path /5E54D2F2)
  1101. (fp_text reference U2 (at 1.27 -2.33) (layer F.SilkS)
  1102. (effects (font (size 1 1) (thickness 0.15)))
  1103. )
  1104. (fp_text value 74HC595 (at 3.81 20.11) (layer F.Fab)
  1105. (effects (font (size 1 1) (thickness 0.15)))
  1106. )
  1107. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  1108. (fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer F.Fab) (width 0.1))
  1109. (fp_line (start 6.985 19.05) (end 0.635 19.05) (layer F.Fab) (width 0.1))
  1110. (fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  1111. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  1112. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  1113. (fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer F.SilkS) (width 0.12))
  1114. (fp_line (start 1.16 19.11) (end 6.46 19.11) (layer F.SilkS) (width 0.12))
  1115. (fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  1116. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  1117. (fp_line (start -1.1 -1.55) (end -1.1 19.3) (layer F.CrtYd) (width 0.05))
  1118. (fp_line (start -1.1 19.3) (end 8.7 19.3) (layer F.CrtYd) (width 0.05))
  1119. (fp_line (start 8.7 19.3) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  1120. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  1121. (fp_text user %R (at 3.81 8.89) (layer F.Fab)
  1122. (effects (font (size 1 1) (thickness 0.15)))
  1123. )
  1124. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  1125. (pad 16 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1126. (net 10 VCC))
  1127. (pad 8 thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1128. (net 2 GND))
  1129. (pad 15 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1130. (net 65 /SIPO_O_1))
  1131. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1132. (net 49 /SIPO_O_8))
  1133. (pad 14 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1134. (net 52 /SIPO_SER))
  1135. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1136. (net 51 /SIPO_O_7))
  1137. (pad 13 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1138. (net 58 /~SIPO_OE))
  1139. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1140. (net 66 /P24_11))
  1141. (pad 12 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1142. (net 59 /SIPO_RCLK))
  1143. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1144. (net 67 /P24_13))
  1145. (pad 11 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1146. (net 64 /SIPO_CLK))
  1147. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1148. (net 68 /P24_14))
  1149. (pad 10 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1150. (net 63 /~SIPO_CLR))
  1151. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1152. (net 69 /P24_23))
  1153. (pad 9 thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1154. (net 26 "Net-(U2-Pad9)"))
  1155. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1156. (net 70 /SIPO_O_2))
  1157. (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl
  1158. (at (xyz 0 0 0))
  1159. (scale (xyz 1 1 1))
  1160. (rotate (xyz 0 0 0))
  1161. )
  1162. )
  1163. (module Package_DIP:DIP-28_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 5E56FC53)
  1164. (at 43.18 106.68)
  1165. (descr "28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
  1166. (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
  1167. (path /5E54C24B)
  1168. (fp_text reference U1 (at 3.81 -2.33) (layer F.SilkS)
  1169. (effects (font (size 1 1) (thickness 0.15)))
  1170. )
  1171. (fp_text value ATmega8A-PU (at 3.81 35.35) (layer F.Fab)
  1172. (effects (font (size 1 1) (thickness 0.15)))
  1173. )
  1174. (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
  1175. (fp_line (start 6.985 -1.27) (end 6.985 34.29) (layer F.Fab) (width 0.1))
  1176. (fp_line (start 6.985 34.29) (end 0.635 34.29) (layer F.Fab) (width 0.1))
  1177. (fp_line (start 0.635 34.29) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
  1178. (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
  1179. (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
  1180. (fp_line (start 1.16 -1.33) (end 1.16 34.35) (layer F.SilkS) (width 0.12))
  1181. (fp_line (start 1.16 34.35) (end 6.46 34.35) (layer F.SilkS) (width 0.12))
  1182. (fp_line (start 6.46 34.35) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
  1183. (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
  1184. (fp_line (start -1.1 -1.55) (end -1.1 34.55) (layer F.CrtYd) (width 0.05))
  1185. (fp_line (start -1.1 34.55) (end 8.7 34.55) (layer F.CrtYd) (width 0.05))
  1186. (fp_line (start 8.7 34.55) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
  1187. (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
  1188. (fp_text user %R (at 3.81 16.51) (layer F.Fab)
  1189. (effects (font (size 1 1) (thickness 0.15)))
  1190. )
  1191. (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
  1192. (pad 28 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1193. (net 29 "Net-(D5-Pad2)"))
  1194. (pad 14 thru_hole oval (at 0 33.02) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1195. (net 52 /SIPO_SER))
  1196. (pad 27 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1197. (net 27 "Net-(D4-Pad2)"))
  1198. (pad 13 thru_hole oval (at 0 30.48) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1199. (net 53 "Net-(U1-Pad13)"))
  1200. (pad 26 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1201. (net 54 "Net-(U1-Pad26)"))
  1202. (pad 12 thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1203. (net 55 /PISO_SER))
  1204. (pad 25 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1205. (net 56 "Net-(U1-Pad25)"))
  1206. (pad 11 thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1207. (net 57 /PISO_CLK))
  1208. (pad 24 thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1209. (net 58 /~SIPO_OE))
  1210. (pad 10 thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1211. (net 3 /XTAL2))
  1212. (pad 23 thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1213. (net 59 /SIPO_RCLK))
  1214. (pad 9 thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1215. (net 1 /XTAL1))
  1216. (pad 22 thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1217. (net 2 GND))
  1218. (pad 8 thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1219. (net 2 GND))
  1220. (pad 21 thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1221. (net 10 VCC))
  1222. (pad 7 thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1223. (net 10 VCC))
  1224. (pad 20 thru_hole oval (at 7.62 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1225. (net 10 VCC))
  1226. (pad 6 thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1227. (net 60 /PISO_INH))
  1228. (pad 19 thru_hole oval (at 7.62 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1229. (net 14 /SCK))
  1230. (pad 5 thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1231. (net 61 /PISO_SH))
  1232. (pad 18 thru_hole oval (at 7.62 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1233. (net 19 /MISO))
  1234. (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1235. (net 62 /~PISO_CLR))
  1236. (pad 17 thru_hole oval (at 7.62 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1237. (net 18 /MOSI))
  1238. (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1239. (net 24 /TTL-TX))
  1240. (pad 16 thru_hole oval (at 7.62 30.48) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1241. (net 63 /~SIPO_CLR))
  1242. (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1243. (net 25 /TTL-RX))
  1244. (pad 15 thru_hole oval (at 7.62 33.02) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1245. (net 64 /SIPO_CLK))
  1246. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  1247. (net 5 /~RESET))
  1248. (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-28_W7.62mm.wrl
  1249. (at (xyz 0 0 0))
  1250. (scale (xyz 1 1 1))
  1251. (rotate (xyz 0 0 0))
  1252. )
  1253. )
  1254. (module Button_Switch_THT:SW_Slide_1P2T_CK_OS102011MS2Q (layer F.Cu) (tedit 5C5044D5) (tstamp 5E56FC23)
  1255. (at 92.71 73.66)
  1256. (descr "CuK miniature slide switch, OS series, SPDT, https://www.ckswitches.com/media/1428/os.pdf")
  1257. (tags "switch SPDT")
  1258. (path /5E9B483E)
  1259. (fp_text reference SW2 (at 1.27 3.81) (layer F.SilkS)
  1260. (effects (font (size 1 1) (thickness 0.15)))
  1261. )
  1262. (fp_text value Power (at 2 3) (layer F.Fab)
  1263. (effects (font (size 1 1) (thickness 0.15)))
  1264. )
  1265. (fp_line (start 0.5 -2.15) (end 6.3 -2.15) (layer F.Fab) (width 0.1))
  1266. (fp_line (start 6.3 -2.15) (end 6.3 2.15) (layer F.Fab) (width 0.1))
  1267. (fp_line (start 6.3 2.15) (end -2.3 2.15) (layer F.Fab) (width 0.1))
  1268. (fp_line (start -2.3 2.15) (end -2.3 -2.15) (layer F.Fab) (width 0.1))
  1269. (fp_line (start 0 -1) (end 4 -1) (layer F.Fab) (width 0.1))
  1270. (fp_line (start 4 -1) (end 4 1) (layer F.Fab) (width 0.1))
  1271. (fp_line (start 0 1) (end 4 1) (layer F.Fab) (width 0.1))
  1272. (fp_line (start 0 -1) (end 0 1) (layer F.Fab) (width 0.1))
  1273. (fp_line (start 0.66 -1) (end 0.66 1) (layer F.Fab) (width 0.1))
  1274. (fp_line (start 1.34 -1) (end 1.34 1) (layer F.Fab) (width 0.1))
  1275. (fp_line (start 2 -1) (end 2 1) (layer F.Fab) (width 0.1))
  1276. (fp_line (start -2.3 -2.15) (end -0.5 -2.15) (layer F.Fab) (width 0.1))
  1277. (fp_line (start -2.41 -2.26) (end 6.41 -2.26) (layer F.SilkS) (width 0.12))
  1278. (fp_line (start 6.41 -2.26) (end 6.41 -1.95) (layer F.SilkS) (width 0.12))
  1279. (fp_line (start 6.41 2.26) (end -2.41 2.26) (layer F.SilkS) (width 0.12))
  1280. (fp_line (start -2.41 -1.95) (end -2.41 -2.26) (layer F.SilkS) (width 0.12))
  1281. (fp_line (start -2.41 2.26) (end -2.41 1.95) (layer F.SilkS) (width 0.12))
  1282. (fp_line (start 6.41 2.26) (end 6.41 1.95) (layer F.SilkS) (width 0.12))
  1283. (fp_line (start -3.45 -2.4) (end 7.45 -2.4) (layer B.CrtYd) (width 0.05))
  1284. (fp_line (start 7.45 -2.4) (end 7.45 2.4) (layer B.CrtYd) (width 0.05))
  1285. (fp_line (start 7.45 2.4) (end -3.45 2.4) (layer B.CrtYd) (width 0.05))
  1286. (fp_line (start -3.45 2.4) (end -3.45 -2.4) (layer B.CrtYd) (width 0.05))
  1287. (fp_line (start -0.5 -2.15) (end 0 -1.65) (layer F.Fab) (width 0.1))
  1288. (fp_line (start 0 -1.65) (end 0.5 -2.15) (layer F.Fab) (width 0.1))
  1289. (fp_line (start -0.5 -2.96) (end 0 -2.46) (layer F.SilkS) (width 0.12))
  1290. (fp_line (start 0 -2.46) (end 0.5 -2.96) (layer F.SilkS) (width 0.12))
  1291. (fp_line (start 0.5 -2.96) (end -0.5 -2.96) (layer F.SilkS) (width 0.12))
  1292. (fp_text user %R (at 3.99 -2.99) (layer F.Fab)
  1293. (effects (font (size 1 1) (thickness 0.15)))
  1294. )
  1295. (pad "" thru_hole oval (at 6.1 0) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask))
  1296. (pad "" thru_hole oval (at -2.1 0) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask))
  1297. (pad 3 thru_hole oval (at 4 0) (size 1.5 2.5) (drill 0.8) (layers *.Cu *.Mask))
  1298. (pad 2 thru_hole oval (at 2 0) (size 1.5 2.5) (drill 0.8) (layers *.Cu *.Mask)
  1299. (net 17 /SW_12V))
  1300. (pad 1 thru_hole rect (at 0 0) (size 1.5 2.5) (drill 0.8) (layers *.Cu *.Mask)
  1301. (net 23 +12V))
  1302. (model ${KISYS3DMOD}/Button_Switch_THT.3dshapes/SW_Slide_1P2T_CK_OS102011MS2Q.wrl
  1303. (at (xyz 0 0 0))
  1304. (scale (xyz 1 1 1))
  1305. (rotate (xyz 0 0 0))
  1306. )
  1307. )
  1308. (module Button_Switch_THT:SW_PUSH_6mm (layer F.Cu) (tedit 5A02FE31) (tstamp 5E56FBFE)
  1309. (at 29.21 101.6 90)
  1310. (descr https://www.omron.com/ecb/products/pdf/en-b3f.pdf)
  1311. (tags "tact sw push 6mm")
  1312. (path /5E57F8A0)
  1313. (fp_text reference SW1 (at 3.25 2.54 90) (layer F.SilkS)
  1314. (effects (font (size 1 1) (thickness 0.15)))
  1315. )
  1316. (fp_text value SW_Push (at 3.75 6.7 90) (layer F.Fab)
  1317. (effects (font (size 1 1) (thickness 0.15)))
  1318. )
  1319. (fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer F.Fab) (width 0.1))
  1320. (fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer F.Fab) (width 0.1))
  1321. (fp_line (start 6.25 5.25) (end 0.25 5.25) (layer F.Fab) (width 0.1))
  1322. (fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer F.Fab) (width 0.1))
  1323. (fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer F.Fab) (width 0.1))
  1324. (fp_line (start 7.75 6) (end 8 6) (layer F.CrtYd) (width 0.05))
  1325. (fp_line (start 8 6) (end 8 5.75) (layer F.CrtYd) (width 0.05))
  1326. (fp_line (start 7.75 -1.5) (end 8 -1.5) (layer F.CrtYd) (width 0.05))
  1327. (fp_line (start 8 -1.5) (end 8 -1.25) (layer F.CrtYd) (width 0.05))
  1328. (fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05))
  1329. (fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
  1330. (fp_line (start -1.5 5.75) (end -1.5 6) (layer F.CrtYd) (width 0.05))
  1331. (fp_line (start -1.5 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
  1332. (fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer F.CrtYd) (width 0.05))
  1333. (fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer F.CrtYd) (width 0.05))
  1334. (fp_line (start 7.75 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
  1335. (fp_line (start 8 -1.25) (end 8 5.75) (layer F.CrtYd) (width 0.05))
  1336. (fp_line (start 1 5.5) (end 5.5 5.5) (layer F.SilkS) (width 0.12))
  1337. (fp_line (start -0.25 1.5) (end -0.25 3) (layer F.SilkS) (width 0.12))
  1338. (fp_line (start 5.5 -1) (end 1 -1) (layer F.SilkS) (width 0.12))
  1339. (fp_line (start 6.75 3) (end 6.75 1.5) (layer F.SilkS) (width 0.12))
  1340. (fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer F.Fab) (width 0.1))
  1341. (fp_text user %R (at 3.25 2.25 90) (layer F.Fab)
  1342. (effects (font (size 1 1) (thickness 0.15)))
  1343. )
  1344. (pad 1 thru_hole circle (at 6.5 0 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
  1345. (net 2 GND))
  1346. (pad 2 thru_hole circle (at 6.5 4.5 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
  1347. (net 5 /~RESET))
  1348. (pad 1 thru_hole circle (at 0 0 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
  1349. (net 2 GND))
  1350. (pad 2 thru_hole circle (at 0 4.5 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
  1351. (net 5 /~RESET))
  1352. (model ${KISYS3DMOD}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl
  1353. (at (xyz 0 0 0))
  1354. (scale (xyz 1 1 1))
  1355. (rotate (xyz 0 0 0))
  1356. )
  1357. )
  1358. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FBDF)
  1359. (at 39.37 139.7 90)
  1360. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1361. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1362. (path /5E62742F)
  1363. (fp_text reference R18 (at 3.81 0 90) (layer F.SilkS)
  1364. (effects (font (size 1 1) (thickness 0.15)))
  1365. )
  1366. (fp_text value 1M (at 3.81 1.92 90) (layer F.Fab)
  1367. (effects (font (size 1 1) (thickness 0.15)))
  1368. )
  1369. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1370. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1371. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1372. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1373. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1374. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1375. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1376. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1377. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1378. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1379. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1380. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1381. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1382. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1383. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1384. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1385. (fp_text user %R (at 3.81 0 90) (layer F.Fab)
  1386. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1387. )
  1388. (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1389. (net 1 /XTAL1))
  1390. (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1391. (net 3 /XTAL2))
  1392. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1393. (at (xyz 0 0 0))
  1394. (scale (xyz 1 1 1))
  1395. (rotate (xyz 0 0 0))
  1396. )
  1397. )
  1398. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FBC8)
  1399. (at 128.27 104.14)
  1400. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1401. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1402. (path /5E97C0C0)
  1403. (fp_text reference R17 (at 3.81 0) (layer F.SilkS)
  1404. (effects (font (size 1 1) (thickness 0.15)))
  1405. )
  1406. (fp_text value 1.2K (at 3.81 1.92) (layer F.Fab)
  1407. (effects (font (size 1 1) (thickness 0.15)))
  1408. )
  1409. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1410. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1411. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1412. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1413. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1414. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1415. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1416. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1417. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1418. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1419. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1420. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1421. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1422. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1423. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1424. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1425. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1426. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1427. )
  1428. (pad 2 thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1429. (net 2 GND))
  1430. (pad 1 thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1431. (net 16 "Net-(D2-Pad1)"))
  1432. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1433. (at (xyz 0 0 0))
  1434. (scale (xyz 1 1 1))
  1435. (rotate (xyz 0 0 0))
  1436. )
  1437. )
  1438. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FBB1)
  1439. (at 27.94 106.68)
  1440. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1441. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1442. (path /5E6175C5)
  1443. (fp_text reference R16 (at 3.81 0) (layer F.SilkS)
  1444. (effects (font (size 1 1) (thickness 0.15)))
  1445. )
  1446. (fp_text value 680 (at 3.81 1.92) (layer F.Fab)
  1447. (effects (font (size 1 1) (thickness 0.15)))
  1448. )
  1449. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1450. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1451. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1452. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1453. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1454. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1455. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1456. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1457. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1458. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1459. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1460. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1461. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1462. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1463. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1464. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1465. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1466. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1467. )
  1468. (pad 2 thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1469. (net 2 GND))
  1470. (pad 1 thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1471. (net 15 "Net-(D1-Pad1)"))
  1472. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1473. (at (xyz 0 0 0))
  1474. (scale (xyz 1 1 1))
  1475. (rotate (xyz 0 0 0))
  1476. )
  1477. )
  1478. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FB9A)
  1479. (at 123.19 113.03)
  1480. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1481. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1482. (path /5E55A081)
  1483. (fp_text reference R15 (at 3.81 0) (layer F.SilkS)
  1484. (effects (font (size 1 1) (thickness 0.15)))
  1485. )
  1486. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1487. (effects (font (size 1 1) (thickness 0.15)))
  1488. )
  1489. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1490. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1491. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1492. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1493. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1494. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1495. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1496. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1497. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1498. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1499. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1500. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1501. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1502. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1503. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1504. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1505. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1506. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1507. )
  1508. (pad 2 thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1509. (net 5 /~RESET))
  1510. (pad 1 thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1511. (net 10 VCC))
  1512. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1513. (at (xyz 0 0 0))
  1514. (scale (xyz 1 1 1))
  1515. (rotate (xyz 0 0 0))
  1516. )
  1517. )
  1518. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FB83)
  1519. (at 123.19 133.35)
  1520. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1521. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1522. (path /5E554351)
  1523. (fp_text reference R8 (at 3.81 0) (layer F.SilkS)
  1524. (effects (font (size 1 1) (thickness 0.15)))
  1525. )
  1526. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1527. (effects (font (size 1 1) (thickness 0.15)))
  1528. )
  1529. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1530. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1531. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1532. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1533. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1534. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1535. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1536. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1537. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1538. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1539. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1540. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1541. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1542. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1543. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1544. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1545. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1546. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1547. )
  1548. (pad 2 thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1549. (net 50 /P20_12))
  1550. (pad 1 thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1551. (net 51 /SIPO_O_7))
  1552. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1553. (at (xyz 0 0 0))
  1554. (scale (xyz 1 1 1))
  1555. (rotate (xyz 0 0 0))
  1556. )
  1557. )
  1558. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FB6C)
  1559. (at 130.81 115.57 180)
  1560. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1561. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1562. (path /5E553DF6)
  1563. (fp_text reference R7 (at 3.81 0) (layer F.SilkS)
  1564. (effects (font (size 1 1) (thickness 0.15)))
  1565. )
  1566. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1567. (effects (font (size 1 1) (thickness 0.15)))
  1568. )
  1569. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1570. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1571. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1572. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1573. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1574. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1575. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1576. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1577. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1578. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1579. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1580. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1581. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1582. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1583. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1584. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1585. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1586. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1587. )
  1588. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1589. (net 48 /P20_19))
  1590. (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1591. (net 49 /SIPO_O_8))
  1592. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1593. (at (xyz 0 0 0))
  1594. (scale (xyz 1 1 1))
  1595. (rotate (xyz 0 0 0))
  1596. )
  1597. )
  1598. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FB55)
  1599. (at 130.81 130.81 180)
  1600. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1601. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1602. (path /5E553793)
  1603. (fp_text reference R6 (at 3.81 0) (layer F.SilkS)
  1604. (effects (font (size 1 1) (thickness 0.15)))
  1605. )
  1606. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1607. (effects (font (size 1 1) (thickness 0.15)))
  1608. )
  1609. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1610. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1611. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1612. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1613. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1614. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1615. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1616. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1617. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1618. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1619. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1620. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1621. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1622. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1623. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1624. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1625. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1626. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1627. )
  1628. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1629. (net 46 /P20_13))
  1630. (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1631. (net 47 /SIPO_O_9))
  1632. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1633. (at (xyz 0 0 0))
  1634. (scale (xyz 1 1 1))
  1635. (rotate (xyz 0 0 0))
  1636. )
  1637. )
  1638. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FB3E)
  1639. (at 130.81 128.27 180)
  1640. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1641. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1642. (path /5E553248)
  1643. (fp_text reference R5 (at 3.81 0) (layer F.SilkS)
  1644. (effects (font (size 1 1) (thickness 0.15)))
  1645. )
  1646. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1647. (effects (font (size 1 1) (thickness 0.15)))
  1648. )
  1649. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1650. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1651. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1652. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1653. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1654. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1655. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1656. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1657. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1658. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1659. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1660. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1661. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1662. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1663. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1664. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1665. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1666. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1667. )
  1668. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1669. (net 44 /P20_14))
  1670. (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1671. (net 45 /SIPO_O_10))
  1672. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1673. (at (xyz 0 0 0))
  1674. (scale (xyz 1 1 1))
  1675. (rotate (xyz 0 0 0))
  1676. )
  1677. )
  1678. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FB27)
  1679. (at 123.19 125.73)
  1680. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1681. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1682. (path /5E552DE4)
  1683. (fp_text reference R4 (at 3.81 0) (layer F.SilkS)
  1684. (effects (font (size 1 1) (thickness 0.15)))
  1685. )
  1686. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1687. (effects (font (size 1 1) (thickness 0.15)))
  1688. )
  1689. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1690. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1691. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1692. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1693. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1694. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1695. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1696. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1697. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1698. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1699. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1700. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1701. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1702. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1703. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1704. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1705. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1706. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1707. )
  1708. (pad 2 thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1709. (net 42 /P20_15))
  1710. (pad 1 thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1711. (net 43 /SIPO_O_11))
  1712. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1713. (at (xyz 0 0 0))
  1714. (scale (xyz 1 1 1))
  1715. (rotate (xyz 0 0 0))
  1716. )
  1717. )
  1718. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FB10)
  1719. (at 130.81 123.19 180)
  1720. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1721. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1722. (path /5E5527C9)
  1723. (fp_text reference R3 (at 3.81 0) (layer F.SilkS)
  1724. (effects (font (size 1 1) (thickness 0.15)))
  1725. )
  1726. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1727. (effects (font (size 1 1) (thickness 0.15)))
  1728. )
  1729. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1730. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1731. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1732. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1733. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1734. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1735. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1736. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1737. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1738. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1739. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1740. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1741. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1742. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1743. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1744. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1745. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1746. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1747. )
  1748. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1749. (net 40 /P20_16))
  1750. (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1751. (net 41 /SIPO_O_12))
  1752. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1753. (at (xyz 0 0 0))
  1754. (scale (xyz 1 1 1))
  1755. (rotate (xyz 0 0 0))
  1756. )
  1757. )
  1758. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FAF9)
  1759. (at 130.81 120.65 180)
  1760. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1761. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1762. (path /5E552336)
  1763. (fp_text reference R2 (at 3.81 0) (layer F.SilkS)
  1764. (effects (font (size 1 1) (thickness 0.15)))
  1765. )
  1766. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1767. (effects (font (size 1 1) (thickness 0.15)))
  1768. )
  1769. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1770. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1771. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1772. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1773. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1774. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1775. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1776. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1777. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1778. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1779. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1780. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1781. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1782. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1783. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1784. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1785. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1786. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1787. )
  1788. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1789. (net 38 /P20_17))
  1790. (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1791. (net 39 /SIPO_O_13))
  1792. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1793. (at (xyz 0 0 0))
  1794. (scale (xyz 1 1 1))
  1795. (rotate (xyz 0 0 0))
  1796. )
  1797. )
  1798. (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5E56FAE2)
  1799. (at 130.81 118.11 180)
  1800. (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
  1801. (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
  1802. (path /5E551CDC)
  1803. (fp_text reference R1 (at 3.81 0) (layer F.SilkS)
  1804. (effects (font (size 1 1) (thickness 0.15)))
  1805. )
  1806. (fp_text value 10K (at 3.81 1.92) (layer F.Fab)
  1807. (effects (font (size 1 1) (thickness 0.15)))
  1808. )
  1809. (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
  1810. (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
  1811. (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
  1812. (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
  1813. (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
  1814. (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
  1815. (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
  1816. (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
  1817. (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
  1818. (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
  1819. (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
  1820. (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
  1821. (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
  1822. (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
  1823. (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
  1824. (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
  1825. (fp_text user %R (at 3.81 0) (layer F.Fab)
  1826. (effects (font (size 0.72 0.72) (thickness 0.108)))
  1827. )
  1828. (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1829. (net 36 /P20_18))
  1830. (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
  1831. (net 37 /SIPO_O_14))
  1832. (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
  1833. (at (xyz 0 0 0))
  1834. (scale (xyz 1 1 1))
  1835. (rotate (xyz 0 0 0))
  1836. )
  1837. )
  1838. (module Connector_BarrelJack:BarrelJack_Horizontal (layer F.Cu) (tedit 5A1DBF6A) (tstamp 5E56FACB)
  1839. (at 81.28 78.74 270)
  1840. (descr "DC Barrel Jack")
  1841. (tags "Power Jack")
  1842. (path /5E9B6738)
  1843. (fp_text reference J3 (at -8.45 5.75 90) (layer F.SilkS)
  1844. (effects (font (size 1 1) (thickness 0.15)))
  1845. )
  1846. (fp_text value "Power IN" (at -6.2 -5.5 90) (layer F.Fab)
  1847. (effects (font (size 1 1) (thickness 0.15)))
  1848. )
  1849. (fp_line (start -0.003213 -4.505425) (end 0.8 -3.75) (layer F.Fab) (width 0.1))
  1850. (fp_line (start 1.1 -3.75) (end 1.1 -4.8) (layer F.SilkS) (width 0.12))
  1851. (fp_line (start 0.05 -4.8) (end 1.1 -4.8) (layer F.SilkS) (width 0.12))
  1852. (fp_line (start 1 -4.5) (end 1 -4.75) (layer F.CrtYd) (width 0.05))
  1853. (fp_line (start 1 -4.75) (end -14 -4.75) (layer F.CrtYd) (width 0.05))
  1854. (fp_line (start 1 -4.5) (end 1 -2) (layer F.CrtYd) (width 0.05))
  1855. (fp_line (start 1 -2) (end 2 -2) (layer F.CrtYd) (width 0.05))
  1856. (fp_line (start 2 -2) (end 2 2) (layer F.CrtYd) (width 0.05))
  1857. (fp_line (start 2 2) (end 1 2) (layer F.CrtYd) (width 0.05))
  1858. (fp_line (start 1 2) (end 1 4.75) (layer F.CrtYd) (width 0.05))
  1859. (fp_line (start 1 4.75) (end -1 4.75) (layer F.CrtYd) (width 0.05))
  1860. (fp_line (start -1 4.75) (end -1 6.75) (layer F.CrtYd) (width 0.05))
  1861. (fp_line (start -1 6.75) (end -5 6.75) (layer F.CrtYd) (width 0.05))
  1862. (fp_line (start -5 6.75) (end -5 4.75) (layer F.CrtYd) (width 0.05))
  1863. (fp_line (start -5 4.75) (end -14 4.75) (layer F.CrtYd) (width 0.05))
  1864. (fp_line (start -14 4.75) (end -14 -4.75) (layer F.CrtYd) (width 0.05))
  1865. (fp_line (start -5 4.6) (end -13.8 4.6) (layer F.SilkS) (width 0.12))
  1866. (fp_line (start -13.8 4.6) (end -13.8 -4.6) (layer F.SilkS) (width 0.12))
  1867. (fp_line (start 0.9 1.9) (end 0.9 4.6) (layer F.SilkS) (width 0.12))
  1868. (fp_line (start 0.9 4.6) (end -1 4.6) (layer F.SilkS) (width 0.12))
  1869. (fp_line (start -13.8 -4.6) (end 0.9 -4.6) (layer F.SilkS) (width 0.12))
  1870. (fp_line (start 0.9 -4.6) (end 0.9 -2) (layer F.SilkS) (width 0.12))
  1871. (fp_line (start -10.2 -4.5) (end -10.2 4.5) (layer F.Fab) (width 0.1))
  1872. (fp_line (start -13.7 -4.5) (end -13.7 4.5) (layer F.Fab) (width 0.1))
  1873. (fp_line (start -13.7 4.5) (end 0.8 4.5) (layer F.Fab) (width 0.1))
  1874. (fp_line (start 0.8 4.5) (end 0.8 -3.75) (layer F.Fab) (width 0.1))
  1875. (fp_line (start 0 -4.5) (end -13.7 -4.5) (layer F.Fab) (width 0.1))
  1876. (fp_text user %R (at -3 -2.95 90) (layer F.Fab)
  1877. (effects (font (size 1 1) (thickness 0.15)))
  1878. )
  1879. (pad 3 thru_hole roundrect (at -3 4.7 270) (size 3.5 3.5) (drill oval 3 1) (layers *.Cu *.Mask) (roundrect_rratio 0.25))
  1880. (pad 2 thru_hole roundrect (at -6 0 270) (size 3 3.5) (drill oval 1 3) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
  1881. (net 2 GND))
  1882. (pad 1 thru_hole rect (at 0 0 270) (size 3.5 3.5) (drill oval 1 3) (layers *.Cu *.Mask)
  1883. (net 23 +12V))
  1884. (model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_Horizontal.wrl
  1885. (at (xyz 0 0 0))
  1886. (scale (xyz 1 1 1))
  1887. (rotate (xyz 0 0 0))
  1888. )
  1889. )
  1890. (module Connector_Dsub:DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm (layer F.Cu) (tedit 59FEDEE2) (tstamp 5E56FAA8)
  1891. (at 38.1 74.93 180)
  1892. (descr "9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf")
  1893. (tags "9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm")
  1894. (path /5E7952D5)
  1895. (fp_text reference J2 (at -5.54 -3.7) (layer F.SilkS)
  1896. (effects (font (size 1 1) (thickness 0.15)))
  1897. )
  1898. (fp_text value RS232 (at -5.54 15.85) (layer F.Fab)
  1899. (effects (font (size 1 1) (thickness 0.15)))
  1900. )
  1901. (fp_line (start -20.965 -2.7) (end -20.965 7.78) (layer F.Fab) (width 0.1))
  1902. (fp_line (start -20.965 7.78) (end 9.885 7.78) (layer F.Fab) (width 0.1))
  1903. (fp_line (start 9.885 7.78) (end 9.885 -2.7) (layer F.Fab) (width 0.1))
  1904. (fp_line (start 9.885 -2.7) (end -20.965 -2.7) (layer F.Fab) (width 0.1))
  1905. (fp_line (start -20.965 7.78) (end -20.965 8.18) (layer F.Fab) (width 0.1))
  1906. (fp_line (start -20.965 8.18) (end 9.885 8.18) (layer F.Fab) (width 0.1))
  1907. (fp_line (start 9.885 8.18) (end 9.885 7.78) (layer F.Fab) (width 0.1))
  1908. (fp_line (start 9.885 7.78) (end -20.965 7.78) (layer F.Fab) (width 0.1))
  1909. (fp_line (start -13.69 8.18) (end -13.69 14.35) (layer F.Fab) (width 0.1))
  1910. (fp_line (start -13.69 14.35) (end 2.61 14.35) (layer F.Fab) (width 0.1))
  1911. (fp_line (start 2.61 14.35) (end 2.61 8.18) (layer F.Fab) (width 0.1))
  1912. (fp_line (start 2.61 8.18) (end -13.69 8.18) (layer F.Fab) (width 0.1))
  1913. (fp_line (start -20.54 8.18) (end -20.54 13.18) (layer F.Fab) (width 0.1))
  1914. (fp_line (start -20.54 13.18) (end -15.54 13.18) (layer F.Fab) (width 0.1))
  1915. (fp_line (start -15.54 13.18) (end -15.54 8.18) (layer F.Fab) (width 0.1))
  1916. (fp_line (start -15.54 8.18) (end -20.54 8.18) (layer F.Fab) (width 0.1))
  1917. (fp_line (start 4.46 8.18) (end 4.46 13.18) (layer F.Fab) (width 0.1))
  1918. (fp_line (start 4.46 13.18) (end 9.46 13.18) (layer F.Fab) (width 0.1))
  1919. (fp_line (start 9.46 13.18) (end 9.46 8.18) (layer F.Fab) (width 0.1))
  1920. (fp_line (start 9.46 8.18) (end 4.46 8.18) (layer F.Fab) (width 0.1))
  1921. (fp_line (start -19.64 7.78) (end -19.64 0.3) (layer F.Fab) (width 0.1))
  1922. (fp_line (start -16.44 7.78) (end -16.44 0.3) (layer F.Fab) (width 0.1))
  1923. (fp_line (start 5.36 7.78) (end 5.36 0.3) (layer F.Fab) (width 0.1))
  1924. (fp_line (start 8.56 7.78) (end 8.56 0.3) (layer F.Fab) (width 0.1))
  1925. (fp_line (start -21.025 7.72) (end -21.025 -2.76) (layer F.SilkS) (width 0.12))
  1926. (fp_line (start -21.025 -2.76) (end 9.945 -2.76) (layer F.SilkS) (width 0.12))
  1927. (fp_line (start 9.945 -2.76) (end 9.945 7.72) (layer F.SilkS) (width 0.12))
  1928. (fp_line (start -0.25 -3.654338) (end 0.25 -3.654338) (layer F.SilkS) (width 0.12))
  1929. (fp_line (start 0.25 -3.654338) (end 0 -3.221325) (layer F.SilkS) (width 0.12))
  1930. (fp_line (start 0 -3.221325) (end -0.25 -3.654338) (layer F.SilkS) (width 0.12))
  1931. (fp_line (start -21.5 -3.25) (end -21.5 14.85) (layer F.CrtYd) (width 0.05))
  1932. (fp_line (start -21.5 14.85) (end 10.4 14.85) (layer F.CrtYd) (width 0.05))
  1933. (fp_line (start 10.4 14.85) (end 10.4 -3.25) (layer F.CrtYd) (width 0.05))
  1934. (fp_line (start 10.4 -3.25) (end -21.5 -3.25) (layer F.CrtYd) (width 0.05))
  1935. (fp_text user %R (at -5.54 11.265) (layer F.Fab)
  1936. (effects (font (size 1 1) (thickness 0.15)))
  1937. )
  1938. (fp_arc (start 6.96 0.3) (end 5.36 0.3) (angle 180) (layer F.Fab) (width 0.1))
  1939. (fp_arc (start -18.04 0.3) (end -19.64 0.3) (angle 180) (layer F.Fab) (width 0.1))
  1940. (pad 0 thru_hole circle (at 6.96 0.3 180) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)
  1941. (net 2 GND))
  1942. (pad 0 thru_hole circle (at -18.04 0.3 180) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)
  1943. (net 2 GND))
  1944. (pad 9 thru_hole circle (at -9.695 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1945. (net 31 "Net-(J2-Pad9)"))
  1946. (pad 8 thru_hole circle (at -6.925 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1947. (net 32 "Net-(J2-Pad8)"))
  1948. (pad 7 thru_hole circle (at -4.155 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1949. (net 33 "Net-(J2-Pad7)"))
  1950. (pad 6 thru_hole circle (at -1.385 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1951. (net 34 "Net-(J2-Pad6)"))
  1952. (pad 5 thru_hole circle (at -11.08 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1953. (net 2 GND))
  1954. (pad 4 thru_hole circle (at -8.31 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1955. (net 20 /RS232-DTR))
  1956. (pad 3 thru_hole circle (at -5.54 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1957. (net 21 /RS232-TX))
  1958. (pad 2 thru_hole circle (at -2.77 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1959. (net 22 /RS232-RX))
  1960. (pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
  1961. (net 35 "Net-(J2-Pad1)"))
  1962. (model ${KISYS3DMOD}/Connector_Dsub.3dshapes/DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm.wrl
  1963. (at (xyz 0 0 0))
  1964. (scale (xyz 1 1 1))
  1965. (rotate (xyz 0 0 0))
  1966. )
  1967. )
  1968. (module Connector_IDC:IDC-Header_2x03_P2.54mm_Vertical (layer F.Cu) (tedit 59DE0819) (tstamp 5E56FA74)
  1969. (at 33.02 123.19 180)
  1970. (descr "Through hole straight IDC box header, 2x03, 2.54mm pitch, double rows")
  1971. (tags "Through hole IDC box header THT 2x03 2.54mm double row")
  1972. (path /5E563421)
  1973. (fp_text reference J1 (at 5.08 2.54 90) (layer F.SilkS)
  1974. (effects (font (size 1 1) (thickness 0.15)))
  1975. )
  1976. (fp_text value AVR-ISP-6 (at 1.27 11.684) (layer F.Fab)
  1977. (effects (font (size 1 1) (thickness 0.15)))
  1978. )
  1979. (fp_line (start 5.695 -5.1) (end 5.695 10.18) (layer F.Fab) (width 0.1))
  1980. (fp_line (start 5.145 -4.56) (end 5.145 9.62) (layer F.Fab) (width 0.1))
  1981. (fp_line (start -3.155 -5.1) (end -3.155 10.18) (layer F.Fab) (width 0.1))
  1982. (fp_line (start -2.605 -4.56) (end -2.605 0.29) (layer F.Fab) (width 0.1))
  1983. (fp_line (start -2.605 4.79) (end -2.605 9.62) (layer F.Fab) (width 0.1))
  1984. (fp_line (start -2.605 0.29) (end -3.155 0.29) (layer F.Fab) (width 0.1))
  1985. (fp_line (start -2.605 4.79) (end -3.155 4.79) (layer F.Fab) (width 0.1))
  1986. (fp_line (start 5.695 -5.1) (end -3.155 -5.1) (layer F.Fab) (width 0.1))
  1987. (fp_line (start 5.145 -4.56) (end -2.605 -4.56) (layer F.Fab) (width 0.1))
  1988. (fp_line (start 5.695 10.18) (end -3.155 10.18) (layer F.Fab) (width 0.1))
  1989. (fp_line (start 5.145 9.62) (end -2.605 9.62) (layer F.Fab) (width 0.1))
  1990. (fp_line (start 5.695 -5.1) (end 5.145 -4.56) (layer F.Fab) (width 0.1))
  1991. (fp_line (start 5.695 10.18) (end 5.145 9.62) (layer F.Fab) (width 0.1))
  1992. (fp_line (start -3.155 -5.1) (end -2.605 -4.56) (layer F.Fab) (width 0.1))
  1993. (fp_line (start -3.155 10.18) (end -2.605 9.62) (layer F.Fab) (width 0.1))
  1994. (fp_line (start 5.95 -5.35) (end 5.95 10.43) (layer F.CrtYd) (width 0.05))
  1995. (fp_line (start 5.95 10.43) (end -3.41 10.43) (layer F.CrtYd) (width 0.05))
  1996. (fp_line (start -3.41 10.43) (end -3.41 -5.35) (layer F.CrtYd) (width 0.05))
  1997. (fp_line (start -3.41 -5.35) (end 5.95 -5.35) (layer F.CrtYd) (width 0.05))
  1998. (fp_line (start 5.945 -5.35) (end 5.945 10.43) (layer F.SilkS) (width 0.12))
  1999. (fp_line (start 5.945 10.43) (end -3.405 10.43) (layer F.SilkS) (width 0.12))
  2000. (fp_line (start -3.405 10.43) (end -3.405 -5.35) (layer F.SilkS) (width 0.12))
  2001. (fp_line (start -3.405 -5.35) (end 5.945 -5.35) (layer F.SilkS) (width 0.12))
  2002. (fp_line (start -3.655 -5.6) (end -3.655 -3.06) (layer F.SilkS) (width 0.12))
  2003. (fp_line (start -3.655 -5.6) (end -1.115 -5.6) (layer F.SilkS) (width 0.12))
  2004. (fp_text user %R (at 1.27 2.54) (layer F.Fab)
  2005. (effects (font (size 1 1) (thickness 0.15)))
  2006. )
  2007. (pad 6 thru_hole oval (at 2.54 5.08 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
  2008. (net 2 GND))
  2009. (pad 5 thru_hole oval (at 0 5.08 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
  2010. (net 5 /~RESET))
  2011. (pad 4 thru_hole oval (at 2.54 2.54 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
  2012. (net 18 /MOSI))
  2013. (pad 3 thru_hole oval (at 0 2.54 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
  2014. (net 14 /SCK))
  2015. (pad 2 thru_hole oval (at 2.54 0 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
  2016. (net 10 VCC))
  2017. (pad 1 thru_hole rect (at 0 0 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
  2018. (net 19 /MISO))
  2019. (model ${KISYS3DMOD}/Connector_IDC.3dshapes/IDC-Header_2x03_P2.54mm_Vertical.wrl
  2020. (at (xyz 0 0 0))
  2021. (scale (xyz 1 1 1))
  2022. (rotate (xyz 0 0 0))
  2023. )
  2024. )
  2025. (module Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal (layer F.Cu) (tedit 5AE50CD5) (tstamp 5E56FA50)
  2026. (at 123.19 40.64 180)
  2027. (descr "Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf")
  2028. (tags "Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm")
  2029. (path /5EA71F61)
  2030. (fp_text reference D3 (at 5.08 0) (layer F.SilkS)
  2031. (effects (font (size 1 1) (thickness 0.15)))
  2032. )
  2033. (fp_text value 1N4001 (at 5.08 2.47) (layer F.Fab)
  2034. (effects (font (size 1 1) (thickness 0.15)))
  2035. )
  2036. (fp_line (start 2.48 -1.35) (end 2.48 1.35) (layer F.Fab) (width 0.1))
  2037. (fp_line (start 2.48 1.35) (end 7.68 1.35) (layer F.Fab) (width 0.1))
  2038. (fp_line (start 7.68 1.35) (end 7.68 -1.35) (layer F.Fab) (width 0.1))
  2039. (fp_line (start 7.68 -1.35) (end 2.48 -1.35) (layer F.Fab) (width 0.1))
  2040. (fp_line (start 0 0) (end 2.48 0) (layer F.Fab) (width 0.1))
  2041. (fp_line (start 10.16 0) (end 7.68 0) (layer F.Fab) (width 0.1))
  2042. (fp_line (start 3.26 -1.35) (end 3.26 1.35) (layer F.Fab) (width 0.1))
  2043. (fp_line (start 3.36 -1.35) (end 3.36 1.35) (layer F.Fab) (width 0.1))
  2044. (fp_line (start 3.16 -1.35) (end 3.16 1.35) (layer F.Fab) (width 0.1))
  2045. (fp_line (start 2.36 -1.47) (end 2.36 1.47) (layer F.SilkS) (width 0.12))
  2046. (fp_line (start 2.36 1.47) (end 7.8 1.47) (layer F.SilkS) (width 0.12))
  2047. (fp_line (start 7.8 1.47) (end 7.8 -1.47) (layer F.SilkS) (width 0.12))
  2048. (fp_line (start 7.8 -1.47) (end 2.36 -1.47) (layer F.SilkS) (width 0.12))
  2049. (fp_line (start 1.34 0) (end 2.36 0) (layer F.SilkS) (width 0.12))
  2050. (fp_line (start 8.82 0) (end 7.8 0) (layer F.SilkS) (width 0.12))
  2051. (fp_line (start 3.26 -1.47) (end 3.26 1.47) (layer F.SilkS) (width 0.12))
  2052. (fp_line (start 3.38 -1.47) (end 3.38 1.47) (layer F.SilkS) (width 0.12))
  2053. (fp_line (start 3.14 -1.47) (end 3.14 1.47) (layer F.SilkS) (width 0.12))
  2054. (fp_line (start -1.35 -1.6) (end -1.35 1.6) (layer F.CrtYd) (width 0.05))
  2055. (fp_line (start -1.35 1.6) (end 11.51 1.6) (layer F.CrtYd) (width 0.05))
  2056. (fp_line (start 11.51 1.6) (end 11.51 -1.6) (layer F.CrtYd) (width 0.05))
  2057. (fp_line (start 11.51 -1.6) (end -1.35 -1.6) (layer F.CrtYd) (width 0.05))
  2058. (fp_text user K (at -2.54 0) (layer F.SilkS)
  2059. (effects (font (size 1 1) (thickness 0.15)))
  2060. )
  2061. (fp_text user K (at 0 -2.1) (layer F.Fab)
  2062. (effects (font (size 1 1) (thickness 0.15)))
  2063. )
  2064. (fp_text user %R (at 5.47 0) (layer F.Fab)
  2065. (effects (font (size 1 1) (thickness 0.15)))
  2066. )
  2067. (pad 2 thru_hole oval (at 10.16 0 180) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
  2068. (net 17 /SW_12V))
  2069. (pad 1 thru_hole rect (at 0 0 180) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
  2070. (net 13 /RECT_V12))
  2071. (model ${KISYS3DMOD}/Diode_THT.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.wrl
  2072. (at (xyz 0 0 0))
  2073. (scale (xyz 1 1 1))
  2074. (rotate (xyz 0 0 0))
  2075. )
  2076. )
  2077. (module LED_THT:LED_D2.0mm_W4.8mm_H2.5mm_FlatTop (layer F.Cu) (tedit 5880A862) (tstamp 5E56FA31)
  2078. (at 106.68 73.66 180)
  2079. (descr "LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf")
  2080. (tags "LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins")
  2081. (path /5E97C0B6)
  2082. (fp_text reference D2 (at 1.27 -2.54) (layer F.SilkS)
  2083. (effects (font (size 1 1) (thickness 0.15)))
  2084. )
  2085. (fp_text value POWER_LED (at 1.27 2.31) (layer F.Fab)
  2086. (effects (font (size 1 1) (thickness 0.15)))
  2087. )
  2088. (fp_circle (center 1.27 0) (end 2.27 0) (layer F.Fab) (width 0.1))
  2089. (fp_line (start -1.13 -1.25) (end -1.13 1.25) (layer F.Fab) (width 0.1))
  2090. (fp_line (start -1.13 1.25) (end 3.67 1.25) (layer F.Fab) (width 0.1))
  2091. (fp_line (start 3.67 1.25) (end 3.67 -1.25) (layer F.Fab) (width 0.1))
  2092. (fp_line (start 3.67 -1.25) (end -1.13 -1.25) (layer F.Fab) (width 0.1))
  2093. (fp_line (start -1.19 -1.31) (end 3.73 -1.31) (layer F.SilkS) (width 0.12))
  2094. (fp_line (start -1.19 1.31) (end 3.73 1.31) (layer F.SilkS) (width 0.12))
  2095. (fp_line (start -1.19 -1.31) (end -1.19 1.31) (layer F.SilkS) (width 0.12))
  2096. (fp_line (start 3.73 -1.31) (end 3.73 1.31) (layer F.SilkS) (width 0.12))
  2097. (fp_line (start -1.07 -1.31) (end -1.07 -1.08) (layer F.SilkS) (width 0.12))
  2098. (fp_line (start -1.07 1.08) (end -1.07 1.31) (layer F.SilkS) (width 0.12))
  2099. (fp_line (start -0.95 -1.31) (end -0.95 -1.08) (layer F.SilkS) (width 0.12))
  2100. (fp_line (start -0.95 1.08) (end -0.95 1.31) (layer F.SilkS) (width 0.12))
  2101. (fp_line (start -1.45 -1.6) (end -1.45 1.6) (layer F.CrtYd) (width 0.05))
  2102. (fp_line (start -1.45 1.6) (end 4 1.6) (layer F.CrtYd) (width 0.05))
  2103. (fp_line (start 4 1.6) (end 4 -1.6) (layer F.CrtYd) (width 0.05))
  2104. (fp_line (start 4 -1.6) (end -1.45 -1.6) (layer F.CrtYd) (width 0.05))
  2105. (pad 2 thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
  2106. (net 13 /RECT_V12))
  2107. (pad 1 thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
  2108. (net 16 "Net-(D2-Pad1)"))
  2109. (model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D2.0mm_W4.8mm_H2.5mm_FlatTop.wrl
  2110. (at (xyz 0 0 0))
  2111. (scale (xyz 1 1 1))
  2112. (rotate (xyz 0 0 0))
  2113. )
  2114. )
  2115. (module LED_THT:LED_D2.0mm_W4.8mm_H2.5mm_FlatTop (layer F.Cu) (tedit 5880A862) (tstamp 5E56FA1A)
  2116. (at 30.48 110.49)
  2117. (descr "LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf")
  2118. (tags "LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins")
  2119. (path /5E5FB132)
  2120. (fp_text reference D1 (at -2.54 0) (layer F.SilkS)
  2121. (effects (font (size 1 1) (thickness 0.15)))
  2122. )
  2123. (fp_text value DATA_LED (at 1.27 2.31) (layer F.Fab)
  2124. (effects (font (size 1 1) (thickness 0.15)))
  2125. )
  2126. (fp_circle (center 1.27 0) (end 2.27 0) (layer F.Fab) (width 0.1))
  2127. (fp_line (start -1.13 -1.25) (end -1.13 1.25) (layer F.Fab) (width 0.1))
  2128. (fp_line (start -1.13 1.25) (end 3.67 1.25) (layer F.Fab) (width 0.1))
  2129. (fp_line (start 3.67 1.25) (end 3.67 -1.25) (layer F.Fab) (width 0.1))
  2130. (fp_line (start 3.67 -1.25) (end -1.13 -1.25) (layer F.Fab) (width 0.1))
  2131. (fp_line (start -1.19 -1.31) (end 3.73 -1.31) (layer F.SilkS) (width 0.12))
  2132. (fp_line (start -1.19 1.31) (end 3.73 1.31) (layer F.SilkS) (width 0.12))
  2133. (fp_line (start -1.19 -1.31) (end -1.19 1.31) (layer F.SilkS) (width 0.12))
  2134. (fp_line (start 3.73 -1.31) (end 3.73 1.31) (layer F.SilkS) (width 0.12))
  2135. (fp_line (start -1.07 -1.31) (end -1.07 -1.08) (layer F.SilkS) (width 0.12))
  2136. (fp_line (start -1.07 1.08) (end -1.07 1.31) (layer F.SilkS) (width 0.12))
  2137. (fp_line (start -0.95 -1.31) (end -0.95 -1.08) (layer F.SilkS) (width 0.12))
  2138. (fp_line (start -0.95 1.08) (end -0.95 1.31) (layer F.SilkS) (width 0.12))
  2139. (fp_line (start -1.45 -1.6) (end -1.45 1.6) (layer F.CrtYd) (width 0.05))
  2140. (fp_line (start -1.45 1.6) (end 4 1.6) (layer F.CrtYd) (width 0.05))
  2141. (fp_line (start 4 1.6) (end 4 -1.6) (layer F.CrtYd) (width 0.05))
  2142. (fp_line (start 4 -1.6) (end -1.45 -1.6) (layer F.CrtYd) (width 0.05))
  2143. (pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
  2144. (net 14 /SCK))
  2145. (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
  2146. (net 15 "Net-(D1-Pad1)"))
  2147. (model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D2.0mm_W4.8mm_H2.5mm_FlatTop.wrl
  2148. (at (xyz 0 0 0))
  2149. (scale (xyz 1 1 1))
  2150. (rotate (xyz 0 0 0))
  2151. )
  2152. )
  2153. (module Capacitor_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56FA03)
  2154. (at 115.57 48.26 180)
  2155. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2156. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2157. (path /5E913D16)
  2158. (fp_text reference C15 (at 1.25 -3.75) (layer F.SilkS)
  2159. (effects (font (size 1 1) (thickness 0.15)))
  2160. )
  2161. (fp_text value 0.22uF (at 1.25 3.75) (layer F.Fab)
  2162. (effects (font (size 1 1) (thickness 0.15)))
  2163. )
  2164. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2165. (fp_circle (center 1.25 0) (end 3.87 0) (layer F.SilkS) (width 0.12))
  2166. (fp_circle (center 1.25 0) (end 4 0) (layer F.CrtYd) (width 0.05))
  2167. (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer F.Fab) (width 0.1))
  2168. (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer F.Fab) (width 0.1))
  2169. (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer F.SilkS) (width 0.12))
  2170. (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer F.SilkS) (width 0.12))
  2171. (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer F.SilkS) (width 0.12))
  2172. (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer F.SilkS) (width 0.12))
  2173. (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer F.SilkS) (width 0.12))
  2174. (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer F.SilkS) (width 0.12))
  2175. (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer F.SilkS) (width 0.12))
  2176. (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer F.SilkS) (width 0.12))
  2177. (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer F.SilkS) (width 0.12))
  2178. (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer F.SilkS) (width 0.12))
  2179. (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer F.SilkS) (width 0.12))
  2180. (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer F.SilkS) (width 0.12))
  2181. (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer F.SilkS) (width 0.12))
  2182. (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer F.SilkS) (width 0.12))
  2183. (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer F.SilkS) (width 0.12))
  2184. (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer F.SilkS) (width 0.12))
  2185. (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer F.SilkS) (width 0.12))
  2186. (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer F.SilkS) (width 0.12))
  2187. (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer F.SilkS) (width 0.12))
  2188. (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer F.SilkS) (width 0.12))
  2189. (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer F.SilkS) (width 0.12))
  2190. (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer F.SilkS) (width 0.12))
  2191. (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer F.SilkS) (width 0.12))
  2192. (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer F.SilkS) (width 0.12))
  2193. (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer F.SilkS) (width 0.12))
  2194. (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer F.SilkS) (width 0.12))
  2195. (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer F.SilkS) (width 0.12))
  2196. (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer F.SilkS) (width 0.12))
  2197. (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer F.SilkS) (width 0.12))
  2198. (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer F.SilkS) (width 0.12))
  2199. (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer F.SilkS) (width 0.12))
  2200. (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer F.SilkS) (width 0.12))
  2201. (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer F.SilkS) (width 0.12))
  2202. (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer F.SilkS) (width 0.12))
  2203. (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer F.SilkS) (width 0.12))
  2204. (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer F.SilkS) (width 0.12))
  2205. (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer F.SilkS) (width 0.12))
  2206. (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer F.SilkS) (width 0.12))
  2207. (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer F.SilkS) (width 0.12))
  2208. (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer F.SilkS) (width 0.12))
  2209. (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer F.SilkS) (width 0.12))
  2210. (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer F.SilkS) (width 0.12))
  2211. (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer F.SilkS) (width 0.12))
  2212. (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer F.SilkS) (width 0.12))
  2213. (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer F.SilkS) (width 0.12))
  2214. (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer F.SilkS) (width 0.12))
  2215. (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer F.SilkS) (width 0.12))
  2216. (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer F.SilkS) (width 0.12))
  2217. (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer F.SilkS) (width 0.12))
  2218. (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer F.SilkS) (width 0.12))
  2219. (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer F.SilkS) (width 0.12))
  2220. (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer F.SilkS) (width 0.12))
  2221. (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer F.SilkS) (width 0.12))
  2222. (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer F.SilkS) (width 0.12))
  2223. (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer F.SilkS) (width 0.12))
  2224. (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer F.SilkS) (width 0.12))
  2225. (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer F.SilkS) (width 0.12))
  2226. (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer F.SilkS) (width 0.12))
  2227. (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer F.SilkS) (width 0.12))
  2228. (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer F.SilkS) (width 0.12))
  2229. (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer F.SilkS) (width 0.12))
  2230. (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer F.SilkS) (width 0.12))
  2231. (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer F.SilkS) (width 0.12))
  2232. (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer F.SilkS) (width 0.12))
  2233. (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer F.SilkS) (width 0.12))
  2234. (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer F.SilkS) (width 0.12))
  2235. (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer F.SilkS) (width 0.12))
  2236. (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer F.SilkS) (width 0.12))
  2237. (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer F.SilkS) (width 0.12))
  2238. (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer F.SilkS) (width 0.12))
  2239. (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer F.SilkS) (width 0.12))
  2240. (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer F.SilkS) (width 0.12))
  2241. (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer F.SilkS) (width 0.12))
  2242. (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer F.SilkS) (width 0.12))
  2243. (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer F.SilkS) (width 0.12))
  2244. (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer F.SilkS) (width 0.12))
  2245. (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer F.SilkS) (width 0.12))
  2246. (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer F.SilkS) (width 0.12))
  2247. (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer F.SilkS) (width 0.12))
  2248. (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer F.SilkS) (width 0.12))
  2249. (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer F.SilkS) (width 0.12))
  2250. (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer F.SilkS) (width 0.12))
  2251. (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer F.SilkS) (width 0.12))
  2252. (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer F.SilkS) (width 0.12))
  2253. (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer F.SilkS) (width 0.12))
  2254. (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer F.SilkS) (width 0.12))
  2255. (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer F.SilkS) (width 0.12))
  2256. (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer F.SilkS) (width 0.12))
  2257. (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer F.SilkS) (width 0.12))
  2258. (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer F.SilkS) (width 0.12))
  2259. (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer F.SilkS) (width 0.12))
  2260. (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer F.SilkS) (width 0.12))
  2261. (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer F.SilkS) (width 0.12))
  2262. (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer F.SilkS) (width 0.12))
  2263. (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer F.SilkS) (width 0.12))
  2264. (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer F.SilkS) (width 0.12))
  2265. (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer F.SilkS) (width 0.12))
  2266. (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer F.SilkS) (width 0.12))
  2267. (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer F.SilkS) (width 0.12))
  2268. (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer F.SilkS) (width 0.12))
  2269. (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer F.SilkS) (width 0.12))
  2270. (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer F.SilkS) (width 0.12))
  2271. (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer F.SilkS) (width 0.12))
  2272. (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer F.SilkS) (width 0.12))
  2273. (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer F.SilkS) (width 0.12))
  2274. (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer F.SilkS) (width 0.12))
  2275. (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer F.SilkS) (width 0.12))
  2276. (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer F.SilkS) (width 0.12))
  2277. (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer F.SilkS) (width 0.12))
  2278. (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer F.SilkS) (width 0.12))
  2279. (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer F.SilkS) (width 0.12))
  2280. (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer F.SilkS) (width 0.12))
  2281. (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer F.SilkS) (width 0.12))
  2282. (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer F.SilkS) (width 0.12))
  2283. (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer F.SilkS) (width 0.12))
  2284. (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer F.SilkS) (width 0.12))
  2285. (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer F.SilkS) (width 0.12))
  2286. (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer F.SilkS) (width 0.12))
  2287. (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer F.SilkS) (width 0.12))
  2288. (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer F.SilkS) (width 0.12))
  2289. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2290. (effects (font (size 1 1) (thickness 0.15)))
  2291. )
  2292. (pad 2 thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2293. (net 2 GND))
  2294. (pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2295. (net 13 /RECT_V12))
  2296. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2297. (at (xyz 0 0 0))
  2298. (scale (xyz 1 1 1))
  2299. (rotate (xyz 0 0 0))
  2300. )
  2301. )
  2302. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F97F)
  2303. (at 45.72 85.09)
  2304. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  2305. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  2306. (path /5E8D0A0C)
  2307. (fp_text reference C14 (at 6.35 0) (layer F.SilkS)
  2308. (effects (font (size 1 1) (thickness 0.15)))
  2309. )
  2310. (fp_text value 100nF (at 1.25 2.3) (layer F.Fab)
  2311. (effects (font (size 1 1) (thickness 0.15)))
  2312. )
  2313. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  2314. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  2315. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  2316. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  2317. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  2318. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2319. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  2320. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  2321. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  2322. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2323. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  2324. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  2325. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  2326. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  2327. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2328. (effects (font (size 0.68 0.68) (thickness 0.102)))
  2329. )
  2330. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2331. (net 2 GND))
  2332. (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2333. (net 10 VCC))
  2334. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  2335. (at (xyz 0 0 0))
  2336. (scale (xyz 1 1 1))
  2337. (rotate (xyz 0 0 0))
  2338. )
  2339. )
  2340. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F96A)
  2341. (at 119.38 134.62 270)
  2342. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  2343. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  2344. (path /5E7F3122)
  2345. (fp_text reference C12 (at -3.81 0 90) (layer F.SilkS)
  2346. (effects (font (size 1 1) (thickness 0.15)))
  2347. )
  2348. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  2349. (effects (font (size 1 1) (thickness 0.15)))
  2350. )
  2351. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  2352. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  2353. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  2354. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  2355. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  2356. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2357. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  2358. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  2359. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  2360. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2361. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  2362. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  2363. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  2364. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  2365. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  2366. (effects (font (size 0.68 0.68) (thickness 0.102)))
  2367. )
  2368. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2369. (net 2 GND))
  2370. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2371. (net 10 VCC))
  2372. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  2373. (at (xyz 0 0 0))
  2374. (scale (xyz 1 1 1))
  2375. (rotate (xyz 0 0 0))
  2376. )
  2377. )
  2378. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F955)
  2379. (at 59.69 130.81 270)
  2380. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  2381. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  2382. (path /5E7F2A25)
  2383. (fp_text reference C11 (at 6.35 0 90) (layer F.SilkS)
  2384. (effects (font (size 1 1) (thickness 0.15)))
  2385. )
  2386. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  2387. (effects (font (size 1 1) (thickness 0.15)))
  2388. )
  2389. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  2390. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  2391. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  2392. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  2393. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  2394. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2395. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  2396. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  2397. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  2398. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2399. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  2400. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  2401. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  2402. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  2403. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  2404. (effects (font (size 0.68 0.68) (thickness 0.102)))
  2405. )
  2406. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2407. (net 2 GND))
  2408. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2409. (net 10 VCC))
  2410. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  2411. (at (xyz 0 0 0))
  2412. (scale (xyz 1 1 1))
  2413. (rotate (xyz 0 0 0))
  2414. )
  2415. )
  2416. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F940)
  2417. (at 162.56 46.99 270)
  2418. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  2419. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  2420. (path /5E7F2231)
  2421. (fp_text reference C10 (at 1.25 -2.3 90) (layer F.SilkS)
  2422. (effects (font (size 1 1) (thickness 0.15)))
  2423. )
  2424. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  2425. (effects (font (size 1 1) (thickness 0.15)))
  2426. )
  2427. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  2428. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  2429. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  2430. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  2431. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  2432. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2433. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  2434. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  2435. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  2436. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2437. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  2438. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  2439. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  2440. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  2441. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  2442. (effects (font (size 0.68 0.68) (thickness 0.102)))
  2443. )
  2444. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2445. (net 2 GND))
  2446. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2447. (net 10 VCC))
  2448. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  2449. (at (xyz 0 0 0))
  2450. (scale (xyz 1 1 1))
  2451. (rotate (xyz 0 0 0))
  2452. )
  2453. )
  2454. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F92B)
  2455. (at 46.99 129.54 270)
  2456. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  2457. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  2458. (path /5E7F1BCF)
  2459. (fp_text reference C9 (at 5.08 0 90) (layer F.SilkS)
  2460. (effects (font (size 1 1) (thickness 0.15)))
  2461. )
  2462. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  2463. (effects (font (size 1 1) (thickness 0.15)))
  2464. )
  2465. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  2466. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  2467. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  2468. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  2469. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  2470. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2471. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  2472. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  2473. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  2474. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2475. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  2476. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  2477. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  2478. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  2479. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  2480. (effects (font (size 0.68 0.68) (thickness 0.102)))
  2481. )
  2482. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2483. (net 2 GND))
  2484. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2485. (net 10 VCC))
  2486. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  2487. (at (xyz 0 0 0))
  2488. (scale (xyz 1 1 1))
  2489. (rotate (xyz 0 0 0))
  2490. )
  2491. )
  2492. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F916)
  2493. (at 59.69 107.95 270)
  2494. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  2495. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  2496. (path /5E7E35C9)
  2497. (fp_text reference C8 (at 6.35 0 90) (layer F.SilkS)
  2498. (effects (font (size 1 1) (thickness 0.15)))
  2499. )
  2500. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  2501. (effects (font (size 1 1) (thickness 0.15)))
  2502. )
  2503. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  2504. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  2505. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  2506. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  2507. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  2508. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2509. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  2510. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  2511. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  2512. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  2513. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  2514. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  2515. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  2516. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  2517. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  2518. (effects (font (size 0.68 0.68) (thickness 0.102)))
  2519. )
  2520. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2521. (net 2 GND))
  2522. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2523. (net 10 VCC))
  2524. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  2525. (at (xyz 0 0 0))
  2526. (scale (xyz 1 1 1))
  2527. (rotate (xyz 0 0 0))
  2528. )
  2529. )
  2530. (module Capacitor_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F901)
  2531. (at 53.34 96.52 90)
  2532. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2533. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2534. (path /5E724FBE)
  2535. (fp_text reference C7 (at 5.08 0) (layer F.SilkS)
  2536. (effects (font (size 1 1) (thickness 0.15)))
  2537. )
  2538. (fp_text value 1.0uF (at 1.25 3.75 90) (layer F.Fab)
  2539. (effects (font (size 1 1) (thickness 0.15)))
  2540. )
  2541. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2542. (fp_circle (center 1.25 0) (end 3.87 0) (layer F.SilkS) (width 0.12))
  2543. (fp_circle (center 1.25 0) (end 4 0) (layer F.CrtYd) (width 0.05))
  2544. (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer F.Fab) (width 0.1))
  2545. (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer F.Fab) (width 0.1))
  2546. (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer F.SilkS) (width 0.12))
  2547. (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer F.SilkS) (width 0.12))
  2548. (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer F.SilkS) (width 0.12))
  2549. (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer F.SilkS) (width 0.12))
  2550. (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer F.SilkS) (width 0.12))
  2551. (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer F.SilkS) (width 0.12))
  2552. (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer F.SilkS) (width 0.12))
  2553. (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer F.SilkS) (width 0.12))
  2554. (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer F.SilkS) (width 0.12))
  2555. (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer F.SilkS) (width 0.12))
  2556. (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer F.SilkS) (width 0.12))
  2557. (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer F.SilkS) (width 0.12))
  2558. (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer F.SilkS) (width 0.12))
  2559. (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer F.SilkS) (width 0.12))
  2560. (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer F.SilkS) (width 0.12))
  2561. (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer F.SilkS) (width 0.12))
  2562. (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer F.SilkS) (width 0.12))
  2563. (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer F.SilkS) (width 0.12))
  2564. (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer F.SilkS) (width 0.12))
  2565. (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer F.SilkS) (width 0.12))
  2566. (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer F.SilkS) (width 0.12))
  2567. (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer F.SilkS) (width 0.12))
  2568. (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer F.SilkS) (width 0.12))
  2569. (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer F.SilkS) (width 0.12))
  2570. (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer F.SilkS) (width 0.12))
  2571. (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer F.SilkS) (width 0.12))
  2572. (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer F.SilkS) (width 0.12))
  2573. (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer F.SilkS) (width 0.12))
  2574. (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer F.SilkS) (width 0.12))
  2575. (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer F.SilkS) (width 0.12))
  2576. (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer F.SilkS) (width 0.12))
  2577. (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer F.SilkS) (width 0.12))
  2578. (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer F.SilkS) (width 0.12))
  2579. (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer F.SilkS) (width 0.12))
  2580. (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer F.SilkS) (width 0.12))
  2581. (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer F.SilkS) (width 0.12))
  2582. (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer F.SilkS) (width 0.12))
  2583. (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer F.SilkS) (width 0.12))
  2584. (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer F.SilkS) (width 0.12))
  2585. (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer F.SilkS) (width 0.12))
  2586. (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer F.SilkS) (width 0.12))
  2587. (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer F.SilkS) (width 0.12))
  2588. (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer F.SilkS) (width 0.12))
  2589. (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer F.SilkS) (width 0.12))
  2590. (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer F.SilkS) (width 0.12))
  2591. (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer F.SilkS) (width 0.12))
  2592. (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer F.SilkS) (width 0.12))
  2593. (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer F.SilkS) (width 0.12))
  2594. (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer F.SilkS) (width 0.12))
  2595. (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer F.SilkS) (width 0.12))
  2596. (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer F.SilkS) (width 0.12))
  2597. (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer F.SilkS) (width 0.12))
  2598. (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer F.SilkS) (width 0.12))
  2599. (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer F.SilkS) (width 0.12))
  2600. (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer F.SilkS) (width 0.12))
  2601. (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer F.SilkS) (width 0.12))
  2602. (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer F.SilkS) (width 0.12))
  2603. (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer F.SilkS) (width 0.12))
  2604. (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer F.SilkS) (width 0.12))
  2605. (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer F.SilkS) (width 0.12))
  2606. (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer F.SilkS) (width 0.12))
  2607. (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer F.SilkS) (width 0.12))
  2608. (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer F.SilkS) (width 0.12))
  2609. (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer F.SilkS) (width 0.12))
  2610. (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer F.SilkS) (width 0.12))
  2611. (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer F.SilkS) (width 0.12))
  2612. (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer F.SilkS) (width 0.12))
  2613. (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer F.SilkS) (width 0.12))
  2614. (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer F.SilkS) (width 0.12))
  2615. (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer F.SilkS) (width 0.12))
  2616. (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer F.SilkS) (width 0.12))
  2617. (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer F.SilkS) (width 0.12))
  2618. (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer F.SilkS) (width 0.12))
  2619. (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer F.SilkS) (width 0.12))
  2620. (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer F.SilkS) (width 0.12))
  2621. (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer F.SilkS) (width 0.12))
  2622. (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer F.SilkS) (width 0.12))
  2623. (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer F.SilkS) (width 0.12))
  2624. (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer F.SilkS) (width 0.12))
  2625. (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer F.SilkS) (width 0.12))
  2626. (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer F.SilkS) (width 0.12))
  2627. (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer F.SilkS) (width 0.12))
  2628. (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer F.SilkS) (width 0.12))
  2629. (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer F.SilkS) (width 0.12))
  2630. (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer F.SilkS) (width 0.12))
  2631. (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer F.SilkS) (width 0.12))
  2632. (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer F.SilkS) (width 0.12))
  2633. (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer F.SilkS) (width 0.12))
  2634. (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer F.SilkS) (width 0.12))
  2635. (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer F.SilkS) (width 0.12))
  2636. (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer F.SilkS) (width 0.12))
  2637. (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer F.SilkS) (width 0.12))
  2638. (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer F.SilkS) (width 0.12))
  2639. (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer F.SilkS) (width 0.12))
  2640. (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer F.SilkS) (width 0.12))
  2641. (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer F.SilkS) (width 0.12))
  2642. (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer F.SilkS) (width 0.12))
  2643. (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer F.SilkS) (width 0.12))
  2644. (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer F.SilkS) (width 0.12))
  2645. (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer F.SilkS) (width 0.12))
  2646. (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer F.SilkS) (width 0.12))
  2647. (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer F.SilkS) (width 0.12))
  2648. (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer F.SilkS) (width 0.12))
  2649. (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer F.SilkS) (width 0.12))
  2650. (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer F.SilkS) (width 0.12))
  2651. (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer F.SilkS) (width 0.12))
  2652. (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer F.SilkS) (width 0.12))
  2653. (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer F.SilkS) (width 0.12))
  2654. (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer F.SilkS) (width 0.12))
  2655. (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer F.SilkS) (width 0.12))
  2656. (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer F.SilkS) (width 0.12))
  2657. (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer F.SilkS) (width 0.12))
  2658. (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer F.SilkS) (width 0.12))
  2659. (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer F.SilkS) (width 0.12))
  2660. (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer F.SilkS) (width 0.12))
  2661. (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer F.SilkS) (width 0.12))
  2662. (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer F.SilkS) (width 0.12))
  2663. (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer F.SilkS) (width 0.12))
  2664. (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer F.SilkS) (width 0.12))
  2665. (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer F.SilkS) (width 0.12))
  2666. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  2667. (effects (font (size 1 1) (thickness 0.15)))
  2668. )
  2669. (pad 2 thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2670. (net 12 "Net-(C7-Pad2)"))
  2671. (pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2672. (net 2 GND))
  2673. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2674. (at (xyz 0 0 0))
  2675. (scale (xyz 1 1 1))
  2676. (rotate (xyz 0 0 0))
  2677. )
  2678. )
  2679. (module Capacitor_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F87D)
  2680. (at 31.75 86.36 90)
  2681. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2682. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2683. (path /5E724760)
  2684. (fp_text reference C6 (at 1.25 -3.75 90) (layer F.SilkS)
  2685. (effects (font (size 1 1) (thickness 0.15)))
  2686. )
  2687. (fp_text value 1.0uF (at 1.25 3.75 90) (layer F.Fab)
  2688. (effects (font (size 1 1) (thickness 0.15)))
  2689. )
  2690. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2691. (fp_circle (center 1.25 0) (end 3.87 0) (layer F.SilkS) (width 0.12))
  2692. (fp_circle (center 1.25 0) (end 4 0) (layer F.CrtYd) (width 0.05))
  2693. (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer F.Fab) (width 0.1))
  2694. (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer F.Fab) (width 0.1))
  2695. (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer F.SilkS) (width 0.12))
  2696. (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer F.SilkS) (width 0.12))
  2697. (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer F.SilkS) (width 0.12))
  2698. (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer F.SilkS) (width 0.12))
  2699. (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer F.SilkS) (width 0.12))
  2700. (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer F.SilkS) (width 0.12))
  2701. (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer F.SilkS) (width 0.12))
  2702. (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer F.SilkS) (width 0.12))
  2703. (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer F.SilkS) (width 0.12))
  2704. (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer F.SilkS) (width 0.12))
  2705. (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer F.SilkS) (width 0.12))
  2706. (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer F.SilkS) (width 0.12))
  2707. (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer F.SilkS) (width 0.12))
  2708. (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer F.SilkS) (width 0.12))
  2709. (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer F.SilkS) (width 0.12))
  2710. (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer F.SilkS) (width 0.12))
  2711. (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer F.SilkS) (width 0.12))
  2712. (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer F.SilkS) (width 0.12))
  2713. (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer F.SilkS) (width 0.12))
  2714. (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer F.SilkS) (width 0.12))
  2715. (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer F.SilkS) (width 0.12))
  2716. (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer F.SilkS) (width 0.12))
  2717. (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer F.SilkS) (width 0.12))
  2718. (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer F.SilkS) (width 0.12))
  2719. (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer F.SilkS) (width 0.12))
  2720. (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer F.SilkS) (width 0.12))
  2721. (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer F.SilkS) (width 0.12))
  2722. (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer F.SilkS) (width 0.12))
  2723. (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer F.SilkS) (width 0.12))
  2724. (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer F.SilkS) (width 0.12))
  2725. (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer F.SilkS) (width 0.12))
  2726. (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer F.SilkS) (width 0.12))
  2727. (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer F.SilkS) (width 0.12))
  2728. (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer F.SilkS) (width 0.12))
  2729. (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer F.SilkS) (width 0.12))
  2730. (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer F.SilkS) (width 0.12))
  2731. (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer F.SilkS) (width 0.12))
  2732. (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer F.SilkS) (width 0.12))
  2733. (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer F.SilkS) (width 0.12))
  2734. (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer F.SilkS) (width 0.12))
  2735. (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer F.SilkS) (width 0.12))
  2736. (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer F.SilkS) (width 0.12))
  2737. (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer F.SilkS) (width 0.12))
  2738. (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer F.SilkS) (width 0.12))
  2739. (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer F.SilkS) (width 0.12))
  2740. (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer F.SilkS) (width 0.12))
  2741. (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer F.SilkS) (width 0.12))
  2742. (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer F.SilkS) (width 0.12))
  2743. (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer F.SilkS) (width 0.12))
  2744. (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer F.SilkS) (width 0.12))
  2745. (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer F.SilkS) (width 0.12))
  2746. (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer F.SilkS) (width 0.12))
  2747. (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer F.SilkS) (width 0.12))
  2748. (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer F.SilkS) (width 0.12))
  2749. (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer F.SilkS) (width 0.12))
  2750. (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer F.SilkS) (width 0.12))
  2751. (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer F.SilkS) (width 0.12))
  2752. (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer F.SilkS) (width 0.12))
  2753. (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer F.SilkS) (width 0.12))
  2754. (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer F.SilkS) (width 0.12))
  2755. (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer F.SilkS) (width 0.12))
  2756. (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer F.SilkS) (width 0.12))
  2757. (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer F.SilkS) (width 0.12))
  2758. (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer F.SilkS) (width 0.12))
  2759. (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer F.SilkS) (width 0.12))
  2760. (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer F.SilkS) (width 0.12))
  2761. (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer F.SilkS) (width 0.12))
  2762. (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer F.SilkS) (width 0.12))
  2763. (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer F.SilkS) (width 0.12))
  2764. (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer F.SilkS) (width 0.12))
  2765. (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer F.SilkS) (width 0.12))
  2766. (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer F.SilkS) (width 0.12))
  2767. (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer F.SilkS) (width 0.12))
  2768. (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer F.SilkS) (width 0.12))
  2769. (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer F.SilkS) (width 0.12))
  2770. (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer F.SilkS) (width 0.12))
  2771. (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer F.SilkS) (width 0.12))
  2772. (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer F.SilkS) (width 0.12))
  2773. (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer F.SilkS) (width 0.12))
  2774. (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer F.SilkS) (width 0.12))
  2775. (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer F.SilkS) (width 0.12))
  2776. (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer F.SilkS) (width 0.12))
  2777. (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer F.SilkS) (width 0.12))
  2778. (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer F.SilkS) (width 0.12))
  2779. (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer F.SilkS) (width 0.12))
  2780. (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer F.SilkS) (width 0.12))
  2781. (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer F.SilkS) (width 0.12))
  2782. (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer F.SilkS) (width 0.12))
  2783. (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer F.SilkS) (width 0.12))
  2784. (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer F.SilkS) (width 0.12))
  2785. (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer F.SilkS) (width 0.12))
  2786. (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer F.SilkS) (width 0.12))
  2787. (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer F.SilkS) (width 0.12))
  2788. (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer F.SilkS) (width 0.12))
  2789. (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer F.SilkS) (width 0.12))
  2790. (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer F.SilkS) (width 0.12))
  2791. (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer F.SilkS) (width 0.12))
  2792. (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer F.SilkS) (width 0.12))
  2793. (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer F.SilkS) (width 0.12))
  2794. (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer F.SilkS) (width 0.12))
  2795. (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer F.SilkS) (width 0.12))
  2796. (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer F.SilkS) (width 0.12))
  2797. (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer F.SilkS) (width 0.12))
  2798. (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer F.SilkS) (width 0.12))
  2799. (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer F.SilkS) (width 0.12))
  2800. (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer F.SilkS) (width 0.12))
  2801. (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer F.SilkS) (width 0.12))
  2802. (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer F.SilkS) (width 0.12))
  2803. (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer F.SilkS) (width 0.12))
  2804. (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer F.SilkS) (width 0.12))
  2805. (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer F.SilkS) (width 0.12))
  2806. (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer F.SilkS) (width 0.12))
  2807. (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer F.SilkS) (width 0.12))
  2808. (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer F.SilkS) (width 0.12))
  2809. (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer F.SilkS) (width 0.12))
  2810. (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer F.SilkS) (width 0.12))
  2811. (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer F.SilkS) (width 0.12))
  2812. (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer F.SilkS) (width 0.12))
  2813. (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer F.SilkS) (width 0.12))
  2814. (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer F.SilkS) (width 0.12))
  2815. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  2816. (effects (font (size 1 1) (thickness 0.15)))
  2817. )
  2818. (pad 2 thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2819. (net 10 VCC))
  2820. (pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2821. (net 11 "Net-(C6-Pad1)"))
  2822. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2823. (at (xyz 0 0 0))
  2824. (scale (xyz 1 1 1))
  2825. (rotate (xyz 0 0 0))
  2826. )
  2827. )
  2828. (module Capacitor_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F7F9)
  2829. (at 45.72 95.25)
  2830. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2831. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2832. (path /5E724078)
  2833. (fp_text reference C5 (at 1.25 -3.75) (layer F.SilkS)
  2834. (effects (font (size 1 1) (thickness 0.15)))
  2835. )
  2836. (fp_text value 1.0uF (at 1.25 3.75) (layer F.Fab)
  2837. (effects (font (size 1 1) (thickness 0.15)))
  2838. )
  2839. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2840. (fp_circle (center 1.25 0) (end 3.87 0) (layer F.SilkS) (width 0.12))
  2841. (fp_circle (center 1.25 0) (end 4 0) (layer F.CrtYd) (width 0.05))
  2842. (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer F.Fab) (width 0.1))
  2843. (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer F.Fab) (width 0.1))
  2844. (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer F.SilkS) (width 0.12))
  2845. (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer F.SilkS) (width 0.12))
  2846. (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer F.SilkS) (width 0.12))
  2847. (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer F.SilkS) (width 0.12))
  2848. (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer F.SilkS) (width 0.12))
  2849. (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer F.SilkS) (width 0.12))
  2850. (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer F.SilkS) (width 0.12))
  2851. (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer F.SilkS) (width 0.12))
  2852. (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer F.SilkS) (width 0.12))
  2853. (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer F.SilkS) (width 0.12))
  2854. (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer F.SilkS) (width 0.12))
  2855. (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer F.SilkS) (width 0.12))
  2856. (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer F.SilkS) (width 0.12))
  2857. (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer F.SilkS) (width 0.12))
  2858. (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer F.SilkS) (width 0.12))
  2859. (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer F.SilkS) (width 0.12))
  2860. (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer F.SilkS) (width 0.12))
  2861. (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer F.SilkS) (width 0.12))
  2862. (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer F.SilkS) (width 0.12))
  2863. (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer F.SilkS) (width 0.12))
  2864. (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer F.SilkS) (width 0.12))
  2865. (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer F.SilkS) (width 0.12))
  2866. (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer F.SilkS) (width 0.12))
  2867. (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer F.SilkS) (width 0.12))
  2868. (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer F.SilkS) (width 0.12))
  2869. (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer F.SilkS) (width 0.12))
  2870. (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer F.SilkS) (width 0.12))
  2871. (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer F.SilkS) (width 0.12))
  2872. (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer F.SilkS) (width 0.12))
  2873. (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer F.SilkS) (width 0.12))
  2874. (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer F.SilkS) (width 0.12))
  2875. (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer F.SilkS) (width 0.12))
  2876. (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer F.SilkS) (width 0.12))
  2877. (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer F.SilkS) (width 0.12))
  2878. (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer F.SilkS) (width 0.12))
  2879. (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer F.SilkS) (width 0.12))
  2880. (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer F.SilkS) (width 0.12))
  2881. (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer F.SilkS) (width 0.12))
  2882. (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer F.SilkS) (width 0.12))
  2883. (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer F.SilkS) (width 0.12))
  2884. (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer F.SilkS) (width 0.12))
  2885. (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer F.SilkS) (width 0.12))
  2886. (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer F.SilkS) (width 0.12))
  2887. (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer F.SilkS) (width 0.12))
  2888. (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer F.SilkS) (width 0.12))
  2889. (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer F.SilkS) (width 0.12))
  2890. (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer F.SilkS) (width 0.12))
  2891. (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer F.SilkS) (width 0.12))
  2892. (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer F.SilkS) (width 0.12))
  2893. (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer F.SilkS) (width 0.12))
  2894. (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer F.SilkS) (width 0.12))
  2895. (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer F.SilkS) (width 0.12))
  2896. (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer F.SilkS) (width 0.12))
  2897. (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer F.SilkS) (width 0.12))
  2898. (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer F.SilkS) (width 0.12))
  2899. (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer F.SilkS) (width 0.12))
  2900. (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer F.SilkS) (width 0.12))
  2901. (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer F.SilkS) (width 0.12))
  2902. (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer F.SilkS) (width 0.12))
  2903. (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer F.SilkS) (width 0.12))
  2904. (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer F.SilkS) (width 0.12))
  2905. (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer F.SilkS) (width 0.12))
  2906. (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer F.SilkS) (width 0.12))
  2907. (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer F.SilkS) (width 0.12))
  2908. (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer F.SilkS) (width 0.12))
  2909. (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer F.SilkS) (width 0.12))
  2910. (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer F.SilkS) (width 0.12))
  2911. (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer F.SilkS) (width 0.12))
  2912. (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer F.SilkS) (width 0.12))
  2913. (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer F.SilkS) (width 0.12))
  2914. (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer F.SilkS) (width 0.12))
  2915. (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer F.SilkS) (width 0.12))
  2916. (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer F.SilkS) (width 0.12))
  2917. (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer F.SilkS) (width 0.12))
  2918. (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer F.SilkS) (width 0.12))
  2919. (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer F.SilkS) (width 0.12))
  2920. (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer F.SilkS) (width 0.12))
  2921. (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer F.SilkS) (width 0.12))
  2922. (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer F.SilkS) (width 0.12))
  2923. (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer F.SilkS) (width 0.12))
  2924. (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer F.SilkS) (width 0.12))
  2925. (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer F.SilkS) (width 0.12))
  2926. (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer F.SilkS) (width 0.12))
  2927. (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer F.SilkS) (width 0.12))
  2928. (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer F.SilkS) (width 0.12))
  2929. (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer F.SilkS) (width 0.12))
  2930. (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer F.SilkS) (width 0.12))
  2931. (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer F.SilkS) (width 0.12))
  2932. (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer F.SilkS) (width 0.12))
  2933. (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer F.SilkS) (width 0.12))
  2934. (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer F.SilkS) (width 0.12))
  2935. (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer F.SilkS) (width 0.12))
  2936. (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer F.SilkS) (width 0.12))
  2937. (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer F.SilkS) (width 0.12))
  2938. (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer F.SilkS) (width 0.12))
  2939. (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer F.SilkS) (width 0.12))
  2940. (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer F.SilkS) (width 0.12))
  2941. (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer F.SilkS) (width 0.12))
  2942. (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer F.SilkS) (width 0.12))
  2943. (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer F.SilkS) (width 0.12))
  2944. (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer F.SilkS) (width 0.12))
  2945. (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer F.SilkS) (width 0.12))
  2946. (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer F.SilkS) (width 0.12))
  2947. (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer F.SilkS) (width 0.12))
  2948. (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer F.SilkS) (width 0.12))
  2949. (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer F.SilkS) (width 0.12))
  2950. (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer F.SilkS) (width 0.12))
  2951. (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer F.SilkS) (width 0.12))
  2952. (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer F.SilkS) (width 0.12))
  2953. (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer F.SilkS) (width 0.12))
  2954. (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer F.SilkS) (width 0.12))
  2955. (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer F.SilkS) (width 0.12))
  2956. (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer F.SilkS) (width 0.12))
  2957. (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer F.SilkS) (width 0.12))
  2958. (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer F.SilkS) (width 0.12))
  2959. (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer F.SilkS) (width 0.12))
  2960. (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer F.SilkS) (width 0.12))
  2961. (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer F.SilkS) (width 0.12))
  2962. (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer F.SilkS) (width 0.12))
  2963. (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer F.SilkS) (width 0.12))
  2964. (fp_text user %R (at 1.25 0) (layer F.Fab)
  2965. (effects (font (size 1 1) (thickness 0.15)))
  2966. )
  2967. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2968. (net 8 "Net-(C5-Pad2)"))
  2969. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  2970. (net 9 "Net-(C5-Pad1)"))
  2971. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  2972. (at (xyz 0 0 0))
  2973. (scale (xyz 1 1 1))
  2974. (rotate (xyz 0 0 0))
  2975. )
  2976. )
  2977. (module Capacitor_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F775)
  2978. (at 39.37 95.25)
  2979. (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
  2980. (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
  2981. (path /5E723970)
  2982. (fp_text reference C4 (at 1.25 -3.75) (layer F.SilkS)
  2983. (effects (font (size 1 1) (thickness 0.15)))
  2984. )
  2985. (fp_text value 1.0uF (at 1.25 3.75) (layer F.Fab)
  2986. (effects (font (size 1 1) (thickness 0.15)))
  2987. )
  2988. (fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
  2989. (fp_circle (center 1.25 0) (end 3.87 0) (layer F.SilkS) (width 0.12))
  2990. (fp_circle (center 1.25 0) (end 4 0) (layer F.CrtYd) (width 0.05))
  2991. (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer F.Fab) (width 0.1))
  2992. (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer F.Fab) (width 0.1))
  2993. (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer F.SilkS) (width 0.12))
  2994. (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer F.SilkS) (width 0.12))
  2995. (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer F.SilkS) (width 0.12))
  2996. (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer F.SilkS) (width 0.12))
  2997. (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer F.SilkS) (width 0.12))
  2998. (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer F.SilkS) (width 0.12))
  2999. (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer F.SilkS) (width 0.12))
  3000. (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer F.SilkS) (width 0.12))
  3001. (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer F.SilkS) (width 0.12))
  3002. (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer F.SilkS) (width 0.12))
  3003. (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer F.SilkS) (width 0.12))
  3004. (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer F.SilkS) (width 0.12))
  3005. (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer F.SilkS) (width 0.12))
  3006. (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer F.SilkS) (width 0.12))
  3007. (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer F.SilkS) (width 0.12))
  3008. (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer F.SilkS) (width 0.12))
  3009. (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer F.SilkS) (width 0.12))
  3010. (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer F.SilkS) (width 0.12))
  3011. (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer F.SilkS) (width 0.12))
  3012. (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer F.SilkS) (width 0.12))
  3013. (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer F.SilkS) (width 0.12))
  3014. (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer F.SilkS) (width 0.12))
  3015. (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer F.SilkS) (width 0.12))
  3016. (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer F.SilkS) (width 0.12))
  3017. (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer F.SilkS) (width 0.12))
  3018. (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer F.SilkS) (width 0.12))
  3019. (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer F.SilkS) (width 0.12))
  3020. (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer F.SilkS) (width 0.12))
  3021. (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer F.SilkS) (width 0.12))
  3022. (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer F.SilkS) (width 0.12))
  3023. (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer F.SilkS) (width 0.12))
  3024. (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer F.SilkS) (width 0.12))
  3025. (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer F.SilkS) (width 0.12))
  3026. (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer F.SilkS) (width 0.12))
  3027. (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer F.SilkS) (width 0.12))
  3028. (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer F.SilkS) (width 0.12))
  3029. (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer F.SilkS) (width 0.12))
  3030. (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer F.SilkS) (width 0.12))
  3031. (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer F.SilkS) (width 0.12))
  3032. (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer F.SilkS) (width 0.12))
  3033. (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer F.SilkS) (width 0.12))
  3034. (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer F.SilkS) (width 0.12))
  3035. (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer F.SilkS) (width 0.12))
  3036. (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer F.SilkS) (width 0.12))
  3037. (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer F.SilkS) (width 0.12))
  3038. (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer F.SilkS) (width 0.12))
  3039. (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer F.SilkS) (width 0.12))
  3040. (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer F.SilkS) (width 0.12))
  3041. (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer F.SilkS) (width 0.12))
  3042. (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer F.SilkS) (width 0.12))
  3043. (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer F.SilkS) (width 0.12))
  3044. (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer F.SilkS) (width 0.12))
  3045. (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer F.SilkS) (width 0.12))
  3046. (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer F.SilkS) (width 0.12))
  3047. (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer F.SilkS) (width 0.12))
  3048. (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer F.SilkS) (width 0.12))
  3049. (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer F.SilkS) (width 0.12))
  3050. (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer F.SilkS) (width 0.12))
  3051. (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer F.SilkS) (width 0.12))
  3052. (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer F.SilkS) (width 0.12))
  3053. (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer F.SilkS) (width 0.12))
  3054. (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer F.SilkS) (width 0.12))
  3055. (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer F.SilkS) (width 0.12))
  3056. (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer F.SilkS) (width 0.12))
  3057. (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer F.SilkS) (width 0.12))
  3058. (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer F.SilkS) (width 0.12))
  3059. (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer F.SilkS) (width 0.12))
  3060. (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer F.SilkS) (width 0.12))
  3061. (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer F.SilkS) (width 0.12))
  3062. (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer F.SilkS) (width 0.12))
  3063. (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer F.SilkS) (width 0.12))
  3064. (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer F.SilkS) (width 0.12))
  3065. (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer F.SilkS) (width 0.12))
  3066. (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer F.SilkS) (width 0.12))
  3067. (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer F.SilkS) (width 0.12))
  3068. (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer F.SilkS) (width 0.12))
  3069. (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer F.SilkS) (width 0.12))
  3070. (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer F.SilkS) (width 0.12))
  3071. (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer F.SilkS) (width 0.12))
  3072. (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer F.SilkS) (width 0.12))
  3073. (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer F.SilkS) (width 0.12))
  3074. (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer F.SilkS) (width 0.12))
  3075. (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer F.SilkS) (width 0.12))
  3076. (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer F.SilkS) (width 0.12))
  3077. (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer F.SilkS) (width 0.12))
  3078. (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer F.SilkS) (width 0.12))
  3079. (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer F.SilkS) (width 0.12))
  3080. (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer F.SilkS) (width 0.12))
  3081. (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer F.SilkS) (width 0.12))
  3082. (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer F.SilkS) (width 0.12))
  3083. (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer F.SilkS) (width 0.12))
  3084. (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer F.SilkS) (width 0.12))
  3085. (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer F.SilkS) (width 0.12))
  3086. (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer F.SilkS) (width 0.12))
  3087. (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer F.SilkS) (width 0.12))
  3088. (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer F.SilkS) (width 0.12))
  3089. (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer F.SilkS) (width 0.12))
  3090. (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer F.SilkS) (width 0.12))
  3091. (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer F.SilkS) (width 0.12))
  3092. (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer F.SilkS) (width 0.12))
  3093. (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer F.SilkS) (width 0.12))
  3094. (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer F.SilkS) (width 0.12))
  3095. (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer F.SilkS) (width 0.12))
  3096. (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer F.SilkS) (width 0.12))
  3097. (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer F.SilkS) (width 0.12))
  3098. (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer F.SilkS) (width 0.12))
  3099. (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer F.SilkS) (width 0.12))
  3100. (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer F.SilkS) (width 0.12))
  3101. (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer F.SilkS) (width 0.12))
  3102. (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer F.SilkS) (width 0.12))
  3103. (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer F.SilkS) (width 0.12))
  3104. (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer F.SilkS) (width 0.12))
  3105. (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer F.SilkS) (width 0.12))
  3106. (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer F.SilkS) (width 0.12))
  3107. (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer F.SilkS) (width 0.12))
  3108. (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer F.SilkS) (width 0.12))
  3109. (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer F.SilkS) (width 0.12))
  3110. (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer F.SilkS) (width 0.12))
  3111. (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer F.SilkS) (width 0.12))
  3112. (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer F.SilkS) (width 0.12))
  3113. (fp_text user %R (at 1.25 0) (layer F.Fab)
  3114. (effects (font (size 1 1) (thickness 0.15)))
  3115. )
  3116. (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3117. (net 6 "Net-(C4-Pad2)"))
  3118. (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3119. (net 7 "Net-(C4-Pad1)"))
  3120. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
  3121. (at (xyz 0 0 0))
  3122. (scale (xyz 1 1 1))
  3123. (rotate (xyz 0 0 0))
  3124. )
  3125. )
  3126. (module Capacitor_THT:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F6F1)
  3127. (at 60.96 86.36 90)
  3128. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
  3129. (tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
  3130. (path /5E6C0080)
  3131. (fp_text reference C3 (at 1.25 -2.3 90) (layer F.SilkS)
  3132. (effects (font (size 1 1) (thickness 0.15)))
  3133. )
  3134. (fp_text value 100nF (at 1.25 2.3 90) (layer F.Fab)
  3135. (effects (font (size 1 1) (thickness 0.15)))
  3136. )
  3137. (fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
  3138. (fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
  3139. (fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
  3140. (fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
  3141. (fp_line (start -0.57 -1.17) (end 3.07 -1.17) (layer F.SilkS) (width 0.12))
  3142. (fp_line (start -0.57 1.17) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  3143. (fp_line (start -0.57 -1.17) (end -0.57 -0.925) (layer F.SilkS) (width 0.12))
  3144. (fp_line (start -0.57 0.925) (end -0.57 1.17) (layer F.SilkS) (width 0.12))
  3145. (fp_line (start 3.07 -1.17) (end 3.07 -0.925) (layer F.SilkS) (width 0.12))
  3146. (fp_line (start 3.07 0.925) (end 3.07 1.17) (layer F.SilkS) (width 0.12))
  3147. (fp_line (start -1.05 -1.3) (end -1.05 1.3) (layer F.CrtYd) (width 0.05))
  3148. (fp_line (start -1.05 1.3) (end 3.55 1.3) (layer F.CrtYd) (width 0.05))
  3149. (fp_line (start 3.55 1.3) (end 3.55 -1.3) (layer F.CrtYd) (width 0.05))
  3150. (fp_line (start 3.55 -1.3) (end -1.05 -1.3) (layer F.CrtYd) (width 0.05))
  3151. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  3152. (effects (font (size 0.68 0.68) (thickness 0.102)))
  3153. )
  3154. (pad 2 thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3155. (net 4 "Net-(C3-Pad2)"))
  3156. (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3157. (net 5 /~RESET))
  3158. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
  3159. (at (xyz 0 0 0))
  3160. (scale (xyz 1 1 1))
  3161. (rotate (xyz 0 0 0))
  3162. )
  3163. )
  3164. (module Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F6DC)
  3165. (at 29.21 137.16 270)
  3166. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor")
  3167. (tags "C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor")
  3168. (path /5E63F6D8)
  3169. (fp_text reference C2 (at 5.08 0 90) (layer F.SilkS)
  3170. (effects (font (size 1 1) (thickness 0.15)))
  3171. )
  3172. (fp_text value 22pF (at 1.25 2.25 90) (layer F.Fab)
  3173. (effects (font (size 1 1) (thickness 0.15)))
  3174. )
  3175. (fp_line (start -0.25 -1) (end -0.25 1) (layer F.Fab) (width 0.1))
  3176. (fp_line (start -0.25 1) (end 2.75 1) (layer F.Fab) (width 0.1))
  3177. (fp_line (start 2.75 1) (end 2.75 -1) (layer F.Fab) (width 0.1))
  3178. (fp_line (start 2.75 -1) (end -0.25 -1) (layer F.Fab) (width 0.1))
  3179. (fp_line (start -0.37 -1.12) (end 2.87 -1.12) (layer F.SilkS) (width 0.12))
  3180. (fp_line (start -0.37 1.12) (end 2.87 1.12) (layer F.SilkS) (width 0.12))
  3181. (fp_line (start -0.37 -1.12) (end -0.37 -1.055) (layer F.SilkS) (width 0.12))
  3182. (fp_line (start -0.37 1.055) (end -0.37 1.12) (layer F.SilkS) (width 0.12))
  3183. (fp_line (start 2.87 -1.12) (end 2.87 -1.055) (layer F.SilkS) (width 0.12))
  3184. (fp_line (start 2.87 1.055) (end 2.87 1.12) (layer F.SilkS) (width 0.12))
  3185. (fp_line (start -1.05 -1.25) (end -1.05 1.25) (layer F.CrtYd) (width 0.05))
  3186. (fp_line (start -1.05 1.25) (end 3.55 1.25) (layer F.CrtYd) (width 0.05))
  3187. (fp_line (start 3.55 1.25) (end 3.55 -1.25) (layer F.CrtYd) (width 0.05))
  3188. (fp_line (start 3.55 -1.25) (end -1.05 -1.25) (layer F.CrtYd) (width 0.05))
  3189. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  3190. (effects (font (size 0.6 0.6) (thickness 0.09)))
  3191. )
  3192. (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3193. (net 3 /XTAL2))
  3194. (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3195. (net 2 GND))
  3196. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W2.0mm_P2.50mm.wrl
  3197. (at (xyz 0 0 0))
  3198. (scale (xyz 1 1 1))
  3199. (rotate (xyz 0 0 0))
  3200. )
  3201. )
  3202. (module Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5E56F6C7)
  3203. (at 29.21 134.62 90)
  3204. (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor")
  3205. (tags "C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor")
  3206. (path /5E63795C)
  3207. (fp_text reference C1 (at 5.08 0 90) (layer F.SilkS)
  3208. (effects (font (size 1 1) (thickness 0.15)))
  3209. )
  3210. (fp_text value 22pF (at 1.25 2.25 90) (layer F.Fab)
  3211. (effects (font (size 1 1) (thickness 0.15)))
  3212. )
  3213. (fp_line (start -0.25 -1) (end -0.25 1) (layer F.Fab) (width 0.1))
  3214. (fp_line (start -0.25 1) (end 2.75 1) (layer F.Fab) (width 0.1))
  3215. (fp_line (start 2.75 1) (end 2.75 -1) (layer F.Fab) (width 0.1))
  3216. (fp_line (start 2.75 -1) (end -0.25 -1) (layer F.Fab) (width 0.1))
  3217. (fp_line (start -0.37 -1.12) (end 2.87 -1.12) (layer F.SilkS) (width 0.12))
  3218. (fp_line (start -0.37 1.12) (end 2.87 1.12) (layer F.SilkS) (width 0.12))
  3219. (fp_line (start -0.37 -1.12) (end -0.37 -1.055) (layer F.SilkS) (width 0.12))
  3220. (fp_line (start -0.37 1.055) (end -0.37 1.12) (layer F.SilkS) (width 0.12))
  3221. (fp_line (start 2.87 -1.12) (end 2.87 -1.055) (layer F.SilkS) (width 0.12))
  3222. (fp_line (start 2.87 1.055) (end 2.87 1.12) (layer F.SilkS) (width 0.12))
  3223. (fp_line (start -1.05 -1.25) (end -1.05 1.25) (layer F.CrtYd) (width 0.05))
  3224. (fp_line (start -1.05 1.25) (end 3.55 1.25) (layer F.CrtYd) (width 0.05))
  3225. (fp_line (start 3.55 1.25) (end 3.55 -1.25) (layer F.CrtYd) (width 0.05))
  3226. (fp_line (start 3.55 -1.25) (end -1.05 -1.25) (layer F.CrtYd) (width 0.05))
  3227. (fp_text user %R (at 1.25 0 90) (layer F.Fab)
  3228. (effects (font (size 0.6 0.6) (thickness 0.09)))
  3229. )
  3230. (pad 2 thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3231. (net 1 /XTAL1))
  3232. (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
  3233. (net 2 GND))
  3234. (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W2.0mm_P2.50mm.wrl
  3235. (at (xyz 0 0 0))
  3236. (scale (xyz 1 1 1))
  3237. (rotate (xyz 0 0 0))
  3238. )
  3239. )
  3240. (gr_text "rev. 2.0\n" (at 133.35 139.7) (layer F.SilkS)
  3241. (effects (font (size 1 1) (thickness 0.15)))
  3242. )
  3243. (gr_text Power (at 105.41 71.12) (layer F.SilkS)
  3244. (effects (font (size 1 1) (thickness 0.15)))
  3245. )
  3246. (gr_text Activity (at 38.1 110.49) (layer F.SilkS)
  3247. (effects (font (size 1 1) (thickness 0.15)))
  3248. )
  3249. (gr_text RESET (at 31.75 92.71) (layer F.SilkS)
  3250. (effects (font (size 1 1) (thickness 0.15)))
  3251. )
  3252. (gr_text "7-12V\nTIP positive" (at 71.12 86.36) (layer B.SilkS)
  3253. (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
  3254. )
  3255. (gr_text "Power Switch" (at 95.25 69.85) (layer F.SilkS)
  3256. (effects (font (size 1 1) (thickness 0.15)))
  3257. )
  3258. (gr_line (start 129.54 63.5) (end 128.27 64.77) (layer F.SilkS) (width 0.12) (tstamp 5E578A47))
  3259. (gr_line (start 127 63.5) (end 128.27 64.77) (layer F.SilkS) (width 0.12) (tstamp 5E578A46))
  3260. (gr_line (start 128.27 64.77) (end 127 63.5) (layer F.SilkS) (width 0.12))
  3261. (gr_line (start 116.84 63.5) (end 129.54 63.5) (layer F.SilkS) (width 0.12))
  3262. (gr_text "Put PAL here" (at 123.19 62.23) (layer F.SilkS)
  3263. (effects (font (size 1 1) (thickness 0.15)))
  3264. )
  3265. )