eaglecad 0 → 1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +5 -1
- data/README.markdown +29 -0
- data/Rakefile +9 -0
- data/eaglecad.gemspec +4 -2
- data/lib/eaglecad.rb +15 -1
- data/lib/eaglecad/attribute.rb +47 -0
- data/lib/eaglecad/board.rb +184 -0
- data/lib/eaglecad/clearance.rb +31 -0
- data/lib/eaglecad/design_rules.rb +38 -0
- data/lib/eaglecad/deviceset.rb +113 -0
- data/lib/eaglecad/drawing.rb +124 -0
- data/lib/eaglecad/geometry.rb +259 -0
- data/lib/eaglecad/layer.rb +40 -0
- data/lib/eaglecad/library.rb +73 -0
- data/lib/eaglecad/package.rb +74 -0
- data/lib/eaglecad/part.rb +29 -0
- data/lib/eaglecad/schematic.rb +83 -0
- data/lib/eaglecad/sheet.rb +256 -0
- data/lib/eaglecad/symbol.rb +73 -0
- data/test/eaglecad.rb +12 -0
- data/test/eaglecad/board.rb +68 -0
- data/test/eaglecad/design_rules.rb +38 -0
- data/test/eaglecad/deviceset.rb +52 -0
- data/test/eaglecad/drawing.rb +94 -0
- data/test/eaglecad/library.rb +47 -0
- data/test/eaglecad/package.rb +60 -0
- data/test/eaglecad/schematic.rb +50 -0
- data/test/eaglecad/sheet.rb +24 -0
- data/test/eaglecad/symbol.rb +41 -0
- data/test/fixtures/board.xml +859 -0
- data/test/fixtures/demo1.sch +10932 -0
- data/test/fixtures/design_rules.xml +70 -0
- data/test/fixtures/deviceset.xml +683 -0
- data/test/fixtures/drawing_board.xml +910 -0
- data/test/fixtures/drawing_schematic.xml +10928 -0
- data/test/fixtures/hexapodu.brd +1863 -0
- data/test/fixtures/library.xml +175 -0
- data/test/fixtures/package.xml +28 -0
- data/test/fixtures/schematic.xml +10861 -0
- data/test/fixtures/sheet.xml +318 -0
- data/test/fixtures/symbol.xml +11 -0
- metadata +79 -5
- data/README.md +0 -29
@@ -0,0 +1,1863 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE eagle SYSTEM "eagle.dtd">
|
3
|
+
<eagle version="6.0">
|
4
|
+
<drawing>
|
5
|
+
<settings>
|
6
|
+
<setting alwaysvectorfont="no"/>
|
7
|
+
<setting verticaltext="up"/>
|
8
|
+
</settings>
|
9
|
+
<grid distance="25" unitdist="mil" unit="mil" style="lines" multiple="1" display="no" altdistance="25" altunitdist="mil" altunit="mil"/>
|
10
|
+
<layers>
|
11
|
+
<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
|
12
|
+
<layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
|
13
|
+
<layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
|
14
|
+
<layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
|
15
|
+
<layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
|
16
|
+
<layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
|
17
|
+
<layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
|
18
|
+
<layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
|
19
|
+
<layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
|
20
|
+
<layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
|
21
|
+
<layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
|
22
|
+
<layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
|
23
|
+
<layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
|
24
|
+
<layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
|
25
|
+
<layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
|
26
|
+
<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
|
27
|
+
<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
|
28
|
+
<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
|
29
|
+
<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
|
30
|
+
<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
|
31
|
+
<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
|
32
|
+
<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="yes"/>
|
33
|
+
<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
|
34
|
+
<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="yes"/>
|
35
|
+
<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
|
36
|
+
<layer number="26" name="bNames" color="7" fill="1" visible="no" active="yes"/>
|
37
|
+
<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
|
38
|
+
<layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
|
39
|
+
<layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/>
|
40
|
+
<layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/>
|
41
|
+
<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
|
42
|
+
<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
|
43
|
+
<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
|
44
|
+
<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
|
45
|
+
<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
|
46
|
+
<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
|
47
|
+
<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
|
48
|
+
<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
|
49
|
+
<layer number="39" name="tKeepout" color="4" fill="10" visible="no" active="yes"/>
|
50
|
+
<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="yes"/>
|
51
|
+
<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
|
52
|
+
<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
|
53
|
+
<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
|
54
|
+
<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
|
55
|
+
<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
|
56
|
+
<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
|
57
|
+
<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
|
58
|
+
<layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
|
59
|
+
<layer number="49" name="Reference" color="7" fill="1" visible="no" active="yes"/>
|
60
|
+
<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
|
61
|
+
<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="yes"/>
|
62
|
+
<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/>
|
63
|
+
<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/>
|
64
|
+
<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/>
|
65
|
+
<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/>
|
66
|
+
<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/>
|
67
|
+
<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/>
|
68
|
+
</layers>
|
69
|
+
<board>
|
70
|
+
<plain>
|
71
|
+
<wire x1="0" y1="0" x2="0" y2="80" width="0" layer="20"/>
|
72
|
+
<wire x1="0" y1="80" x2="100" y2="80" width="0" layer="20"/>
|
73
|
+
<wire x1="100" y1="80" x2="100" y2="0" width="0" layer="20"/>
|
74
|
+
<wire x1="100" y1="0" x2="0" y2="0" width="0" layer="20"/>
|
75
|
+
<text x="13.97" y="76.2" size="1.778" layer="1" font="vector" ratio="10">Hexapod Interface</text>
|
76
|
+
<text x="13.97" y="73.025" size="1.778" layer="1" font="vector" ratio="10">kls 01/1999</text>
|
77
|
+
<text x="3.175" y="33.02" size="1.778" layer="1" font="vector" ratio="10">TOP</text>
|
78
|
+
<text x="7.62" y="33.02" size="1.778" layer="16" font="vector" ratio="10" rot="MR0">BOT</text>
|
79
|
+
<rectangle x1="13.335" y1="72.39" x2="41.275" y2="78.74" layer="41"/>
|
80
|
+
</plain>
|
81
|
+
<libraries>
|
82
|
+
<library name="klaus">
|
83
|
+
<packages>
|
84
|
+
<package name="DIL-16">
|
85
|
+
<wire x1="-10.16" y1="-0.635" x2="-10.16" y2="-2.794" width="0.127" layer="21"/>
|
86
|
+
<wire x1="-10.16" y1="-0.635" x2="-10.16" y2="0.635" width="0.127" layer="21" curve="180"/>
|
87
|
+
<wire x1="-10.16" y1="-2.794" x2="10.16" y2="-2.794" width="0.127" layer="21"/>
|
88
|
+
<wire x1="10.16" y1="-2.794" x2="10.16" y2="2.794" width="0.127" layer="21"/>
|
89
|
+
<wire x1="10.16" y1="2.794" x2="-10.16" y2="2.794" width="0.127" layer="21"/>
|
90
|
+
<wire x1="-10.16" y1="2.794" x2="-10.16" y2="0.635" width="0.127" layer="21"/>
|
91
|
+
<pad name="1" x="-8.89" y="-3.81" drill="0.8128" diameter="1.6002"/>
|
92
|
+
<pad name="2" x="-6.35" y="-3.81" drill="0.8128" diameter="1.6002"/>
|
93
|
+
<pad name="3" x="-3.81" y="-3.81" drill="0.8128" diameter="1.6002"/>
|
94
|
+
<pad name="4" x="-1.27" y="-3.81" drill="0.8128" diameter="1.6002"/>
|
95
|
+
<pad name="5" x="1.27" y="-3.81" drill="0.8128" diameter="1.6002"/>
|
96
|
+
<pad name="6" x="3.81" y="-3.81" drill="0.8128" diameter="1.6002"/>
|
97
|
+
<pad name="7" x="6.35" y="-3.81" drill="0.8128" diameter="1.6002"/>
|
98
|
+
<pad name="8" x="8.89" y="-3.81" drill="0.8128" diameter="1.6002"/>
|
99
|
+
<pad name="9" x="8.89" y="3.81" drill="0.8128" diameter="1.6002"/>
|
100
|
+
<pad name="10" x="6.35" y="3.81" drill="0.8128" diameter="1.6002"/>
|
101
|
+
<pad name="11" x="3.81" y="3.81" drill="0.8128" diameter="1.6002"/>
|
102
|
+
<pad name="12" x="1.27" y="3.81" drill="0.8128" diameter="1.6002"/>
|
103
|
+
<pad name="13" x="-1.27" y="3.81" drill="0.8128" diameter="1.6002"/>
|
104
|
+
<pad name="14" x="-3.81" y="3.81" drill="0.8128" diameter="1.6002"/>
|
105
|
+
<pad name="15" x="-6.35" y="3.81" drill="0.8128" diameter="1.6002"/>
|
106
|
+
<pad name="16" x="-8.89" y="3.81" drill="0.8128" diameter="1.6002"/>
|
107
|
+
<text x="-6.35" y="0.2794" size="1.778" layer="25" ratio="10">>NAME</text>
|
108
|
+
<text x="-9.1948" y="-2.2098" size="1.27" layer="21" ratio="12">1</text>
|
109
|
+
<text x="-9.1694" y="0.9652" size="1.27" layer="21" ratio="12">16</text>
|
110
|
+
<text x="8.255" y="-2.2098" size="1.27" layer="21" ratio="12">8</text>
|
111
|
+
<text x="8.255" y="0.9652" size="1.27" layer="21" ratio="12">9</text>
|
112
|
+
<text x="-6.35" y="-2.1082" size="1.778" layer="27" ratio="10">>VALUE</text>
|
113
|
+
</package>
|
114
|
+
</packages>
|
115
|
+
</library>
|
116
|
+
<library name="PINHEAD">
|
117
|
+
<packages>
|
118
|
+
<package name="2X25">
|
119
|
+
<wire x1="-31.75" y1="-1.905" x2="-31.115" y2="-2.54" width="0.127" layer="21"/>
|
120
|
+
<wire x1="-31.115" y1="-2.54" x2="-29.845" y2="-2.54" width="0.127" layer="21"/>
|
121
|
+
<wire x1="-29.845" y1="-2.54" x2="-29.21" y2="-1.905" width="0.127" layer="21"/>
|
122
|
+
<wire x1="-29.21" y1="-1.905" x2="-28.575" y2="-2.54" width="0.127" layer="21"/>
|
123
|
+
<wire x1="-28.575" y1="-2.54" x2="-27.305" y2="-2.54" width="0.127" layer="21"/>
|
124
|
+
<wire x1="-27.305" y1="-2.54" x2="-26.67" y2="-1.905" width="0.127" layer="21"/>
|
125
|
+
<wire x1="-26.67" y1="-1.905" x2="-26.035" y2="-2.54" width="0.127" layer="21"/>
|
126
|
+
<wire x1="-26.035" y1="-2.54" x2="-24.765" y2="-2.54" width="0.127" layer="21"/>
|
127
|
+
<wire x1="-24.765" y1="-2.54" x2="-24.13" y2="-1.905" width="0.127" layer="21"/>
|
128
|
+
<wire x1="-24.13" y1="-1.905" x2="-23.495" y2="-2.54" width="0.127" layer="21"/>
|
129
|
+
<wire x1="-23.495" y1="-2.54" x2="-22.225" y2="-2.54" width="0.127" layer="21"/>
|
130
|
+
<wire x1="-22.225" y1="-2.54" x2="-21.59" y2="-1.905" width="0.127" layer="21"/>
|
131
|
+
<wire x1="-21.59" y1="-1.905" x2="-20.955" y2="-2.54" width="0.127" layer="21"/>
|
132
|
+
<wire x1="-20.955" y1="-2.54" x2="-19.685" y2="-2.54" width="0.127" layer="21"/>
|
133
|
+
<wire x1="-19.685" y1="-2.54" x2="-19.05" y2="-1.905" width="0.127" layer="21"/>
|
134
|
+
<wire x1="-19.05" y1="-1.905" x2="-18.415" y2="-2.54" width="0.127" layer="21"/>
|
135
|
+
<wire x1="-18.415" y1="-2.54" x2="-17.145" y2="-2.54" width="0.127" layer="21"/>
|
136
|
+
<wire x1="-17.145" y1="-2.54" x2="-16.51" y2="-1.905" width="0.127" layer="21"/>
|
137
|
+
<wire x1="-31.75" y1="-1.905" x2="-31.75" y2="1.905" width="0.127" layer="21"/>
|
138
|
+
<wire x1="-31.75" y1="1.905" x2="-31.115" y2="2.54" width="0.127" layer="21"/>
|
139
|
+
<wire x1="-31.115" y1="2.54" x2="-29.845" y2="2.54" width="0.127" layer="21"/>
|
140
|
+
<wire x1="-29.845" y1="2.54" x2="-29.21" y2="1.905" width="0.127" layer="21"/>
|
141
|
+
<wire x1="-29.21" y1="1.905" x2="-28.575" y2="2.54" width="0.127" layer="21"/>
|
142
|
+
<wire x1="-28.575" y1="2.54" x2="-27.305" y2="2.54" width="0.127" layer="21"/>
|
143
|
+
<wire x1="-27.305" y1="2.54" x2="-26.67" y2="1.905" width="0.127" layer="21"/>
|
144
|
+
<wire x1="-26.67" y1="1.905" x2="-26.035" y2="2.54" width="0.127" layer="21"/>
|
145
|
+
<wire x1="-26.035" y1="2.54" x2="-24.765" y2="2.54" width="0.127" layer="21"/>
|
146
|
+
<wire x1="-24.765" y1="2.54" x2="-24.13" y2="1.905" width="0.127" layer="21"/>
|
147
|
+
<wire x1="-24.13" y1="1.905" x2="-23.495" y2="2.54" width="0.127" layer="21"/>
|
148
|
+
<wire x1="-23.495" y1="2.54" x2="-22.225" y2="2.54" width="0.127" layer="21"/>
|
149
|
+
<wire x1="-22.225" y1="2.54" x2="-21.59" y2="1.905" width="0.127" layer="21"/>
|
150
|
+
<wire x1="-21.59" y1="1.905" x2="-20.955" y2="2.54" width="0.127" layer="21"/>
|
151
|
+
<wire x1="-20.955" y1="2.54" x2="-19.685" y2="2.54" width="0.127" layer="21"/>
|
152
|
+
<wire x1="-19.685" y1="2.54" x2="-19.05" y2="1.905" width="0.127" layer="21"/>
|
153
|
+
<wire x1="-19.05" y1="1.905" x2="-18.415" y2="2.54" width="0.127" layer="21"/>
|
154
|
+
<wire x1="-18.415" y1="2.54" x2="-17.145" y2="2.54" width="0.127" layer="21"/>
|
155
|
+
<wire x1="-17.145" y1="2.54" x2="-16.51" y2="1.905" width="0.127" layer="21"/>
|
156
|
+
<wire x1="-16.51" y1="1.905" x2="-15.875" y2="2.54" width="0.127" layer="21"/>
|
157
|
+
<wire x1="-15.875" y1="2.54" x2="-14.605" y2="2.54" width="0.127" layer="21"/>
|
158
|
+
<wire x1="-14.605" y1="2.54" x2="-13.97" y2="1.905" width="0.127" layer="21"/>
|
159
|
+
<wire x1="-13.97" y1="1.905" x2="-13.335" y2="2.54" width="0.127" layer="21"/>
|
160
|
+
<wire x1="-13.335" y1="2.54" x2="-12.065" y2="2.54" width="0.127" layer="21"/>
|
161
|
+
<wire x1="-12.065" y1="2.54" x2="-11.43" y2="1.905" width="0.127" layer="21"/>
|
162
|
+
<wire x1="-11.43" y1="1.905" x2="-10.795" y2="2.54" width="0.127" layer="21"/>
|
163
|
+
<wire x1="-10.795" y1="2.54" x2="-9.525" y2="2.54" width="0.127" layer="21"/>
|
164
|
+
<wire x1="-9.525" y1="2.54" x2="-8.89" y2="1.905" width="0.127" layer="21"/>
|
165
|
+
<wire x1="-8.89" y1="1.905" x2="-8.255" y2="2.54" width="0.127" layer="21"/>
|
166
|
+
<wire x1="-8.255" y1="2.54" x2="-6.985" y2="2.54" width="0.127" layer="21"/>
|
167
|
+
<wire x1="-6.985" y1="2.54" x2="-6.35" y2="1.905" width="0.127" layer="21"/>
|
168
|
+
<wire x1="-6.35" y1="1.905" x2="-5.715" y2="2.54" width="0.127" layer="21"/>
|
169
|
+
<wire x1="-5.715" y1="2.54" x2="-4.445" y2="2.54" width="0.127" layer="21"/>
|
170
|
+
<wire x1="-4.445" y1="2.54" x2="-3.81" y2="1.905" width="0.127" layer="21"/>
|
171
|
+
<wire x1="-3.81" y1="1.905" x2="-3.175" y2="2.54" width="0.127" layer="21"/>
|
172
|
+
<wire x1="-3.175" y1="2.54" x2="-1.905" y2="2.54" width="0.127" layer="21"/>
|
173
|
+
<wire x1="-1.27" y1="1.905" x2="-1.905" y2="2.54" width="0.127" layer="21"/>
|
174
|
+
<wire x1="-1.27" y1="1.905" x2="-0.635" y2="2.54" width="0.127" layer="21"/>
|
175
|
+
<wire x1="0.635" y1="2.54" x2="-0.635" y2="2.54" width="0.127" layer="21"/>
|
176
|
+
<wire x1="0.635" y1="2.54" x2="1.27" y2="1.905" width="0.127" layer="21"/>
|
177
|
+
<wire x1="1.27" y1="1.905" x2="1.905" y2="2.54" width="0.127" layer="21"/>
|
178
|
+
<wire x1="3.175" y1="2.54" x2="1.905" y2="2.54" width="0.127" layer="21"/>
|
179
|
+
<wire x1="3.175" y1="2.54" x2="3.81" y2="1.905" width="0.127" layer="21"/>
|
180
|
+
<wire x1="3.81" y1="1.905" x2="4.445" y2="2.54" width="0.127" layer="21"/>
|
181
|
+
<wire x1="5.715" y1="2.54" x2="4.445" y2="2.54" width="0.127" layer="21"/>
|
182
|
+
<wire x1="5.715" y1="2.54" x2="6.35" y2="1.905" width="0.127" layer="21"/>
|
183
|
+
<wire x1="6.35" y1="1.905" x2="6.985" y2="2.54" width="0.127" layer="21"/>
|
184
|
+
<wire x1="8.255" y1="2.54" x2="6.985" y2="2.54" width="0.127" layer="21"/>
|
185
|
+
<wire x1="8.255" y1="2.54" x2="8.89" y2="1.905" width="0.127" layer="21"/>
|
186
|
+
<wire x1="8.89" y1="1.905" x2="9.525" y2="2.54" width="0.127" layer="21"/>
|
187
|
+
<wire x1="10.795" y1="2.54" x2="9.525" y2="2.54" width="0.127" layer="21"/>
|
188
|
+
<wire x1="10.795" y1="2.54" x2="11.43" y2="1.905" width="0.127" layer="21"/>
|
189
|
+
<wire x1="11.43" y1="1.905" x2="12.065" y2="2.54" width="0.127" layer="21"/>
|
190
|
+
<wire x1="13.335" y1="2.54" x2="12.065" y2="2.54" width="0.127" layer="21"/>
|
191
|
+
<wire x1="13.335" y1="2.54" x2="13.97" y2="1.905" width="0.127" layer="21"/>
|
192
|
+
<wire x1="13.97" y1="1.905" x2="14.605" y2="2.54" width="0.127" layer="21"/>
|
193
|
+
<wire x1="15.875" y1="2.54" x2="14.605" y2="2.54" width="0.127" layer="21"/>
|
194
|
+
<wire x1="15.875" y1="2.54" x2="16.51" y2="1.905" width="0.127" layer="21"/>
|
195
|
+
<wire x1="16.51" y1="-1.905" x2="15.875" y2="-2.54" width="0.127" layer="21"/>
|
196
|
+
<wire x1="15.875" y1="-2.54" x2="14.605" y2="-2.54" width="0.127" layer="21"/>
|
197
|
+
<wire x1="13.97" y1="-1.905" x2="14.605" y2="-2.54" width="0.127" layer="21"/>
|
198
|
+
<wire x1="13.97" y1="-1.905" x2="13.335" y2="-2.54" width="0.127" layer="21"/>
|
199
|
+
<wire x1="13.335" y1="-2.54" x2="12.065" y2="-2.54" width="0.127" layer="21"/>
|
200
|
+
<wire x1="11.43" y1="-1.905" x2="12.065" y2="-2.54" width="0.127" layer="21"/>
|
201
|
+
<wire x1="11.43" y1="-1.905" x2="10.795" y2="-2.54" width="0.127" layer="21"/>
|
202
|
+
<wire x1="10.795" y1="-2.54" x2="9.525" y2="-2.54" width="0.127" layer="21"/>
|
203
|
+
<wire x1="8.89" y1="-1.905" x2="9.525" y2="-2.54" width="0.127" layer="21"/>
|
204
|
+
<wire x1="8.89" y1="-1.905" x2="8.255" y2="-2.54" width="0.127" layer="21"/>
|
205
|
+
<wire x1="6.985" y1="-2.54" x2="8.255" y2="-2.54" width="0.127" layer="21"/>
|
206
|
+
<wire x1="6.985" y1="-2.54" x2="6.35" y2="-1.905" width="0.127" layer="21"/>
|
207
|
+
<wire x1="6.35" y1="-1.905" x2="5.715" y2="-2.54" width="0.127" layer="21"/>
|
208
|
+
<wire x1="4.445" y1="-2.54" x2="5.715" y2="-2.54" width="0.127" layer="21"/>
|
209
|
+
<wire x1="4.445" y1="-2.54" x2="3.81" y2="-1.905" width="0.127" layer="21"/>
|
210
|
+
<wire x1="3.81" y1="-1.905" x2="3.175" y2="-2.54" width="0.127" layer="21"/>
|
211
|
+
<wire x1="3.175" y1="-2.54" x2="1.905" y2="-2.54" width="0.127" layer="21"/>
|
212
|
+
<wire x1="1.27" y1="-1.905" x2="1.905" y2="-2.54" width="0.127" layer="21"/>
|
213
|
+
<wire x1="1.27" y1="-1.905" x2="0.635" y2="-2.54" width="0.127" layer="21"/>
|
214
|
+
<wire x1="0.635" y1="-2.54" x2="-0.635" y2="-2.54" width="0.127" layer="21"/>
|
215
|
+
<wire x1="-1.27" y1="-1.905" x2="-0.635" y2="-2.54" width="0.127" layer="21"/>
|
216
|
+
<wire x1="-1.27" y1="-1.905" x2="-1.905" y2="-2.54" width="0.127" layer="21"/>
|
217
|
+
<wire x1="-1.905" y1="-2.54" x2="-3.175" y2="-2.54" width="0.127" layer="21"/>
|
218
|
+
<wire x1="-3.81" y1="-1.905" x2="-3.175" y2="-2.54" width="0.127" layer="21"/>
|
219
|
+
<wire x1="-3.81" y1="-1.905" x2="-4.445" y2="-2.54" width="0.127" layer="21"/>
|
220
|
+
<wire x1="-4.445" y1="-2.54" x2="-5.715" y2="-2.54" width="0.127" layer="21"/>
|
221
|
+
<wire x1="-6.35" y1="-1.905" x2="-5.715" y2="-2.54" width="0.127" layer="21"/>
|
222
|
+
<wire x1="-6.35" y1="-1.905" x2="-6.985" y2="-2.54" width="0.127" layer="21"/>
|
223
|
+
<wire x1="-6.985" y1="-2.54" x2="-8.255" y2="-2.54" width="0.127" layer="21"/>
|
224
|
+
<wire x1="-8.89" y1="-1.905" x2="-8.255" y2="-2.54" width="0.127" layer="21"/>
|
225
|
+
<wire x1="-8.89" y1="-1.905" x2="-9.525" y2="-2.54" width="0.127" layer="21"/>
|
226
|
+
<wire x1="-9.525" y1="-2.54" x2="-10.795" y2="-2.54" width="0.127" layer="21"/>
|
227
|
+
<wire x1="-11.43" y1="-1.905" x2="-10.795" y2="-2.54" width="0.127" layer="21"/>
|
228
|
+
<wire x1="-11.43" y1="-1.905" x2="-12.065" y2="-2.54" width="0.127" layer="21"/>
|
229
|
+
<wire x1="-12.065" y1="-2.54" x2="-13.335" y2="-2.54" width="0.127" layer="21"/>
|
230
|
+
<wire x1="-13.97" y1="-1.905" x2="-13.335" y2="-2.54" width="0.127" layer="21"/>
|
231
|
+
<wire x1="-13.97" y1="-1.905" x2="-14.605" y2="-2.54" width="0.127" layer="21"/>
|
232
|
+
<wire x1="-14.605" y1="-2.54" x2="-15.875" y2="-2.54" width="0.127" layer="21"/>
|
233
|
+
<wire x1="-16.51" y1="-1.905" x2="-15.875" y2="-2.54" width="0.127" layer="21"/>
|
234
|
+
<wire x1="-29.21" y1="1.905" x2="-29.21" y2="-1.905" width="0.127" layer="21"/>
|
235
|
+
<wire x1="-26.67" y1="1.905" x2="-26.67" y2="-1.905" width="0.127" layer="21"/>
|
236
|
+
<wire x1="-24.13" y1="1.905" x2="-24.13" y2="-1.905" width="0.127" layer="21"/>
|
237
|
+
<wire x1="-21.59" y1="1.905" x2="-21.59" y2="-1.905" width="0.127" layer="21"/>
|
238
|
+
<wire x1="-19.05" y1="1.905" x2="-19.05" y2="-1.905" width="0.127" layer="21"/>
|
239
|
+
<wire x1="-16.51" y1="1.905" x2="-16.51" y2="-1.905" width="0.127" layer="21"/>
|
240
|
+
<wire x1="-13.97" y1="1.905" x2="-13.97" y2="-1.905" width="0.127" layer="21"/>
|
241
|
+
<wire x1="-11.43" y1="1.905" x2="-11.43" y2="-1.905" width="0.127" layer="21"/>
|
242
|
+
<wire x1="-8.89" y1="1.905" x2="-8.89" y2="-1.905" width="0.127" layer="21"/>
|
243
|
+
<wire x1="-6.35" y1="1.905" x2="-6.35" y2="-1.905" width="0.127" layer="21"/>
|
244
|
+
<wire x1="-3.81" y1="1.905" x2="-3.81" y2="-1.905" width="0.127" layer="21"/>
|
245
|
+
<wire x1="-1.27" y1="1.905" x2="-1.27" y2="-1.905" width="0.127" layer="21"/>
|
246
|
+
<wire x1="1.27" y1="1.905" x2="1.27" y2="-1.905" width="0.127" layer="21"/>
|
247
|
+
<wire x1="3.81" y1="1.905" x2="3.81" y2="-1.905" width="0.127" layer="21"/>
|
248
|
+
<wire x1="6.35" y1="1.905" x2="6.35" y2="-1.905" width="0.127" layer="21"/>
|
249
|
+
<wire x1="8.89" y1="1.905" x2="8.89" y2="-1.905" width="0.127" layer="21"/>
|
250
|
+
<wire x1="11.43" y1="1.905" x2="11.43" y2="-1.905" width="0.127" layer="21"/>
|
251
|
+
<wire x1="13.97" y1="1.905" x2="13.97" y2="-1.905" width="0.127" layer="21"/>
|
252
|
+
<wire x1="16.51" y1="1.905" x2="16.51" y2="-1.905" width="0.127" layer="21"/>
|
253
|
+
<wire x1="16.51" y1="1.905" x2="17.145" y2="2.54" width="0.127" layer="21"/>
|
254
|
+
<wire x1="18.415" y1="2.54" x2="17.145" y2="2.54" width="0.127" layer="21"/>
|
255
|
+
<wire x1="18.415" y1="2.54" x2="19.05" y2="1.905" width="0.127" layer="21"/>
|
256
|
+
<wire x1="19.05" y1="-1.905" x2="18.415" y2="-2.54" width="0.127" layer="21"/>
|
257
|
+
<wire x1="18.415" y1="-2.54" x2="17.145" y2="-2.54" width="0.127" layer="21"/>
|
258
|
+
<wire x1="16.51" y1="-1.905" x2="17.145" y2="-2.54" width="0.127" layer="21"/>
|
259
|
+
<wire x1="19.05" y1="1.905" x2="19.05" y2="-1.905" width="0.127" layer="21"/>
|
260
|
+
<wire x1="21.59" y1="1.905" x2="21.59" y2="-1.905" width="0.127" layer="21"/>
|
261
|
+
<wire x1="24.13" y1="1.905" x2="24.13" y2="-1.905" width="0.127" layer="21"/>
|
262
|
+
<wire x1="26.67" y1="1.905" x2="26.67" y2="-1.905" width="0.127" layer="21"/>
|
263
|
+
<wire x1="29.21" y1="1.905" x2="29.21" y2="-1.905" width="0.127" layer="21"/>
|
264
|
+
<wire x1="20.955" y1="-2.54" x2="19.685" y2="-2.54" width="0.127" layer="21"/>
|
265
|
+
<wire x1="23.495" y1="-2.54" x2="22.225" y2="-2.54" width="0.127" layer="21"/>
|
266
|
+
<wire x1="26.035" y1="-2.54" x2="24.765" y2="-2.54" width="0.127" layer="21"/>
|
267
|
+
<wire x1="28.575" y1="-2.54" x2="27.305" y2="-2.54" width="0.127" layer="21"/>
|
268
|
+
<wire x1="31.115" y1="-2.54" x2="29.845" y2="-2.54" width="0.127" layer="21"/>
|
269
|
+
<wire x1="20.955" y1="2.54" x2="19.685" y2="2.54" width="0.127" layer="21"/>
|
270
|
+
<wire x1="23.495" y1="2.54" x2="22.225" y2="2.54" width="0.127" layer="21"/>
|
271
|
+
<wire x1="26.035" y1="2.54" x2="24.765" y2="2.54" width="0.127" layer="21"/>
|
272
|
+
<wire x1="28.575" y1="2.54" x2="27.305" y2="2.54" width="0.127" layer="21"/>
|
273
|
+
<wire x1="31.115" y1="2.54" x2="29.845" y2="2.54" width="0.127" layer="21"/>
|
274
|
+
<wire x1="20.955" y1="2.54" x2="21.59" y2="1.905" width="0.127" layer="21"/>
|
275
|
+
<wire x1="23.495" y1="2.54" x2="24.13" y2="1.905" width="0.127" layer="21"/>
|
276
|
+
<wire x1="26.035" y1="2.54" x2="26.67" y2="1.905" width="0.127" layer="21"/>
|
277
|
+
<wire x1="28.575" y1="2.54" x2="29.21" y2="1.905" width="0.127" layer="21"/>
|
278
|
+
<wire x1="31.115" y1="2.54" x2="31.75" y2="1.905" width="0.127" layer="21"/>
|
279
|
+
<wire x1="21.59" y1="-1.905" x2="20.955" y2="-2.54" width="0.127" layer="21"/>
|
280
|
+
<wire x1="24.13" y1="-1.905" x2="23.495" y2="-2.54" width="0.127" layer="21"/>
|
281
|
+
<wire x1="26.67" y1="-1.905" x2="26.035" y2="-2.54" width="0.127" layer="21"/>
|
282
|
+
<wire x1="29.21" y1="-1.905" x2="28.575" y2="-2.54" width="0.127" layer="21"/>
|
283
|
+
<wire x1="31.75" y1="-1.905" x2="31.115" y2="-2.54" width="0.127" layer="21"/>
|
284
|
+
<wire x1="19.05" y1="-1.905" x2="19.685" y2="-2.54" width="0.127" layer="21"/>
|
285
|
+
<wire x1="21.59" y1="-1.905" x2="22.225" y2="-2.54" width="0.127" layer="21"/>
|
286
|
+
<wire x1="24.13" y1="-1.905" x2="24.765" y2="-2.54" width="0.127" layer="21"/>
|
287
|
+
<wire x1="26.67" y1="-1.905" x2="27.305" y2="-2.54" width="0.127" layer="21"/>
|
288
|
+
<wire x1="29.21" y1="-1.905" x2="29.845" y2="-2.54" width="0.127" layer="21"/>
|
289
|
+
<wire x1="19.05" y1="1.905" x2="19.685" y2="2.54" width="0.127" layer="21"/>
|
290
|
+
<wire x1="21.59" y1="1.905" x2="22.225" y2="2.54" width="0.127" layer="21"/>
|
291
|
+
<wire x1="24.13" y1="1.905" x2="24.765" y2="2.54" width="0.127" layer="21"/>
|
292
|
+
<wire x1="26.67" y1="1.905" x2="27.305" y2="2.54" width="0.127" layer="21"/>
|
293
|
+
<wire x1="29.21" y1="1.905" x2="29.845" y2="2.54" width="0.127" layer="21"/>
|
294
|
+
<wire x1="31.75" y1="1.905" x2="31.75" y2="-1.905" width="0.127" layer="21"/>
|
295
|
+
<pad name="1" x="-30.48" y="-1.27" drill="1.016" diameter="1.6002"/>
|
296
|
+
<pad name="2" x="-30.48" y="1.27" drill="1.016" diameter="1.6002"/>
|
297
|
+
<pad name="3" x="-27.94" y="-1.27" drill="1.016" diameter="1.6002"/>
|
298
|
+
<pad name="4" x="-27.94" y="1.27" drill="1.016" diameter="1.6002"/>
|
299
|
+
<pad name="5" x="-25.4" y="-1.27" drill="1.016" diameter="1.6002"/>
|
300
|
+
<pad name="6" x="-25.4" y="1.27" drill="1.016" diameter="1.6002"/>
|
301
|
+
<pad name="7" x="-22.86" y="-1.27" drill="1.016" diameter="1.6002"/>
|
302
|
+
<pad name="8" x="-22.86" y="1.27" drill="1.016" diameter="1.6002"/>
|
303
|
+
<pad name="9" x="-20.32" y="-1.27" drill="1.016" diameter="1.6002"/>
|
304
|
+
<pad name="10" x="-20.32" y="1.27" drill="1.016" diameter="1.6002"/>
|
305
|
+
<pad name="11" x="-17.78" y="-1.27" drill="1.016" diameter="1.6002"/>
|
306
|
+
<pad name="12" x="-17.78" y="1.27" drill="1.016" diameter="1.6002"/>
|
307
|
+
<pad name="13" x="-15.24" y="-1.27" drill="1.016" diameter="1.6002"/>
|
308
|
+
<pad name="14" x="-15.24" y="1.27" drill="1.016" diameter="1.6002"/>
|
309
|
+
<pad name="15" x="-12.7" y="-1.27" drill="1.016" diameter="1.6002"/>
|
310
|
+
<pad name="16" x="-12.7" y="1.27" drill="1.016" diameter="1.6002"/>
|
311
|
+
<pad name="17" x="-10.16" y="-1.27" drill="1.016" diameter="1.6002"/>
|
312
|
+
<pad name="18" x="-10.16" y="1.27" drill="1.016" diameter="1.6002"/>
|
313
|
+
<pad name="19" x="-7.62" y="-1.27" drill="1.016" diameter="1.6002"/>
|
314
|
+
<pad name="20" x="-7.62" y="1.27" drill="1.016" diameter="1.6002"/>
|
315
|
+
<pad name="21" x="-5.08" y="-1.27" drill="1.016" diameter="1.6002"/>
|
316
|
+
<pad name="22" x="-5.08" y="1.27" drill="1.016" diameter="1.6002"/>
|
317
|
+
<pad name="23" x="-2.54" y="-1.27" drill="1.016" diameter="1.6002"/>
|
318
|
+
<pad name="24" x="-2.54" y="1.27" drill="1.016" diameter="1.6002"/>
|
319
|
+
<pad name="25" x="0" y="-1.27" drill="1.016" diameter="1.6002"/>
|
320
|
+
<pad name="26" x="0" y="1.27" drill="1.016" diameter="1.6002"/>
|
321
|
+
<pad name="27" x="2.54" y="-1.27" drill="1.016" diameter="1.6002"/>
|
322
|
+
<pad name="28" x="2.54" y="1.27" drill="1.016" diameter="1.6002"/>
|
323
|
+
<pad name="29" x="5.08" y="-1.27" drill="1.016" diameter="1.6002"/>
|
324
|
+
<pad name="30" x="5.08" y="1.27" drill="1.016" diameter="1.6002"/>
|
325
|
+
<pad name="31" x="7.62" y="-1.27" drill="1.016" diameter="1.6002"/>
|
326
|
+
<pad name="32" x="7.62" y="1.27" drill="1.016" diameter="1.6002"/>
|
327
|
+
<pad name="33" x="10.16" y="-1.27" drill="1.016" diameter="1.6002"/>
|
328
|
+
<pad name="34" x="10.16" y="1.27" drill="1.016" diameter="1.6002"/>
|
329
|
+
<pad name="35" x="12.7" y="-1.27" drill="1.016" diameter="1.6002"/>
|
330
|
+
<pad name="36" x="12.7" y="1.27" drill="1.016" diameter="1.6002"/>
|
331
|
+
<pad name="37" x="15.24" y="-1.27" drill="1.016" diameter="1.6002"/>
|
332
|
+
<pad name="38" x="15.24" y="1.27" drill="1.016" diameter="1.6002"/>
|
333
|
+
<pad name="39" x="17.78" y="-1.27" drill="1.016" diameter="1.6002"/>
|
334
|
+
<pad name="40" x="17.78" y="1.27" drill="1.016" diameter="1.6002"/>
|
335
|
+
<pad name="42" x="20.32" y="1.27" drill="1.016" diameter="1.6002"/>
|
336
|
+
<pad name="41" x="20.32" y="-1.27" drill="1.016" diameter="1.6002"/>
|
337
|
+
<pad name="43" x="22.86" y="-1.27" drill="1.016" diameter="1.6002"/>
|
338
|
+
<pad name="45" x="25.4" y="-1.27" drill="1.016" diameter="1.6002"/>
|
339
|
+
<pad name="47" x="27.94" y="-1.27" drill="1.016" diameter="1.6002"/>
|
340
|
+
<pad name="48" x="27.94" y="1.27" drill="1.016" diameter="1.6002"/>
|
341
|
+
<pad name="46" x="25.4" y="1.27" drill="1.016" diameter="1.6002"/>
|
342
|
+
<pad name="44" x="22.86" y="1.27" drill="1.016" diameter="1.6002"/>
|
343
|
+
<pad name="50" x="30.48" y="1.27" drill="1.016" diameter="1.6002"/>
|
344
|
+
<pad name="49" x="30.48" y="-1.27" drill="1.016" diameter="1.6002"/>
|
345
|
+
<text x="-31.75" y="3.175" size="1.27" layer="25" ratio="10">>NAME</text>
|
346
|
+
<rectangle x1="-30.734" y1="-1.524" x2="-30.226" y2="-1.016" layer="51"/>
|
347
|
+
<rectangle x1="-30.734" y1="1.016" x2="-30.226" y2="1.524" layer="51"/>
|
348
|
+
<rectangle x1="-28.194" y1="1.016" x2="-27.686" y2="1.524" layer="51"/>
|
349
|
+
<rectangle x1="-28.194" y1="-1.524" x2="-27.686" y2="-1.016" layer="51"/>
|
350
|
+
<rectangle x1="-25.654" y1="1.016" x2="-25.146" y2="1.524" layer="51"/>
|
351
|
+
<rectangle x1="-25.654" y1="-1.524" x2="-25.146" y2="-1.016" layer="51"/>
|
352
|
+
<rectangle x1="-23.114" y1="1.016" x2="-22.606" y2="1.524" layer="51"/>
|
353
|
+
<rectangle x1="-20.574" y1="1.016" x2="-20.066" y2="1.524" layer="51"/>
|
354
|
+
<rectangle x1="-18.034" y1="1.016" x2="-17.526" y2="1.524" layer="51"/>
|
355
|
+
<rectangle x1="-23.114" y1="-1.524" x2="-22.606" y2="-1.016" layer="51"/>
|
356
|
+
<rectangle x1="-20.574" y1="-1.524" x2="-20.066" y2="-1.016" layer="51"/>
|
357
|
+
<rectangle x1="-18.034" y1="-1.524" x2="-17.526" y2="-1.016" layer="51"/>
|
358
|
+
<rectangle x1="-15.494" y1="1.016" x2="-14.986" y2="1.524" layer="51"/>
|
359
|
+
<rectangle x1="-15.494" y1="-1.524" x2="-14.986" y2="-1.016" layer="51"/>
|
360
|
+
<rectangle x1="-12.954" y1="1.016" x2="-12.446" y2="1.524" layer="51"/>
|
361
|
+
<rectangle x1="-12.954" y1="-1.524" x2="-12.446" y2="-1.016" layer="51"/>
|
362
|
+
<rectangle x1="-10.414" y1="1.016" x2="-9.906" y2="1.524" layer="51"/>
|
363
|
+
<rectangle x1="-10.414" y1="-1.524" x2="-9.906" y2="-1.016" layer="51"/>
|
364
|
+
<rectangle x1="-7.874" y1="1.016" x2="-7.366" y2="1.524" layer="51"/>
|
365
|
+
<rectangle x1="-7.874" y1="-1.524" x2="-7.366" y2="-1.016" layer="51"/>
|
366
|
+
<rectangle x1="-5.334" y1="1.016" x2="-4.826" y2="1.524" layer="51"/>
|
367
|
+
<rectangle x1="-5.334" y1="-1.524" x2="-4.826" y2="-1.016" layer="51"/>
|
368
|
+
<rectangle x1="-2.794" y1="1.016" x2="-2.286" y2="1.524" layer="51"/>
|
369
|
+
<rectangle x1="-2.794" y1="-1.524" x2="-2.286" y2="-1.016" layer="51"/>
|
370
|
+
<rectangle x1="-0.254" y1="1.016" x2="0.254" y2="1.524" layer="51"/>
|
371
|
+
<rectangle x1="-0.254" y1="-1.524" x2="0.254" y2="-1.016" layer="51"/>
|
372
|
+
<rectangle x1="2.286" y1="1.016" x2="2.794" y2="1.524" layer="51"/>
|
373
|
+
<rectangle x1="2.286" y1="-1.524" x2="2.794" y2="-1.016" layer="51"/>
|
374
|
+
<rectangle x1="4.826" y1="1.016" x2="5.334" y2="1.524" layer="51"/>
|
375
|
+
<rectangle x1="4.826" y1="-1.524" x2="5.334" y2="-1.016" layer="51"/>
|
376
|
+
<rectangle x1="7.366" y1="1.016" x2="7.874" y2="1.524" layer="51"/>
|
377
|
+
<rectangle x1="7.366" y1="-1.524" x2="7.874" y2="-1.016" layer="51"/>
|
378
|
+
<rectangle x1="9.906" y1="1.016" x2="10.414" y2="1.524" layer="51"/>
|
379
|
+
<rectangle x1="9.906" y1="-1.524" x2="10.414" y2="-1.016" layer="51"/>
|
380
|
+
<rectangle x1="12.446" y1="1.016" x2="12.954" y2="1.524" layer="51"/>
|
381
|
+
<rectangle x1="12.446" y1="-1.524" x2="12.954" y2="-1.016" layer="51"/>
|
382
|
+
<rectangle x1="14.986" y1="1.016" x2="15.494" y2="1.524" layer="51"/>
|
383
|
+
<rectangle x1="14.986" y1="-1.524" x2="15.494" y2="-1.016" layer="51"/>
|
384
|
+
<rectangle x1="17.526" y1="1.016" x2="18.034" y2="1.524" layer="51"/>
|
385
|
+
<rectangle x1="17.526" y1="-1.524" x2="18.034" y2="-1.016" layer="51"/>
|
386
|
+
<rectangle x1="20.066" y1="1.016" x2="20.574" y2="1.524" layer="51"/>
|
387
|
+
<rectangle x1="22.606" y1="1.016" x2="23.114" y2="1.524" layer="51"/>
|
388
|
+
<rectangle x1="25.146" y1="1.016" x2="25.654" y2="1.524" layer="51"/>
|
389
|
+
<rectangle x1="27.686" y1="1.016" x2="28.194" y2="1.524" layer="51"/>
|
390
|
+
<rectangle x1="30.226" y1="1.016" x2="30.734" y2="1.524" layer="51"/>
|
391
|
+
<rectangle x1="30.226" y1="-1.524" x2="30.734" y2="-1.016" layer="51"/>
|
392
|
+
<rectangle x1="27.686" y1="-1.524" x2="28.194" y2="-1.016" layer="51"/>
|
393
|
+
<rectangle x1="25.146" y1="-1.524" x2="25.654" y2="-1.016" layer="51"/>
|
394
|
+
<rectangle x1="22.606" y1="-1.524" x2="23.114" y2="-1.016" layer="51"/>
|
395
|
+
<rectangle x1="20.066" y1="-1.524" x2="20.574" y2="-1.016" layer="51"/>
|
396
|
+
</package>
|
397
|
+
<package name="1X02">
|
398
|
+
<wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.127" layer="21"/>
|
399
|
+
<wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.127" layer="21"/>
|
400
|
+
<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.127" layer="21"/>
|
401
|
+
<wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.127" layer="21"/>
|
402
|
+
<wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.127" layer="21"/>
|
403
|
+
<wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.127" layer="21"/>
|
404
|
+
<wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.127" layer="21"/>
|
405
|
+
<wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.127" layer="21"/>
|
406
|
+
<wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.127" layer="21"/>
|
407
|
+
<wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.127" layer="21"/>
|
408
|
+
<wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.127" layer="21"/>
|
409
|
+
<wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.127" layer="21"/>
|
410
|
+
<wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.127" layer="21"/>
|
411
|
+
<wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.127" layer="21"/>
|
412
|
+
<wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.127" layer="21"/>
|
413
|
+
<pad name="1" x="-1.27" y="0" drill="1.016" diameter="1.6002"/>
|
414
|
+
<pad name="2" x="1.27" y="0" drill="1.016" diameter="1.6002"/>
|
415
|
+
<text x="-2.6162" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
|
416
|
+
<rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
|
417
|
+
<rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
|
418
|
+
</package>
|
419
|
+
</packages>
|
420
|
+
</library>
|
421
|
+
<library name="RECTIF">
|
422
|
+
<packages>
|
423
|
+
<package name="FB100">
|
424
|
+
<wire x1="-5.969" y1="-3.556" x2="28.702" y2="-3.556" width="0.127" layer="21"/>
|
425
|
+
<wire x1="34.036" y1="-3.556" x2="34.036" y2="3.556" width="0.127" layer="21"/>
|
426
|
+
<wire x1="-5.969" y1="3.556" x2="28.702" y2="3.556" width="0.127" layer="21"/>
|
427
|
+
<wire x1="-5.969" y1="3.556" x2="-5.969" y2="-3.556" width="0.127" layer="21"/>
|
428
|
+
<wire x1="28.702" y1="-3.556" x2="28.702" y2="3.556" width="0.127" layer="21"/>
|
429
|
+
<wire x1="28.702" y1="-3.556" x2="34.036" y2="-3.556" width="0.127" layer="21"/>
|
430
|
+
<wire x1="28.702" y1="3.556" x2="34.036" y2="3.556" width="0.127" layer="21"/>
|
431
|
+
<wire x1="10.16" y1="-2.032" x2="11.176" y2="-2.032" width="0.127" layer="21" curve="180" cap="flat"/>
|
432
|
+
<wire x1="11.176" y1="-2.032" x2="12.192" y2="-2.032" width="0.127" layer="21" curve="-180" cap="flat"/>
|
433
|
+
<wire x1="18.796" y1="-2.032" x2="19.812" y2="-2.032" width="0.127" layer="21" curve="-180" cap="flat"/>
|
434
|
+
<wire x1="17.78" y1="-2.032" x2="18.796" y2="-2.032" width="0.127" layer="21" curve="180" cap="flat"/>
|
435
|
+
<wire x1="24.384" y1="-2.032" x2="25.654" y2="-2.032" width="0.127" layer="21"/>
|
436
|
+
<wire x1="0.889" y1="-2.032" x2="2.159" y2="-2.032" width="0.127" layer="21"/>
|
437
|
+
<wire x1="1.524" y1="-2.667" x2="1.524" y2="-1.397" width="0.127" layer="21"/>
|
438
|
+
<wire x1="34.163" y1="3.683" x2="34.163" y2="-3.683" width="0.127" layer="43"/>
|
439
|
+
<wire x1="34.163" y1="-3.683" x2="-6.096" y2="-3.683" width="0.127" layer="43"/>
|
440
|
+
<wire x1="-6.096" y1="-3.683" x2="-6.096" y2="3.683" width="0.127" layer="43"/>
|
441
|
+
<wire x1="-6.096" y1="3.683" x2="34.163" y2="3.683" width="0.127" layer="43"/>
|
442
|
+
<pad name="+" x="0" y="0" drill="1.3208" diameter="3.1496"/>
|
443
|
+
<pad name="AC1" x="10.0076" y="0" drill="1.3208" diameter="3.1496"/>
|
444
|
+
<pad name="AC2" x="17.5006" y="0" drill="1.3208" diameter="3.1496"/>
|
445
|
+
<pad name="-" x="24.9936" y="0" drill="1.3208" diameter="3.1496"/>
|
446
|
+
<text x="-5.969" y="4.064" size="1.778" layer="25" ratio="10">>NAME</text>
|
447
|
+
<text x="2.54" y="4.064" size="1.778" layer="27" ratio="10">>VALUE</text>
|
448
|
+
</package>
|
449
|
+
</packages>
|
450
|
+
</library>
|
451
|
+
<library name="ELKO">
|
452
|
+
<packages>
|
453
|
+
<package name="E2,5-5">
|
454
|
+
<wire x1="-1.651" y1="1.27" x2="-1.397" y2="1.27" width="0.127" layer="21"/>
|
455
|
+
<wire x1="-1.397" y1="1.016" x2="-1.397" y2="1.27" width="0.127" layer="21"/>
|
456
|
+
<wire x1="-1.397" y1="1.27" x2="-1.143" y2="1.27" width="0.127" layer="21"/>
|
457
|
+
<wire x1="-1.397" y1="1.27" x2="-1.397" y2="1.524" width="0.127" layer="21"/>
|
458
|
+
<wire x1="-1.651" y1="0" x2="-0.762" y2="0" width="0.127" layer="27"/>
|
459
|
+
<wire x1="-0.762" y1="0" x2="-0.762" y2="-1.27" width="0.127" layer="27"/>
|
460
|
+
<wire x1="-0.762" y1="-1.27" x2="-0.254" y2="-1.27" width="0.127" layer="27"/>
|
461
|
+
<wire x1="-0.254" y1="-1.27" x2="-0.254" y2="1.27" width="0.127" layer="27"/>
|
462
|
+
<wire x1="-0.254" y1="1.27" x2="-0.762" y2="1.27" width="0.127" layer="27"/>
|
463
|
+
<wire x1="-0.762" y1="1.27" x2="-0.762" y2="0" width="0.127" layer="27"/>
|
464
|
+
<wire x1="0.635" y1="0" x2="1.651" y2="0" width="0.127" layer="27"/>
|
465
|
+
<circle x="0" y="0" radius="2.54" width="0.127" layer="21"/>
|
466
|
+
<pad name="-" x="1.27" y="0" drill="0.8128" diameter="1.6002"/>
|
467
|
+
<pad name="+" x="-1.27" y="0" drill="0.8128" diameter="1.6002"/>
|
468
|
+
<text x="3.429" y="0.508" size="1.27" layer="25" ratio="12">>NAME</text>
|
469
|
+
<text x="3.429" y="-1.27" size="1.27" layer="27" ratio="12">>VALUE</text>
|
470
|
+
<rectangle x1="0.254" y1="-1.27" x2="0.762" y2="1.27" layer="27"/>
|
471
|
+
</package>
|
472
|
+
<package name="E35-16">
|
473
|
+
<wire x1="15.24" y1="7.874" x2="15.24" y2="-7.874" width="0.127" layer="21"/>
|
474
|
+
<wire x1="-15.24" y1="7.874" x2="-15.24" y2="-7.874" width="0.127" layer="21"/>
|
475
|
+
<wire x1="-15.24" y1="7.874" x2="-14.859" y2="8.255" width="0.127" layer="21"/>
|
476
|
+
<wire x1="-14.859" y1="8.255" x2="-13.716" y2="8.255" width="0.127" layer="21"/>
|
477
|
+
<wire x1="-13.335" y1="7.874" x2="-13.716" y2="8.255" width="0.127" layer="21"/>
|
478
|
+
<wire x1="-13.335" y1="7.874" x2="-12.446" y2="7.874" width="0.127" layer="21"/>
|
479
|
+
<wire x1="-12.446" y1="7.874" x2="-12.065" y2="8.255" width="0.127" layer="21"/>
|
480
|
+
<wire x1="-13.335" y1="7.874" x2="-13.335" y2="7.366" width="0.127" layer="21"/>
|
481
|
+
<wire x1="-12.446" y1="7.874" x2="-12.446" y2="7.366" width="0.127" layer="21"/>
|
482
|
+
<wire x1="-15.24" y1="7.874" x2="-13.335" y2="7.874" width="0.127" layer="21"/>
|
483
|
+
<wire x1="-12.446" y1="7.874" x2="15.24" y2="7.874" width="0.127" layer="21"/>
|
484
|
+
<wire x1="-13.335" y1="7.366" x2="-12.446" y2="7.366" width="0.127" layer="21"/>
|
485
|
+
<wire x1="-14.859" y1="8.128" x2="-13.716" y2="8.128" width="0.3048" layer="21"/>
|
486
|
+
<wire x1="-14.986" y1="8.001" x2="-13.589" y2="8.001" width="0.3048" layer="21"/>
|
487
|
+
<wire x1="-13.208" y1="7.747" x2="-12.573" y2="7.747" width="0.3048" layer="21"/>
|
488
|
+
<wire x1="-13.208" y1="7.493" x2="-12.573" y2="7.493" width="0.3048" layer="21"/>
|
489
|
+
<wire x1="-12.065" y1="8.128" x2="14.859" y2="8.128" width="0.3048" layer="21"/>
|
490
|
+
<wire x1="-12.192" y1="8.001" x2="14.986" y2="8.001" width="0.3048" layer="21"/>
|
491
|
+
<wire x1="-15.24" y1="-7.874" x2="-15.113" y2="-8.001" width="0.127" layer="21"/>
|
492
|
+
<wire x1="-14.859" y1="-8.255" x2="-13.716" y2="-8.255" width="0.127" layer="21"/>
|
493
|
+
<wire x1="-13.335" y1="-7.874" x2="-13.462" y2="-8.001" width="0.127" layer="21"/>
|
494
|
+
<wire x1="-13.335" y1="-7.874" x2="-12.446" y2="-7.874" width="0.127" layer="21"/>
|
495
|
+
<wire x1="-12.065" y1="-8.255" x2="-12.319" y2="-8.001" width="0.127" layer="21"/>
|
496
|
+
<wire x1="-15.113" y1="-8.001" x2="-13.462" y2="-8.001" width="0.127" layer="21"/>
|
497
|
+
<wire x1="-15.113" y1="-8.001" x2="-14.859" y2="-8.255" width="0.127" layer="21"/>
|
498
|
+
<wire x1="-13.462" y1="-8.001" x2="-13.716" y2="-8.255" width="0.127" layer="21"/>
|
499
|
+
<wire x1="-12.319" y1="-8.001" x2="15.113" y2="-8.001" width="0.127" layer="21"/>
|
500
|
+
<wire x1="-12.319" y1="-8.001" x2="-12.446" y2="-7.874" width="0.127" layer="21"/>
|
501
|
+
<wire x1="-13.335" y1="7.366" x2="-13.335" y2="-7.62" width="0.127" layer="21"/>
|
502
|
+
<wire x1="-12.446" y1="7.366" x2="-12.446" y2="-7.62" width="0.127" layer="21"/>
|
503
|
+
<wire x1="-13.335" y1="-7.62" x2="-12.446" y2="-7.62" width="0.127" layer="21"/>
|
504
|
+
<wire x1="-13.335" y1="-7.62" x2="-13.335" y2="-7.874" width="0.127" layer="21"/>
|
505
|
+
<wire x1="-12.446" y1="-7.62" x2="-12.446" y2="-7.874" width="0.127" layer="21"/>
|
506
|
+
<wire x1="-12.065" y1="-8.128" x2="14.859" y2="-8.128" width="0.3048" layer="21"/>
|
507
|
+
<wire x1="-14.859" y1="-8.128" x2="-13.716" y2="-8.128" width="0.3048" layer="21"/>
|
508
|
+
<wire x1="-13.208" y1="-7.747" x2="-12.573" y2="-7.747" width="0.3048" layer="21"/>
|
509
|
+
<wire x1="15.24" y1="-7.874" x2="15.113" y2="-8.001" width="0.127" layer="21"/>
|
510
|
+
<wire x1="14.859" y1="-8.255" x2="-12.065" y2="-8.255" width="0.127" layer="21"/>
|
511
|
+
<wire x1="15.113" y1="-8.001" x2="14.859" y2="-8.255" width="0.127" layer="21"/>
|
512
|
+
<wire x1="15.24" y1="7.874" x2="14.859" y2="8.255" width="0.127" layer="21"/>
|
513
|
+
<wire x1="14.859" y1="8.255" x2="-12.065" y2="8.255" width="0.127" layer="21"/>
|
514
|
+
<wire x1="-10.287" y1="-1.524" x2="-9.779" y2="-1.524" width="0.127" layer="21"/>
|
515
|
+
<wire x1="-9.779" y1="-1.524" x2="-9.779" y2="1.524" width="0.127" layer="21"/>
|
516
|
+
<wire x1="-9.779" y1="1.524" x2="-10.287" y2="1.524" width="0.127" layer="21"/>
|
517
|
+
<wire x1="-11.049" y1="1.27" x2="-11.049" y2="0.508" width="0.127" layer="21"/>
|
518
|
+
<wire x1="-11.43" y1="0.889" x2="-10.668" y2="0.889" width="0.127" layer="21"/>
|
519
|
+
<wire x1="-10.287" y1="1.524" x2="-10.287" y2="0" width="0.127" layer="21"/>
|
520
|
+
<wire x1="-10.287" y1="0" x2="-10.287" y2="-1.524" width="0.127" layer="21"/>
|
521
|
+
<wire x1="-8.89" y1="0" x2="14.097" y2="0" width="0.127" layer="21"/>
|
522
|
+
<wire x1="-11.43" y1="0" x2="-10.287" y2="0" width="0.127" layer="21"/>
|
523
|
+
<wire x1="17.78" y1="0" x2="16.002" y2="0" width="0.762" layer="27"/>
|
524
|
+
<wire x1="-17.78" y1="0" x2="-16.002" y2="0" width="0.762" layer="27"/>
|
525
|
+
<pad name="+" x="-17.78" y="0" drill="1.1176" diameter="3.1496"/>
|
526
|
+
<pad name="-" x="17.78" y="0" drill="1.1176" diameter="3.1496"/>
|
527
|
+
<text x="-8.001" y="0.762" size="1.778" layer="25" ratio="10">>NAME</text>
|
528
|
+
<text x="-7.9756" y="-2.4892" size="1.778" layer="27" ratio="10">>VALUE</text>
|
529
|
+
<text x="8.89" y="-7.62" size="1.27" layer="21" ratio="12">16x30</text>
|
530
|
+
<rectangle x1="-9.271" y1="-1.524" x2="-8.763" y2="1.524" layer="21"/>
|
531
|
+
<rectangle x1="-16.129" y1="-0.381" x2="-15.24" y2="0.381" layer="21"/>
|
532
|
+
<rectangle x1="15.24" y1="-0.381" x2="16.129" y2="0.381" layer="21"/>
|
533
|
+
</package>
|
534
|
+
</packages>
|
535
|
+
</library>
|
536
|
+
<library name="CAP-WI">
|
537
|
+
<packages>
|
538
|
+
<package name="C5B2,5A">
|
539
|
+
<wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
|
540
|
+
<wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
|
541
|
+
<wire x1="-0.3048" y1="0" x2="-1.397" y2="0" width="0.127" layer="21"/>
|
542
|
+
<wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
|
543
|
+
<wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
|
544
|
+
<wire x1="0.3302" y1="0" x2="1.397" y2="0" width="0.127" layer="21"/>
|
545
|
+
<wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.127" layer="21" curve="-90"/>
|
546
|
+
<wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.127" layer="21" curve="90"/>
|
547
|
+
<wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.127" layer="21" curve="90"/>
|
548
|
+
<wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.127" layer="21" curve="-90"/>
|
549
|
+
<wire x1="3.683" y1="1.016" x2="3.683" y2="-1.016" width="0.127" layer="21"/>
|
550
|
+
<wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.127" layer="21"/>
|
551
|
+
<wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.127" layer="21"/>
|
552
|
+
<wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.127" layer="21"/>
|
553
|
+
<pad name="1" x="-2.54" y="0" drill="0.8128" diameter="1.778"/>
|
554
|
+
<pad name="2" x="2.54" y="0" drill="0.8128" diameter="1.778"/>
|
555
|
+
<text x="4.191" y="0" size="1.27" layer="25" ratio="10">>NAME</text>
|
556
|
+
<text x="4.191" y="-1.524" size="1.27" layer="27" ratio="10">>VALUE</text>
|
557
|
+
</package>
|
558
|
+
</packages>
|
559
|
+
</library>
|
560
|
+
<library name="LINEAR">
|
561
|
+
<packages>
|
562
|
+
<package name="TO220H">
|
563
|
+
<wire x1="-5.207" y1="-1.27" x2="5.207" y2="-1.27" width="0.127" layer="21"/>
|
564
|
+
<wire x1="5.207" y1="14.605" x2="-5.207" y2="14.605" width="0.127" layer="21"/>
|
565
|
+
<wire x1="5.207" y1="-1.27" x2="5.207" y2="11.176" width="0.127" layer="21"/>
|
566
|
+
<wire x1="5.207" y1="11.176" x2="4.318" y2="11.176" width="0.127" layer="21"/>
|
567
|
+
<wire x1="4.318" y1="11.176" x2="4.318" y2="12.7" width="0.127" layer="21"/>
|
568
|
+
<wire x1="4.318" y1="12.7" x2="5.207" y2="12.7" width="0.127" layer="21"/>
|
569
|
+
<wire x1="5.207" y1="12.7" x2="5.207" y2="14.605" width="0.127" layer="21"/>
|
570
|
+
<wire x1="-5.207" y1="-1.27" x2="-5.207" y2="11.176" width="0.127" layer="21"/>
|
571
|
+
<wire x1="-5.207" y1="11.176" x2="-4.318" y2="11.176" width="0.127" layer="21"/>
|
572
|
+
<wire x1="-4.318" y1="11.176" x2="-4.318" y2="12.7" width="0.127" layer="21"/>
|
573
|
+
<wire x1="-4.318" y1="12.7" x2="-5.207" y2="12.7" width="0.127" layer="21"/>
|
574
|
+
<wire x1="-5.207" y1="12.7" x2="-5.207" y2="14.605" width="0.127" layer="21"/>
|
575
|
+
<wire x1="-4.572" y1="-0.635" x2="4.572" y2="-0.635" width="0.0508" layer="21"/>
|
576
|
+
<wire x1="4.572" y1="7.62" x2="4.572" y2="-0.635" width="0.0508" layer="21"/>
|
577
|
+
<wire x1="4.572" y1="7.62" x2="-4.572" y2="7.62" width="0.0508" layer="21"/>
|
578
|
+
<wire x1="-4.572" y1="-0.635" x2="-4.572" y2="7.62" width="0.0508" layer="21"/>
|
579
|
+
<circle x="0" y="11.176" radius="1.8034" width="0.127" layer="21"/>
|
580
|
+
<circle x="0" y="11.176" radius="0.635" width="0.6096" layer="16"/>
|
581
|
+
<circle x="0" y="11.176" radius="2.54" width="2.54" layer="43"/>
|
582
|
+
<circle x="0" y="11.176" radius="2.54" width="2.54" layer="42"/>
|
583
|
+
<pad name="1" x="-2.54" y="-6.35" drill="1.1176" diameter="2" shape="long" rot="R90"/>
|
584
|
+
<pad name="2" x="0" y="-6.35" drill="1.1176" diameter="2" shape="long" rot="R90"/>
|
585
|
+
<pad name="3" x="2.54" y="-6.35" drill="1.1176" diameter="2" shape="long" rot="R90"/>
|
586
|
+
<text x="-3.81" y="5.207" size="1.778" layer="25" ratio="10">>NAME</text>
|
587
|
+
<text x="-3.937" y="2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
|
588
|
+
<rectangle x1="2.159" y1="-4.699" x2="2.921" y2="-4.064" layer="21"/>
|
589
|
+
<rectangle x1="-0.381" y1="-4.699" x2="0.381" y2="-4.064" layer="21"/>
|
590
|
+
<rectangle x1="-2.921" y1="-4.699" x2="-2.159" y2="-4.064" layer="21"/>
|
591
|
+
<rectangle x1="-3.175" y1="-4.064" x2="-1.905" y2="-1.27" layer="21"/>
|
592
|
+
<rectangle x1="-0.635" y1="-4.064" x2="0.635" y2="-1.27" layer="21"/>
|
593
|
+
<rectangle x1="1.905" y1="-4.064" x2="3.175" y2="-1.27" layer="21"/>
|
594
|
+
<rectangle x1="-2.921" y1="-6.604" x2="-2.159" y2="-4.699" layer="51"/>
|
595
|
+
<rectangle x1="-0.381" y1="-6.604" x2="0.381" y2="-4.699" layer="51"/>
|
596
|
+
<rectangle x1="2.159" y1="-6.604" x2="2.921" y2="-4.699" layer="51"/>
|
597
|
+
<hole x="0" y="11.176" drill="3.302"/>
|
598
|
+
</package>
|
599
|
+
</packages>
|
600
|
+
</library>
|
601
|
+
<library name="R">
|
602
|
+
<packages>
|
603
|
+
<package name="0207/10">
|
604
|
+
<wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
|
605
|
+
<wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
|
606
|
+
<wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.127" layer="21" curve="-90"/>
|
607
|
+
<wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.127" layer="21" curve="90"/>
|
608
|
+
<wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.127" layer="21" curve="90"/>
|
609
|
+
<wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.127" layer="21" curve="-90"/>
|
610
|
+
<wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.127" layer="21" curve="-90"/>
|
611
|
+
<wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.127" layer="21" curve="90"/>
|
612
|
+
<wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.127" layer="21" curve="90"/>
|
613
|
+
<wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.127" layer="21" curve="-90"/>
|
614
|
+
<wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="27"/>
|
615
|
+
<wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="27"/>
|
616
|
+
<wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.127" layer="21"/>
|
617
|
+
<wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.127" layer="21"/>
|
618
|
+
<wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.127" layer="21"/>
|
619
|
+
<wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.127" layer="21"/>
|
620
|
+
<wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.127" layer="21"/>
|
621
|
+
<wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.127" layer="21"/>
|
622
|
+
<wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.127" layer="21"/>
|
623
|
+
<wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.127" layer="21"/>
|
624
|
+
<wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.127" layer="21"/>
|
625
|
+
<wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.127" layer="21"/>
|
626
|
+
<wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.127" layer="21"/>
|
627
|
+
<wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.127" layer="21"/>
|
628
|
+
<wire x1="-2.667" y1="0.889" x2="-2.667" y2="-0.889" width="0.0508" layer="21"/>
|
629
|
+
<wire x1="-2.921" y1="0.889" x2="-2.921" y2="-0.889" width="0.0508" layer="21"/>
|
630
|
+
<wire x1="2.921" y1="0.889" x2="2.921" y2="-0.889" width="0.0508" layer="21"/>
|
631
|
+
<wire x1="2.667" y1="0.889" x2="2.667" y2="-0.889" width="0.0508" layer="21"/>
|
632
|
+
<pad name="1" x="-5.08" y="0" drill="0.8128" diameter="1.6002"/>
|
633
|
+
<pad name="2" x="5.08" y="0" drill="0.8128" diameter="1.6002"/>
|
634
|
+
<text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">>NAME</text>
|
635
|
+
<text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
|
636
|
+
<text x="-3.048" y="1.524" size="1.27" layer="25" ratio="12">>NAME</text>
|
637
|
+
<text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="12">>VALUE</text>
|
638
|
+
<rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
|
639
|
+
<rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
|
640
|
+
<rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
|
641
|
+
<rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
|
642
|
+
</package>
|
643
|
+
<package name="0207/10@1">
|
644
|
+
<wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
|
645
|
+
<wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
|
646
|
+
<wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.127" layer="21" curve="-90"/>
|
647
|
+
<wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.127" layer="21" curve="90"/>
|
648
|
+
<wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.127" layer="21" curve="90"/>
|
649
|
+
<wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.127" layer="21" curve="-90"/>
|
650
|
+
<wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.127" layer="21"/>
|
651
|
+
<wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.127" layer="21"/>
|
652
|
+
<wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.127" layer="21"/>
|
653
|
+
<wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.127" layer="21"/>
|
654
|
+
<wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.127" layer="21"/>
|
655
|
+
<wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.127" layer="21"/>
|
656
|
+
<wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.127" layer="21"/>
|
657
|
+
<wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.127" layer="21"/>
|
658
|
+
<wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.127" layer="21"/>
|
659
|
+
<wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.127" layer="21"/>
|
660
|
+
<wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.127" layer="21"/>
|
661
|
+
<wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.127" layer="21"/>
|
662
|
+
<wire x1="-2.667" y1="0.889" x2="-2.667" y2="-0.889" width="0.0508" layer="21"/>
|
663
|
+
<wire x1="-2.921" y1="0.889" x2="-2.921" y2="-0.889" width="0.0508" layer="21"/>
|
664
|
+
<wire x1="2.921" y1="0.889" x2="2.921" y2="-0.889" width="0.0508" layer="21"/>
|
665
|
+
<wire x1="2.667" y1="0.889" x2="2.667" y2="-0.889" width="0.0508" layer="21"/>
|
666
|
+
<pad name="1" x="-5.08" y="0" drill="0.8128" diameter="1.6002"/>
|
667
|
+
<pad name="2" x="5.08" y="0" drill="0.8128" diameter="1.6002"/>
|
668
|
+
<text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">>NAME</text>
|
669
|
+
<text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
|
670
|
+
<rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
|
671
|
+
<rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
|
672
|
+
</package>
|
673
|
+
</packages>
|
674
|
+
</library>
|
675
|
+
<library name="ST-ML">
|
676
|
+
<packages>
|
677
|
+
<package name="ML16">
|
678
|
+
<wire x1="-12.7" y1="3.175" x2="12.7" y2="3.175" width="0.127" layer="21"/>
|
679
|
+
<wire x1="12.7" y1="-3.175" x2="12.7" y2="3.175" width="0.127" layer="21"/>
|
680
|
+
<wire x1="-12.7" y1="3.175" x2="-12.7" y2="-3.175" width="0.127" layer="21"/>
|
681
|
+
<wire x1="-13.97" y1="4.445" x2="-12.7" y2="4.445" width="0.127" layer="21"/>
|
682
|
+
<wire x1="13.97" y1="-4.445" x2="9.271" y2="-4.445" width="0.127" layer="21"/>
|
683
|
+
<wire x1="13.97" y1="-4.445" x2="13.97" y2="4.445" width="0.127" layer="21"/>
|
684
|
+
<wire x1="-13.97" y1="4.445" x2="-13.97" y2="-4.445" width="0.127" layer="21"/>
|
685
|
+
<wire x1="12.7" y1="-3.175" x2="8.382" y2="-3.175" width="0.127" layer="21"/>
|
686
|
+
<wire x1="2.032" y1="-2.413" x2="2.032" y2="-3.175" width="0.127" layer="21"/>
|
687
|
+
<wire x1="2.032" y1="-2.413" x2="-2.032" y2="-2.413" width="0.127" layer="21"/>
|
688
|
+
<wire x1="-2.032" y1="-3.175" x2="-2.032" y2="-2.413" width="0.127" layer="21"/>
|
689
|
+
<wire x1="-2.032" y1="-3.175" x2="-4.318" y2="-3.175" width="0.127" layer="21"/>
|
690
|
+
<wire x1="-2.032" y1="-3.175" x2="-2.032" y2="-3.429" width="0.127" layer="21"/>
|
691
|
+
<wire x1="2.032" y1="-3.175" x2="2.032" y2="-3.429" width="0.127" layer="21"/>
|
692
|
+
<wire x1="2.032" y1="-4.445" x2="-2.032" y2="-4.445" width="0.127" layer="21"/>
|
693
|
+
<wire x1="12.7" y1="4.445" x2="12.7" y2="4.699" width="0.127" layer="21"/>
|
694
|
+
<wire x1="12.7" y1="4.699" x2="11.43" y2="4.699" width="0.127" layer="21"/>
|
695
|
+
<wire x1="11.43" y1="4.445" x2="11.43" y2="4.699" width="0.127" layer="21"/>
|
696
|
+
<wire x1="12.7" y1="4.445" x2="13.97" y2="4.445" width="0.127" layer="21"/>
|
697
|
+
<wire x1="0.635" y1="4.699" x2="-0.635" y2="4.699" width="0.127" layer="21"/>
|
698
|
+
<wire x1="0.635" y1="4.699" x2="0.635" y2="4.445" width="0.127" layer="21"/>
|
699
|
+
<wire x1="0.635" y1="4.445" x2="11.43" y2="4.445" width="0.127" layer="21"/>
|
700
|
+
<wire x1="-0.635" y1="4.699" x2="-0.635" y2="4.445" width="0.127" layer="21"/>
|
701
|
+
<wire x1="-11.43" y1="4.699" x2="-12.7" y2="4.699" width="0.127" layer="21"/>
|
702
|
+
<wire x1="-12.7" y1="4.699" x2="-12.7" y2="4.445" width="0.127" layer="21"/>
|
703
|
+
<wire x1="-11.43" y1="4.699" x2="-11.43" y2="4.445" width="0.127" layer="21"/>
|
704
|
+
<wire x1="-11.43" y1="4.445" x2="-0.635" y2="4.445" width="0.127" layer="21"/>
|
705
|
+
<wire x1="5.969" y1="-4.445" x2="2.032" y2="-4.445" width="0.127" layer="21"/>
|
706
|
+
<wire x1="6.858" y1="-3.175" x2="6.858" y2="-3.429" width="0.127" layer="21"/>
|
707
|
+
<wire x1="6.858" y1="-3.175" x2="2.032" y2="-3.175" width="0.127" layer="21"/>
|
708
|
+
<wire x1="8.382" y1="-3.175" x2="8.382" y2="-3.429" width="0.127" layer="21"/>
|
709
|
+
<wire x1="8.382" y1="-3.175" x2="6.858" y2="-3.175" width="0.127" layer="21"/>
|
710
|
+
<wire x1="5.969" y1="-4.445" x2="6.35" y2="-3.937" width="0.127" layer="21"/>
|
711
|
+
<wire x1="8.89" y1="-3.937" x2="9.271" y2="-4.445" width="0.127" layer="21"/>
|
712
|
+
<wire x1="8.89" y1="-3.937" x2="8.382" y2="-3.937" width="0.127" layer="21"/>
|
713
|
+
<wire x1="6.858" y1="-3.429" x2="2.032" y2="-3.429" width="0.0508" layer="21"/>
|
714
|
+
<wire x1="2.032" y1="-3.429" x2="2.032" y2="-4.445" width="0.127" layer="21"/>
|
715
|
+
<wire x1="8.382" y1="-3.429" x2="12.954" y2="-3.429" width="0.0508" layer="21"/>
|
716
|
+
<wire x1="12.954" y1="-3.429" x2="12.954" y2="3.429" width="0.0508" layer="21"/>
|
717
|
+
<wire x1="12.954" y1="3.429" x2="-12.954" y2="3.429" width="0.0508" layer="21"/>
|
718
|
+
<wire x1="-12.954" y1="3.429" x2="-12.954" y2="-3.429" width="0.0508" layer="21"/>
|
719
|
+
<wire x1="-12.954" y1="-3.429" x2="-5.842" y2="-3.429" width="0.127" layer="21"/>
|
720
|
+
<wire x1="-2.032" y1="-3.429" x2="-2.032" y2="-4.445" width="0.127" layer="21"/>
|
721
|
+
<wire x1="6.858" y1="-3.429" x2="6.858" y2="-3.937" width="0.127" layer="21"/>
|
722
|
+
<wire x1="6.858" y1="-3.937" x2="6.35" y2="-3.937" width="0.127" layer="21"/>
|
723
|
+
<wire x1="8.382" y1="-3.429" x2="8.382" y2="-3.937" width="0.127" layer="21"/>
|
724
|
+
<wire x1="8.382" y1="-3.937" x2="6.858" y2="-3.937" width="0.127" layer="21"/>
|
725
|
+
<wire x1="-13.97" y1="-4.445" x2="-9.652" y2="-4.445" width="0.127" layer="21"/>
|
726
|
+
<wire x1="-9.652" y1="-4.318" x2="-9.652" y2="-4.445" width="0.127" layer="21"/>
|
727
|
+
<wire x1="-9.652" y1="-4.318" x2="-8.128" y2="-4.318" width="0.127" layer="21"/>
|
728
|
+
<wire x1="-8.128" y1="-4.445" x2="-8.128" y2="-4.318" width="0.127" layer="21"/>
|
729
|
+
<wire x1="-8.128" y1="-4.445" x2="-6.731" y2="-4.445" width="0.127" layer="21"/>
|
730
|
+
<wire x1="-5.842" y1="-3.429" x2="-5.842" y2="-3.937" width="0.127" layer="21"/>
|
731
|
+
<wire x1="-4.318" y1="-3.429" x2="-4.318" y2="-3.937" width="0.127" layer="21"/>
|
732
|
+
<wire x1="-4.318" y1="-3.429" x2="-2.032" y2="-3.429" width="0.127" layer="21"/>
|
733
|
+
<wire x1="-5.842" y1="-3.175" x2="-5.842" y2="-3.429" width="0.127" layer="21"/>
|
734
|
+
<wire x1="-5.842" y1="-3.175" x2="-12.7" y2="-3.175" width="0.127" layer="21"/>
|
735
|
+
<wire x1="-4.318" y1="-3.175" x2="-4.318" y2="-3.429" width="0.127" layer="21"/>
|
736
|
+
<wire x1="-4.318" y1="-3.175" x2="-5.842" y2="-3.175" width="0.127" layer="21"/>
|
737
|
+
<wire x1="-4.318" y1="-3.937" x2="-5.842" y2="-3.937" width="0.127" layer="21"/>
|
738
|
+
<wire x1="-5.842" y1="-3.937" x2="-6.35" y2="-3.937" width="0.127" layer="21"/>
|
739
|
+
<wire x1="-6.731" y1="-4.445" x2="-6.35" y2="-3.937" width="0.127" layer="21"/>
|
740
|
+
<wire x1="-3.81" y1="-3.937" x2="-3.429" y2="-4.445" width="0.127" layer="21"/>
|
741
|
+
<wire x1="-3.429" y1="-4.445" x2="-2.032" y2="-4.445" width="0.127" layer="21"/>
|
742
|
+
<wire x1="-3.81" y1="-3.937" x2="-4.318" y2="-3.937" width="0.127" layer="21"/>
|
743
|
+
<pad name="1" x="-8.89" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
744
|
+
<pad name="2" x="-8.89" y="1.27" drill="0.9144" diameter="1.6002"/>
|
745
|
+
<pad name="3" x="-6.35" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
746
|
+
<pad name="4" x="-6.35" y="1.27" drill="0.9144" diameter="1.6002"/>
|
747
|
+
<pad name="5" x="-3.81" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
748
|
+
<pad name="6" x="-3.81" y="1.27" drill="0.9144" diameter="1.6002"/>
|
749
|
+
<pad name="7" x="-1.27" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
750
|
+
<pad name="8" x="-1.27" y="1.27" drill="0.9144" diameter="1.6002"/>
|
751
|
+
<pad name="9" x="1.27" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
752
|
+
<pad name="10" x="1.27" y="1.27" drill="0.9144" diameter="1.6002"/>
|
753
|
+
<pad name="11" x="3.81" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
754
|
+
<pad name="12" x="3.81" y="1.27" drill="0.9144" diameter="1.6002"/>
|
755
|
+
<pad name="13" x="6.35" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
756
|
+
<pad name="14" x="6.35" y="1.27" drill="0.9144" diameter="1.6002"/>
|
757
|
+
<pad name="15" x="8.89" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
758
|
+
<pad name="16" x="8.89" y="1.27" drill="0.9144" diameter="1.6002"/>
|
759
|
+
<text x="-13.97" y="5.715" size="1.778" layer="25" ratio="10">>NAME</text>
|
760
|
+
<text x="1.27" y="5.715" size="1.778" layer="27" ratio="10">>VALUE</text>
|
761
|
+
<text x="-1.016" y="-4.064" size="1.27" layer="21" ratio="12">16</text>
|
762
|
+
<text x="-11.43" y="-1.905" size="1.27" layer="21" ratio="12">1</text>
|
763
|
+
<text x="-11.43" y="0.635" size="1.27" layer="21" ratio="12">2</text>
|
764
|
+
<rectangle x1="8.636" y1="1.016" x2="9.144" y2="1.524" layer="27"/>
|
765
|
+
<rectangle x1="8.636" y1="-1.524" x2="9.144" y2="-1.016" layer="27"/>
|
766
|
+
<rectangle x1="6.096" y1="1.016" x2="6.604" y2="1.524" layer="27"/>
|
767
|
+
<rectangle x1="3.556" y1="1.016" x2="4.064" y2="1.524" layer="27"/>
|
768
|
+
<rectangle x1="3.556" y1="-1.524" x2="4.064" y2="-1.016" layer="27"/>
|
769
|
+
<rectangle x1="6.096" y1="-1.524" x2="6.604" y2="-1.016" layer="27"/>
|
770
|
+
<rectangle x1="-6.604" y1="1.016" x2="-6.096" y2="1.524" layer="27"/>
|
771
|
+
<rectangle x1="-9.144" y1="1.016" x2="-8.636" y2="1.524" layer="27"/>
|
772
|
+
<rectangle x1="-4.064" y1="1.016" x2="-3.556" y2="1.524" layer="27"/>
|
773
|
+
<rectangle x1="1.016" y1="1.016" x2="1.524" y2="1.524" layer="27"/>
|
774
|
+
<rectangle x1="-1.524" y1="1.016" x2="-1.016" y2="1.524" layer="27"/>
|
775
|
+
<rectangle x1="-6.604" y1="-1.524" x2="-6.096" y2="-1.016" layer="27"/>
|
776
|
+
<rectangle x1="-9.144" y1="-1.524" x2="-8.636" y2="-1.016" layer="27"/>
|
777
|
+
<rectangle x1="-4.064" y1="-1.524" x2="-3.556" y2="-1.016" layer="27"/>
|
778
|
+
<rectangle x1="1.016" y1="-1.524" x2="1.524" y2="-1.016" layer="27"/>
|
779
|
+
<rectangle x1="-1.524" y1="-1.524" x2="-1.016" y2="-1.016" layer="27"/>
|
780
|
+
</package>
|
781
|
+
<package name="ML26">
|
782
|
+
<wire x1="-19.05" y1="3.175" x2="19.05" y2="3.175" width="0.127" layer="21"/>
|
783
|
+
<wire x1="19.05" y1="-3.175" x2="19.05" y2="3.175" width="0.127" layer="21"/>
|
784
|
+
<wire x1="-19.05" y1="3.175" x2="-19.05" y2="-3.175" width="0.127" layer="21"/>
|
785
|
+
<wire x1="-20.32" y1="4.445" x2="-19.05" y2="4.445" width="0.127" layer="21"/>
|
786
|
+
<wire x1="20.32" y1="-4.445" x2="15.621" y2="-4.445" width="0.127" layer="21"/>
|
787
|
+
<wire x1="20.32" y1="-4.445" x2="20.32" y2="4.445" width="0.127" layer="21"/>
|
788
|
+
<wire x1="-20.32" y1="4.445" x2="-20.32" y2="-4.445" width="0.127" layer="21"/>
|
789
|
+
<wire x1="19.05" y1="-3.175" x2="14.732" y2="-3.175" width="0.127" layer="21"/>
|
790
|
+
<wire x1="2.032" y1="-2.413" x2="2.032" y2="-3.175" width="0.127" layer="21"/>
|
791
|
+
<wire x1="2.032" y1="-2.413" x2="-2.032" y2="-2.413" width="0.127" layer="21"/>
|
792
|
+
<wire x1="-2.032" y1="-3.175" x2="-2.032" y2="-2.413" width="0.127" layer="21"/>
|
793
|
+
<wire x1="-2.032" y1="-3.175" x2="-10.668" y2="-3.175" width="0.127" layer="21"/>
|
794
|
+
<wire x1="-2.032" y1="-3.175" x2="-2.032" y2="-3.429" width="0.127" layer="21"/>
|
795
|
+
<wire x1="2.032" y1="-3.175" x2="2.032" y2="-3.429" width="0.127" layer="21"/>
|
796
|
+
<wire x1="2.032" y1="-4.445" x2="-2.032" y2="-4.445" width="0.127" layer="21"/>
|
797
|
+
<wire x1="19.05" y1="4.445" x2="19.05" y2="4.699" width="0.127" layer="21"/>
|
798
|
+
<wire x1="19.05" y1="4.699" x2="17.78" y2="4.699" width="0.127" layer="21"/>
|
799
|
+
<wire x1="17.78" y1="4.445" x2="17.78" y2="4.699" width="0.127" layer="21"/>
|
800
|
+
<wire x1="19.05" y1="4.445" x2="20.32" y2="4.445" width="0.127" layer="21"/>
|
801
|
+
<wire x1="0.635" y1="4.699" x2="-0.635" y2="4.699" width="0.127" layer="21"/>
|
802
|
+
<wire x1="0.635" y1="4.699" x2="0.635" y2="4.445" width="0.127" layer="21"/>
|
803
|
+
<wire x1="0.635" y1="4.445" x2="17.78" y2="4.445" width="0.127" layer="21"/>
|
804
|
+
<wire x1="-0.635" y1="4.699" x2="-0.635" y2="4.445" width="0.127" layer="21"/>
|
805
|
+
<wire x1="-17.78" y1="4.699" x2="-19.05" y2="4.699" width="0.127" layer="21"/>
|
806
|
+
<wire x1="-19.05" y1="4.699" x2="-19.05" y2="4.445" width="0.127" layer="21"/>
|
807
|
+
<wire x1="-17.78" y1="4.699" x2="-17.78" y2="4.445" width="0.127" layer="21"/>
|
808
|
+
<wire x1="-17.78" y1="4.445" x2="-0.635" y2="4.445" width="0.127" layer="21"/>
|
809
|
+
<wire x1="12.319" y1="-4.445" x2="2.032" y2="-4.445" width="0.127" layer="21"/>
|
810
|
+
<wire x1="13.208" y1="-3.175" x2="13.208" y2="-3.429" width="0.127" layer="21"/>
|
811
|
+
<wire x1="13.208" y1="-3.175" x2="2.032" y2="-3.175" width="0.127" layer="21"/>
|
812
|
+
<wire x1="14.732" y1="-3.175" x2="14.732" y2="-3.429" width="0.127" layer="21"/>
|
813
|
+
<wire x1="14.732" y1="-3.175" x2="13.208" y2="-3.175" width="0.127" layer="21"/>
|
814
|
+
<wire x1="12.319" y1="-4.445" x2="12.7" y2="-3.937" width="0.127" layer="21"/>
|
815
|
+
<wire x1="15.24" y1="-3.937" x2="15.621" y2="-4.445" width="0.127" layer="21"/>
|
816
|
+
<wire x1="15.24" y1="-3.937" x2="14.732" y2="-3.937" width="0.127" layer="21"/>
|
817
|
+
<wire x1="13.208" y1="-3.429" x2="2.032" y2="-3.429" width="0.0508" layer="21"/>
|
818
|
+
<wire x1="2.032" y1="-3.429" x2="2.032" y2="-4.445" width="0.127" layer="21"/>
|
819
|
+
<wire x1="14.732" y1="-3.429" x2="19.304" y2="-3.429" width="0.0508" layer="21"/>
|
820
|
+
<wire x1="19.304" y1="-3.429" x2="19.304" y2="3.429" width="0.0508" layer="21"/>
|
821
|
+
<wire x1="19.304" y1="3.429" x2="-19.304" y2="3.429" width="0.0508" layer="21"/>
|
822
|
+
<wire x1="-19.304" y1="3.429" x2="-19.304" y2="-3.429" width="0.0508" layer="21"/>
|
823
|
+
<wire x1="-19.304" y1="-3.429" x2="-12.192" y2="-3.429" width="0.0508" layer="21"/>
|
824
|
+
<wire x1="-2.032" y1="-3.429" x2="-2.032" y2="-4.445" width="0.127" layer="21"/>
|
825
|
+
<wire x1="13.208" y1="-3.429" x2="13.208" y2="-3.937" width="0.127" layer="21"/>
|
826
|
+
<wire x1="13.208" y1="-3.937" x2="12.7" y2="-3.937" width="0.127" layer="21"/>
|
827
|
+
<wire x1="14.732" y1="-3.429" x2="14.732" y2="-3.937" width="0.127" layer="21"/>
|
828
|
+
<wire x1="14.732" y1="-3.937" x2="13.208" y2="-3.937" width="0.127" layer="21"/>
|
829
|
+
<wire x1="-20.32" y1="-4.445" x2="-16.002" y2="-4.445" width="0.127" layer="21"/>
|
830
|
+
<wire x1="-16.002" y1="-4.318" x2="-16.002" y2="-4.445" width="0.127" layer="21"/>
|
831
|
+
<wire x1="-16.002" y1="-4.318" x2="-14.478" y2="-4.318" width="0.127" layer="21"/>
|
832
|
+
<wire x1="-14.478" y1="-4.445" x2="-14.478" y2="-4.318" width="0.127" layer="21"/>
|
833
|
+
<wire x1="-14.478" y1="-4.445" x2="-13.081" y2="-4.445" width="0.127" layer="21"/>
|
834
|
+
<wire x1="-12.192" y1="-3.429" x2="-12.192" y2="-3.937" width="0.127" layer="21"/>
|
835
|
+
<wire x1="-10.668" y1="-3.429" x2="-10.668" y2="-3.937" width="0.127" layer="21"/>
|
836
|
+
<wire x1="-10.668" y1="-3.429" x2="-2.032" y2="-3.429" width="0.0508" layer="21"/>
|
837
|
+
<wire x1="-12.192" y1="-3.175" x2="-12.192" y2="-3.429" width="0.127" layer="21"/>
|
838
|
+
<wire x1="-12.192" y1="-3.175" x2="-19.05" y2="-3.175" width="0.127" layer="21"/>
|
839
|
+
<wire x1="-10.668" y1="-3.175" x2="-10.668" y2="-3.429" width="0.127" layer="21"/>
|
840
|
+
<wire x1="-10.668" y1="-3.175" x2="-12.192" y2="-3.175" width="0.127" layer="21"/>
|
841
|
+
<wire x1="-10.668" y1="-3.937" x2="-12.192" y2="-3.937" width="0.127" layer="21"/>
|
842
|
+
<wire x1="-12.192" y1="-3.937" x2="-12.7" y2="-3.937" width="0.127" layer="21"/>
|
843
|
+
<wire x1="-13.081" y1="-4.445" x2="-12.7" y2="-3.937" width="0.127" layer="21"/>
|
844
|
+
<wire x1="-10.16" y1="-3.937" x2="-9.779" y2="-4.445" width="0.127" layer="21"/>
|
845
|
+
<wire x1="-9.779" y1="-4.445" x2="-2.032" y2="-4.445" width="0.127" layer="21"/>
|
846
|
+
<wire x1="-10.16" y1="-3.937" x2="-10.668" y2="-3.937" width="0.127" layer="21"/>
|
847
|
+
<pad name="1" x="-15.24" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
848
|
+
<pad name="2" x="-15.24" y="1.27" drill="0.9144" diameter="1.6002"/>
|
849
|
+
<pad name="3" x="-12.7" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
850
|
+
<pad name="4" x="-12.7" y="1.27" drill="0.9144" diameter="1.6002"/>
|
851
|
+
<pad name="5" x="-10.16" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
852
|
+
<pad name="6" x="-10.16" y="1.27" drill="0.9144" diameter="1.6002"/>
|
853
|
+
<pad name="7" x="-7.62" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
854
|
+
<pad name="8" x="-7.62" y="1.27" drill="0.9144" diameter="1.6002"/>
|
855
|
+
<pad name="9" x="-5.08" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
856
|
+
<pad name="10" x="-5.08" y="1.27" drill="0.9144" diameter="1.6002"/>
|
857
|
+
<pad name="11" x="-2.54" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
858
|
+
<pad name="12" x="-2.54" y="1.27" drill="0.9144" diameter="1.6002"/>
|
859
|
+
<pad name="13" x="0" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
860
|
+
<pad name="14" x="0" y="1.27" drill="0.9144" diameter="1.6002"/>
|
861
|
+
<pad name="15" x="2.54" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
862
|
+
<pad name="16" x="2.54" y="1.27" drill="0.9144" diameter="1.6002"/>
|
863
|
+
<pad name="17" x="5.08" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
864
|
+
<pad name="18" x="5.08" y="1.27" drill="0.9144" diameter="1.6002"/>
|
865
|
+
<pad name="19" x="7.62" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
866
|
+
<pad name="20" x="7.62" y="1.27" drill="0.9144" diameter="1.6002"/>
|
867
|
+
<pad name="21" x="10.16" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
868
|
+
<pad name="22" x="10.16" y="1.27" drill="0.9144" diameter="1.6002"/>
|
869
|
+
<pad name="23" x="12.7" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
870
|
+
<pad name="24" x="12.7" y="1.27" drill="0.9144" diameter="1.6002"/>
|
871
|
+
<pad name="25" x="15.24" y="-1.27" drill="0.9144" diameter="1.6002"/>
|
872
|
+
<pad name="26" x="15.24" y="1.27" drill="0.9144" diameter="1.6002"/>
|
873
|
+
<text x="-20.32" y="5.715" size="1.778" layer="25" ratio="10">>NAME</text>
|
874
|
+
<text x="0" y="5.715" size="1.778" layer="27" ratio="10">>VALUE</text>
|
875
|
+
<text x="-17.78" y="-1.905" size="1.27" layer="21" ratio="12">1</text>
|
876
|
+
<text x="-17.78" y="0.635" size="1.27" layer="21" ratio="12">2</text>
|
877
|
+
<text x="-1.016" y="-4.064" size="1.27" layer="21" ratio="12">26</text>
|
878
|
+
<rectangle x1="14.986" y1="1.016" x2="15.494" y2="1.524" layer="27"/>
|
879
|
+
<rectangle x1="14.986" y1="-1.524" x2="15.494" y2="-1.016" layer="27"/>
|
880
|
+
<rectangle x1="12.446" y1="1.016" x2="12.954" y2="1.524" layer="27"/>
|
881
|
+
<rectangle x1="2.286" y1="1.016" x2="2.794" y2="1.524" layer="27"/>
|
882
|
+
<rectangle x1="2.286" y1="-1.524" x2="2.794" y2="-1.016" layer="27"/>
|
883
|
+
<rectangle x1="12.446" y1="-1.524" x2="12.954" y2="-1.016" layer="27"/>
|
884
|
+
<rectangle x1="-12.954" y1="1.016" x2="-12.446" y2="1.524" layer="27"/>
|
885
|
+
<rectangle x1="-15.494" y1="1.016" x2="-14.986" y2="1.524" layer="27"/>
|
886
|
+
<rectangle x1="-10.414" y1="1.016" x2="-9.906" y2="1.524" layer="27"/>
|
887
|
+
<rectangle x1="-0.254" y1="1.016" x2="0.254" y2="1.524" layer="27"/>
|
888
|
+
<rectangle x1="-2.794" y1="1.016" x2="-2.286" y2="1.524" layer="27"/>
|
889
|
+
<rectangle x1="-12.954" y1="-1.524" x2="-12.446" y2="-1.016" layer="27"/>
|
890
|
+
<rectangle x1="-15.494" y1="-1.524" x2="-14.986" y2="-1.016" layer="27"/>
|
891
|
+
<rectangle x1="-10.414" y1="-1.524" x2="-9.906" y2="-1.016" layer="27"/>
|
892
|
+
<rectangle x1="-0.254" y1="-1.524" x2="0.254" y2="-1.016" layer="27"/>
|
893
|
+
<rectangle x1="-2.794" y1="-1.524" x2="-2.286" y2="-1.016" layer="27"/>
|
894
|
+
<rectangle x1="-7.874" y1="-1.524" x2="-7.366" y2="-1.016" layer="27"/>
|
895
|
+
<rectangle x1="-7.874" y1="1.016" x2="-7.366" y2="1.524" layer="27"/>
|
896
|
+
<rectangle x1="9.906" y1="1.016" x2="10.414" y2="1.524" layer="27"/>
|
897
|
+
<rectangle x1="9.906" y1="-1.524" x2="10.414" y2="-1.016" layer="27"/>
|
898
|
+
<rectangle x1="-5.334" y1="1.016" x2="-4.826" y2="1.524" layer="27"/>
|
899
|
+
<rectangle x1="-5.334" y1="-1.524" x2="-4.826" y2="-1.016" layer="27"/>
|
900
|
+
<rectangle x1="4.826" y1="1.016" x2="5.334" y2="1.524" layer="27"/>
|
901
|
+
<rectangle x1="7.366" y1="1.016" x2="7.874" y2="1.524" layer="27"/>
|
902
|
+
<rectangle x1="4.826" y1="-1.524" x2="5.334" y2="-1.016" layer="27"/>
|
903
|
+
<rectangle x1="7.366" y1="-1.524" x2="7.874" y2="-1.016" layer="27"/>
|
904
|
+
</package>
|
905
|
+
</packages>
|
906
|
+
</library>
|
907
|
+
<library name="diode">
|
908
|
+
<packages>
|
909
|
+
<package name="DO41Z10">
|
910
|
+
<wire x1="2.032" y1="-1.27" x2="-2.032" y2="-1.27" width="0.127" layer="21"/>
|
911
|
+
<wire x1="2.032" y1="-1.27" x2="2.032" y2="1.27" width="0.127" layer="21"/>
|
912
|
+
<wire x1="-2.032" y1="1.27" x2="2.032" y2="1.27" width="0.127" layer="21"/>
|
913
|
+
<wire x1="-2.032" y1="1.27" x2="-2.032" y2="-1.27" width="0.127" layer="21"/>
|
914
|
+
<wire x1="5.08" y1="0" x2="3.937" y2="0" width="0.762" layer="51"/>
|
915
|
+
<wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.762" layer="51"/>
|
916
|
+
<wire x1="-0.635" y1="0" x2="0" y2="0" width="0.127" layer="21"/>
|
917
|
+
<wire x1="1.016" y1="0.635" x2="1.016" y2="-0.635" width="0.127" layer="21"/>
|
918
|
+
<wire x1="1.016" y1="-0.635" x2="0" y2="0" width="0.127" layer="21"/>
|
919
|
+
<wire x1="0" y1="0" x2="1.524" y2="0" width="0.127" layer="21"/>
|
920
|
+
<wire x1="0" y1="0" x2="1.016" y2="0.635" width="0.127" layer="21"/>
|
921
|
+
<wire x1="0" y1="0" x2="0" y2="-0.635" width="0.127" layer="21"/>
|
922
|
+
<wire x1="0.254" y1="0.635" x2="0" y2="0.635" width="0.127" layer="21"/>
|
923
|
+
<wire x1="0" y1="0.635" x2="0" y2="0" width="0.127" layer="21"/>
|
924
|
+
<pad name="K" x="-5.08" y="0" drill="1.1176" diameter="2.159"/>
|
925
|
+
<pad name="A" x="5.08" y="0" drill="1.1176" diameter="2.159"/>
|
926
|
+
<text x="6.477" y="-0.127" size="1.27" layer="25" ratio="10">>NAME</text>
|
927
|
+
<text x="6.477" y="-1.778" size="1.27" layer="27" ratio="10">>VALUE</text>
|
928
|
+
<rectangle x1="-1.651" y1="-1.27" x2="-1.143" y2="1.27" layer="21"/>
|
929
|
+
<rectangle x1="2.032" y1="-0.381" x2="3.937" y2="0.381" layer="21"/>
|
930
|
+
<rectangle x1="-3.937" y1="-0.381" x2="-2.032" y2="0.381" layer="21"/>
|
931
|
+
</package>
|
932
|
+
</packages>
|
933
|
+
</library>
|
934
|
+
</libraries>
|
935
|
+
<attributes>
|
936
|
+
</attributes>
|
937
|
+
<variantdefs>
|
938
|
+
</variantdefs>
|
939
|
+
<classes>
|
940
|
+
<class number="0" name="default" width="0" drill="0">
|
941
|
+
</class>
|
942
|
+
<class number="1" name="AC" width="1.27" drill="0">
|
943
|
+
<clearance class="1" value="0.4064"/>
|
944
|
+
</class>
|
945
|
+
<class number="2" name="Power" width="0.762" drill="0.8128">
|
946
|
+
<clearance class="2" value="0.254"/>
|
947
|
+
</class>
|
948
|
+
</classes>
|
949
|
+
<designrules>
|
950
|
+
<description language="en"><b>EAGLE Design Rules</b>
|
951
|
+
<p>
|
952
|
+
The default Design Rules have been set to cover
|
953
|
+
a wide range of applications. Your particular design
|
954
|
+
may have different requirements, so please make the
|
955
|
+
necessary adjustments and save your customized
|
956
|
+
design rules under a new name.</description>
|
957
|
+
<param name="layerSetup" value="(1*16)"/>
|
958
|
+
<param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/>
|
959
|
+
<param name="mtIsolate" value="1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm 1.5mm"/>
|
960
|
+
<param name="mdWireWire" value="8mil"/>
|
961
|
+
<param name="mdWirePad" value="8mil"/>
|
962
|
+
<param name="mdWireVia" value="8mil"/>
|
963
|
+
<param name="mdPadPad" value="8mil"/>
|
964
|
+
<param name="mdPadVia" value="8mil"/>
|
965
|
+
<param name="mdViaVia" value="8mil"/>
|
966
|
+
<param name="mdSmdPad" value="8mil"/>
|
967
|
+
<param name="mdSmdVia" value="8mil"/>
|
968
|
+
<param name="mdSmdSmd" value="8mil"/>
|
969
|
+
<param name="mdViaViaSameLayer" value="8mil"/>
|
970
|
+
<param name="mnLayersViaInSmd" value="2"/>
|
971
|
+
<param name="mdCopperDimension" value="40mil"/>
|
972
|
+
<param name="mdDrill" value="8mil"/>
|
973
|
+
<param name="mdSmdStop" value="0mil"/>
|
974
|
+
<param name="msWidth" value="10mil"/>
|
975
|
+
<param name="msDrill" value="24mil"/>
|
976
|
+
<param name="msMicroVia" value="9.99mm"/>
|
977
|
+
<param name="msBlindViaRatio" value="0.5"/>
|
978
|
+
<param name="rvPadTop" value="0.25"/>
|
979
|
+
<param name="rvPadInner" value="0.25"/>
|
980
|
+
<param name="rvPadBottom" value="0.25"/>
|
981
|
+
<param name="rvViaOuter" value="0.25"/>
|
982
|
+
<param name="rvViaInner" value="0.25"/>
|
983
|
+
<param name="rvMicroViaOuter" value="0.25"/>
|
984
|
+
<param name="rvMicroViaInner" value="0.25"/>
|
985
|
+
<param name="rlMinPadTop" value="10mil"/>
|
986
|
+
<param name="rlMaxPadTop" value="20mil"/>
|
987
|
+
<param name="rlMinPadInner" value="10mil"/>
|
988
|
+
<param name="rlMaxPadInner" value="20mil"/>
|
989
|
+
<param name="rlMinPadBottom" value="10mil"/>
|
990
|
+
<param name="rlMaxPadBottom" value="20mil"/>
|
991
|
+
<param name="rlMinViaOuter" value="10mil"/>
|
992
|
+
<param name="rlMaxViaOuter" value="20mil"/>
|
993
|
+
<param name="rlMinViaInner" value="10mil"/>
|
994
|
+
<param name="rlMaxViaInner" value="20mil"/>
|
995
|
+
<param name="rlMinMicroViaOuter" value="4mil"/>
|
996
|
+
<param name="rlMaxMicroViaOuter" value="20mil"/>
|
997
|
+
<param name="rlMinMicroViaInner" value="4mil"/>
|
998
|
+
<param name="rlMaxMicroViaInner" value="20mil"/>
|
999
|
+
<param name="psTop" value="-1"/>
|
1000
|
+
<param name="psBottom" value="-1"/>
|
1001
|
+
<param name="psFirst" value="-1"/>
|
1002
|
+
<param name="psElongationLong" value="100"/>
|
1003
|
+
<param name="psElongationOffset" value="100"/>
|
1004
|
+
<param name="mvStopFrame" value="0.1"/>
|
1005
|
+
<param name="mvCreamFrame" value="0"/>
|
1006
|
+
<param name="mlMinStopFrame" value="0mil"/>
|
1007
|
+
<param name="mlMaxStopFrame" value="20mil"/>
|
1008
|
+
<param name="mlMinCreamFrame" value="0mil"/>
|
1009
|
+
<param name="mlMaxCreamFrame" value="0mil"/>
|
1010
|
+
<param name="mlViaStopLimit" value="0mil"/>
|
1011
|
+
<param name="srRoundness" value="0"/>
|
1012
|
+
<param name="srMinRoundness" value="0mil"/>
|
1013
|
+
<param name="srMaxRoundness" value="0mil"/>
|
1014
|
+
<param name="slThermalIsolate" value="10mil"/>
|
1015
|
+
<param name="slThermalsForVias" value="0"/>
|
1016
|
+
<param name="dpMaxLengthDifference" value="10mm"/>
|
1017
|
+
<param name="dpGapFactor" value="2.5"/>
|
1018
|
+
<param name="checkGrid" value="0"/>
|
1019
|
+
<param name="checkAngle" value="0"/>
|
1020
|
+
<param name="checkFont" value="1"/>
|
1021
|
+
<param name="checkRestrict" value="1"/>
|
1022
|
+
<param name="useDiameter" value="13"/>
|
1023
|
+
<param name="maxErrors" value="50"/>
|
1024
|
+
</designrules>
|
1025
|
+
<autorouter>
|
1026
|
+
<pass name="Default">
|
1027
|
+
<param name="RoutingGrid" value="50mil"/>
|
1028
|
+
<param name="tpViaShape" value="round"/>
|
1029
|
+
<param name="PrefDir.1" value="|"/>
|
1030
|
+
<param name="PrefDir.2" value="0"/>
|
1031
|
+
<param name="PrefDir.3" value="0"/>
|
1032
|
+
<param name="PrefDir.4" value="0"/>
|
1033
|
+
<param name="PrefDir.5" value="0"/>
|
1034
|
+
<param name="PrefDir.6" value="0"/>
|
1035
|
+
<param name="PrefDir.7" value="0"/>
|
1036
|
+
<param name="PrefDir.8" value="0"/>
|
1037
|
+
<param name="PrefDir.9" value="0"/>
|
1038
|
+
<param name="PrefDir.10" value="0"/>
|
1039
|
+
<param name="PrefDir.11" value="0"/>
|
1040
|
+
<param name="PrefDir.12" value="0"/>
|
1041
|
+
<param name="PrefDir.13" value="0"/>
|
1042
|
+
<param name="PrefDir.14" value="0"/>
|
1043
|
+
<param name="PrefDir.15" value="0"/>
|
1044
|
+
<param name="PrefDir.16" value="-"/>
|
1045
|
+
<param name="cfVia" value="8"/>
|
1046
|
+
<param name="cfNonPref" value="5"/>
|
1047
|
+
<param name="cfChangeDir" value="2"/>
|
1048
|
+
<param name="cfOrthStep" value="2"/>
|
1049
|
+
<param name="cfDiagStep" value="3"/>
|
1050
|
+
<param name="cfExtdStep" value="0"/>
|
1051
|
+
<param name="cfBonusStep" value="1"/>
|
1052
|
+
<param name="cfMalusStep" value="1"/>
|
1053
|
+
<param name="cfPadImpact" value="4"/>
|
1054
|
+
<param name="cfSmdImpact" value="4"/>
|
1055
|
+
<param name="cfBusImpact" value="0"/>
|
1056
|
+
<param name="cfHugging" value="3"/>
|
1057
|
+
<param name="cfAvoid" value="4"/>
|
1058
|
+
<param name="cfPolygon" value="10"/>
|
1059
|
+
<param name="cfBase.1" value="0"/>
|
1060
|
+
<param name="cfBase.2" value="1"/>
|
1061
|
+
<param name="cfBase.3" value="1"/>
|
1062
|
+
<param name="cfBase.4" value="1"/>
|
1063
|
+
<param name="cfBase.5" value="1"/>
|
1064
|
+
<param name="cfBase.6" value="1"/>
|
1065
|
+
<param name="cfBase.7" value="1"/>
|
1066
|
+
<param name="cfBase.8" value="1"/>
|
1067
|
+
<param name="cfBase.9" value="1"/>
|
1068
|
+
<param name="cfBase.10" value="1"/>
|
1069
|
+
<param name="cfBase.11" value="1"/>
|
1070
|
+
<param name="cfBase.12" value="1"/>
|
1071
|
+
<param name="cfBase.13" value="1"/>
|
1072
|
+
<param name="cfBase.14" value="1"/>
|
1073
|
+
<param name="cfBase.15" value="1"/>
|
1074
|
+
<param name="cfBase.16" value="0"/>
|
1075
|
+
<param name="mnVias" value="20"/>
|
1076
|
+
<param name="mnSegments" value="9999"/>
|
1077
|
+
<param name="mnExtdSteps" value="9999"/>
|
1078
|
+
<param name="mnRipupLevel" value="10"/>
|
1079
|
+
<param name="mnRipupSteps" value="100"/>
|
1080
|
+
<param name="mnRipupTotal" value="100"/>
|
1081
|
+
</pass>
|
1082
|
+
<pass name="Follow-me" refer="Default" active="yes">
|
1083
|
+
</pass>
|
1084
|
+
<pass name="Busses" refer="Default" active="yes">
|
1085
|
+
<param name="cfNonPref" value="4"/>
|
1086
|
+
<param name="cfBusImpact" value="4"/>
|
1087
|
+
<param name="cfHugging" value="0"/>
|
1088
|
+
<param name="mnVias" value="0"/>
|
1089
|
+
</pass>
|
1090
|
+
<pass name="Route" refer="Default" active="yes">
|
1091
|
+
</pass>
|
1092
|
+
<pass name="Optimize1" refer="Default" active="yes">
|
1093
|
+
<param name="cfVia" value="99"/>
|
1094
|
+
<param name="cfExtdStep" value="10"/>
|
1095
|
+
<param name="cfHugging" value="1"/>
|
1096
|
+
<param name="mnExtdSteps" value="1"/>
|
1097
|
+
<param name="mnRipupLevel" value="0"/>
|
1098
|
+
</pass>
|
1099
|
+
<pass name="Optimize2" refer="Optimize1" active="yes">
|
1100
|
+
<param name="cfNonPref" value="0"/>
|
1101
|
+
<param name="cfChangeDir" value="6"/>
|
1102
|
+
<param name="cfExtdStep" value="0"/>
|
1103
|
+
<param name="cfBonusStep" value="2"/>
|
1104
|
+
<param name="cfMalusStep" value="2"/>
|
1105
|
+
<param name="cfPadImpact" value="2"/>
|
1106
|
+
<param name="cfSmdImpact" value="2"/>
|
1107
|
+
<param name="cfHugging" value="0"/>
|
1108
|
+
</pass>
|
1109
|
+
<pass name="Optimize3" refer="Optimize2" active="yes">
|
1110
|
+
<param name="cfChangeDir" value="8"/>
|
1111
|
+
<param name="cfPadImpact" value="0"/>
|
1112
|
+
<param name="cfSmdImpact" value="0"/>
|
1113
|
+
</pass>
|
1114
|
+
<pass name="Optimize4" refer="Optimize3" active="yes">
|
1115
|
+
<param name="cfChangeDir" value="25"/>
|
1116
|
+
</pass>
|
1117
|
+
</autorouter>
|
1118
|
+
<elements>
|
1119
|
+
<element name="IC1" library="klaus" package="DIL-16" value="HCTL2016" x="75.565" y="24.765" smashed="yes" rot="R90">
|
1120
|
+
<attribute name="NAME" x="78.105" y="14.3256" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1121
|
+
<attribute name="VALUE" x="77.6732" y="18.415" size="1.778" layer="27" ratio="10" rot="R90"/>
|
1122
|
+
</element>
|
1123
|
+
<element name="IC2" library="klaus" package="DIL-16" value="HCTL2016" x="65.405" y="24.765" smashed="yes" rot="R90">
|
1124
|
+
<attribute name="NAME" x="67.945" y="14.3256" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1125
|
+
<attribute name="VALUE" x="67.5132" y="18.415" size="1.778" layer="27" ratio="10" rot="R90"/>
|
1126
|
+
</element>
|
1127
|
+
<element name="IC3" library="klaus" package="DIL-16" value="HCTL2016" x="55.245" y="24.765" smashed="yes" rot="R90">
|
1128
|
+
<attribute name="NAME" x="57.785" y="14.3256" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1129
|
+
<attribute name="VALUE" x="57.3532" y="18.415" size="1.778" layer="27" ratio="10" rot="R90"/>
|
1130
|
+
</element>
|
1131
|
+
<element name="IC4" library="klaus" package="DIL-16" value="HCTL2016" x="45.085" y="24.765" smashed="yes" rot="R90">
|
1132
|
+
<attribute name="NAME" x="47.625" y="14.3256" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1133
|
+
<attribute name="VALUE" x="47.1932" y="18.415" size="1.778" layer="27" ratio="10" rot="R90"/>
|
1134
|
+
</element>
|
1135
|
+
<element name="IC5" library="klaus" package="DIL-16" value="HCTL2016" x="34.925" y="24.765" smashed="yes" rot="R90">
|
1136
|
+
<attribute name="NAME" x="37.465" y="14.3256" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1137
|
+
<attribute name="VALUE" x="37.0332" y="18.415" size="1.778" layer="27" ratio="10" rot="R90"/>
|
1138
|
+
</element>
|
1139
|
+
<element name="IC6" library="klaus" package="DIL-16" value="HCTL2016" x="24.765" y="24.765" smashed="yes" rot="R90">
|
1140
|
+
<attribute name="NAME" x="27.305" y="14.3256" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1141
|
+
<attribute name="VALUE" x="26.8732" y="18.415" size="1.778" layer="27" ratio="10" rot="R90"/>
|
1142
|
+
</element>
|
1143
|
+
<element name="IC7" library="klaus" package="DIL-16" value="DS3668" x="66.675" y="42.545" smashed="yes" rot="R180">
|
1144
|
+
<attribute name="NAME" x="76.835" y="49.2506" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1145
|
+
<attribute name="VALUE" x="73.025" y="44.6532" size="1.778" layer="27" ratio="10" rot="R180"/>
|
1146
|
+
</element>
|
1147
|
+
<element name="IC8" library="klaus" package="DIL-16" value="DS3668" x="45.085" y="42.545" smashed="yes" rot="R180">
|
1148
|
+
<attribute name="NAME" x="55.245" y="49.2506" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1149
|
+
<attribute name="VALUE" x="51.435" y="44.6532" size="1.778" layer="27" ratio="10" rot="R180"/>
|
1150
|
+
</element>
|
1151
|
+
<element name="IC9" library="klaus" package="DIL-16" value="DS3668" x="23.495" y="42.545" smashed="yes" rot="R180">
|
1152
|
+
<attribute name="NAME" x="33.655" y="49.2506" size="1.524" layer="25" ratio="12" rot="R180"/>
|
1153
|
+
<attribute name="VALUE" x="29.845" y="44.6532" size="1.778" layer="27" ratio="10" rot="R180"/>
|
1154
|
+
</element>
|
1155
|
+
<element name="ST1" library="ST-ML" package="ML16" value="PINHD-2X8" x="5.715" y="15.875" smashed="yes" rot="R270">
|
1156
|
+
<attribute name="NAME" x="13.335" y="23.495" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1157
|
+
</element>
|
1158
|
+
<element name="ST2" library="ST-ML" package="ML26" value="PINHD-2X13" x="5.715" y="57.785" smashed="yes" rot="R270">
|
1159
|
+
<attribute name="NAME" x="13.335" y="70.485" size="1.778" layer="25" ratio="10" rot="R90"/>
|
1160
|
+
</element>
|
1161
|
+
<element name="BU6" library="PINHEAD" package="2X25" value="PINHD-2X25" x="50.165" y="55.245" smashed="yes" rot="R180">
|
1162
|
+
<attribute name="NAME" x="83.82" y="53.34" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1163
|
+
</element>
|
1164
|
+
<element name="BU5" library="PINHEAD" package="2X25" value="PINHD-2X25" x="50.165" y="9.525" smashed="yes" rot="R180">
|
1165
|
+
<attribute name="NAME" x="83.82" y="7.62" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1166
|
+
</element>
|
1167
|
+
<element name="B1" library="RECTIF" package="FB100" value="FB100" x="64.135" y="74.295" smashed="yes">
|
1168
|
+
<attribute name="NAME" x="60.071" y="67.691" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1169
|
+
</element>
|
1170
|
+
<element name="C2" library="CAP-WI" package="C5B2,5A" value="100nf" x="76.835" y="63.5" smashed="yes" rot="R90">
|
1171
|
+
<attribute name="NAME" x="80.645" y="61.976" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1172
|
+
</element>
|
1173
|
+
<element name="C4" library="ELKO" package="E2,5-5" value="4,7uf/10V" x="83.185" y="38.1" smashed="yes" rot="R270">
|
1174
|
+
<attribute name="NAME" x="80.137" y="37.084" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1175
|
+
</element>
|
1176
|
+
<element name="U1" library="LINEAR" package="TO220H" value="78S24" x="100.33" y="62.865" smashed="yes" rot="R270">
|
1177
|
+
<attribute name="NAME" x="90.678" y="61.595" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1178
|
+
<attribute name="VALUE" x="102.87" y="66.802" size="1.778" layer="27" ratio="10" rot="R270"/>
|
1179
|
+
</element>
|
1180
|
+
<element name="U2" library="LINEAR" package="TO220H" value="7805" x="100.33" y="51.435" smashed="yes" rot="R270">
|
1181
|
+
<attribute name="NAME" x="90.678" y="50.165" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1182
|
+
<attribute name="VALUE" x="102.87" y="55.372" size="1.778" layer="27" ratio="10" rot="R270"/>
|
1183
|
+
</element>
|
1184
|
+
<element name="C3" library="ELKO" package="E2,5-5" value="4,7uf/35V" x="80.645" y="45.085" smashed="yes" rot="R270">
|
1185
|
+
<attribute name="NAME" x="85.217" y="44.069" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1186
|
+
</element>
|
1187
|
+
<element name="R5" library="R" package="0207/10" value="0207/10" x="97.155" y="8.255" smashed="yes" rot="R90">
|
1188
|
+
<attribute name="NAME" x="97.536" y="0.127" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1189
|
+
<attribute name="VALUE" x="97.79" y="5.9944" size="1.27" layer="27" ratio="10" rot="R90"/>
|
1190
|
+
</element>
|
1191
|
+
<element name="R4" library="R" package="0207/10" value="0207/10" x="94.615" y="8.255" smashed="yes" rot="R90">
|
1192
|
+
<attribute name="NAME" x="94.996" y="0.127" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1193
|
+
<attribute name="VALUE" x="95.25" y="5.9944" size="1.27" layer="27" ratio="10" rot="R90"/>
|
1194
|
+
</element>
|
1195
|
+
<element name="R2" library="R" package="0207/10" value="0207/10" x="89.535" y="8.255" smashed="yes" rot="R90">
|
1196
|
+
<attribute name="NAME" x="89.916" y="0.127" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1197
|
+
<attribute name="VALUE" x="90.17" y="5.9944" size="1.27" layer="27" ratio="10" rot="R90"/>
|
1198
|
+
</element>
|
1199
|
+
<element name="R1" library="R" package="0207/10" value="0207/10" x="86.995" y="8.255" smashed="yes" rot="R90">
|
1200
|
+
<attribute name="NAME" x="87.376" y="0.127" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1201
|
+
<attribute name="VALUE" x="87.63" y="5.9944" size="1.27" layer="27" ratio="10" rot="R90"/>
|
1202
|
+
</element>
|
1203
|
+
<element name="ST3" library="ST-ML" package="ML16" value="PINHD-2X8" x="93.345" y="29.21" smashed="yes" rot="R90">
|
1204
|
+
<attribute name="NAME" x="87.63" y="15.24" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1205
|
+
</element>
|
1206
|
+
<element name="D1" library="diode" package="DO41Z10" value="BZX85" x="83.185" y="28.575" smashed="yes" rot="R90">
|
1207
|
+
<attribute name="NAME" x="86.487" y="26.797" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1208
|
+
</element>
|
1209
|
+
<element name="R3" library="R" package="0207/10@1" value="10k" x="92.075" y="8.255" smashed="yes" rot="R270">
|
1210
|
+
<attribute name="NAME" x="92.456" y="0.127" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1211
|
+
<attribute name="VALUE" x="91.44" y="10.5156" size="1.27" layer="27" ratio="10" rot="R270"/>
|
1212
|
+
</element>
|
1213
|
+
<element name="JP1" library="PINHEAD" package="1X02" value="PINHD-1X2" x="54.61" y="73.66" smashed="yes" rot="R270">
|
1214
|
+
<attribute name="NAME" x="55.9562" y="66.5988" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1215
|
+
</element>
|
1216
|
+
<element name="C1" library="ELKO" package="E35-16" value="2200uF/35V" x="33.655" y="69.215" smashed="yes" rot="R180">
|
1217
|
+
<attribute name="NAME" x="52.578" y="63.119" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1218
|
+
</element>
|
1219
|
+
<element name="C6" library="ELKO" package="E2,5-5" value="4,7uf/35V" x="13.97" y="32.385" smashed="yes" rot="R90">
|
1220
|
+
<attribute name="NAME" x="18.542" y="31.369" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1221
|
+
</element>
|
1222
|
+
<element name="C5" library="ELKO" package="E2,5-5" value="4,7uf/10V" x="13.97" y="17.145" smashed="yes" rot="R90">
|
1223
|
+
<attribute name="NAME" x="18.542" y="16.129" size="1.524" layer="25" ratio="12" rot="R90"/>
|
1224
|
+
</element>
|
1225
|
+
</elements>
|
1226
|
+
<signals>
|
1227
|
+
<signal name="D0">
|
1228
|
+
<contactref element="IC6" pad="1"/>
|
1229
|
+
<contactref element="IC5" pad="1"/>
|
1230
|
+
<contactref element="IC4" pad="1"/>
|
1231
|
+
<contactref element="IC3" pad="1"/>
|
1232
|
+
<contactref element="IC2" pad="1"/>
|
1233
|
+
<contactref element="IC1" pad="1"/>
|
1234
|
+
<contactref element="BU6" pad="13"/>
|
1235
|
+
<wire x1="65.405" y1="56.515" x2="69.215" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1236
|
+
<wire x1="79.375" y1="15.875" x2="69.215" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1237
|
+
<wire x1="69.215" y1="15.875" x2="59.055" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1238
|
+
<wire x1="59.055" y1="15.875" x2="48.895" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1239
|
+
<wire x1="48.895" y1="15.875" x2="38.735" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1240
|
+
<wire x1="38.735" y1="15.875" x2="28.575" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1241
|
+
</signal>
|
1242
|
+
<signal name="D1">
|
1243
|
+
<contactref element="IC6" pad="15"/>
|
1244
|
+
<contactref element="IC5" pad="15"/>
|
1245
|
+
<contactref element="IC4" pad="15"/>
|
1246
|
+
<contactref element="IC3" pad="15"/>
|
1247
|
+
<contactref element="IC2" pad="15"/>
|
1248
|
+
<contactref element="IC1" pad="15"/>
|
1249
|
+
<contactref element="BU6" pad="16"/>
|
1250
|
+
<wire x1="62.865" y1="53.975" x2="61.595" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1251
|
+
<wire x1="71.755" y1="18.415" x2="61.595" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1252
|
+
<wire x1="61.595" y1="18.415" x2="51.435" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1253
|
+
<wire x1="51.435" y1="18.415" x2="41.275" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1254
|
+
<wire x1="41.275" y1="18.415" x2="31.115" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1255
|
+
<wire x1="31.115" y1="18.415" x2="20.955" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1256
|
+
</signal>
|
1257
|
+
<signal name="D2">
|
1258
|
+
<contactref element="IC6" pad="14"/>
|
1259
|
+
<contactref element="IC5" pad="14"/>
|
1260
|
+
<contactref element="IC4" pad="14"/>
|
1261
|
+
<contactref element="IC3" pad="14"/>
|
1262
|
+
<contactref element="IC2" pad="14"/>
|
1263
|
+
<contactref element="IC1" pad="14"/>
|
1264
|
+
<contactref element="BU6" pad="15"/>
|
1265
|
+
<wire x1="62.865" y1="56.515" x2="61.595" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1266
|
+
<wire x1="71.755" y1="20.955" x2="61.595" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1267
|
+
<wire x1="61.595" y1="20.955" x2="51.435" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1268
|
+
<wire x1="51.435" y1="20.955" x2="41.275" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1269
|
+
<wire x1="41.275" y1="20.955" x2="31.115" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1270
|
+
<wire x1="31.115" y1="20.955" x2="20.955" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1271
|
+
</signal>
|
1272
|
+
<signal name="D3">
|
1273
|
+
<contactref element="IC6" pad="13"/>
|
1274
|
+
<contactref element="IC5" pad="13"/>
|
1275
|
+
<contactref element="IC4" pad="13"/>
|
1276
|
+
<contactref element="IC3" pad="13"/>
|
1277
|
+
<contactref element="IC2" pad="13"/>
|
1278
|
+
<contactref element="IC1" pad="13"/>
|
1279
|
+
<contactref element="BU6" pad="18"/>
|
1280
|
+
<wire x1="60.325" y1="53.975" x2="61.595" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1281
|
+
<wire x1="71.755" y1="23.495" x2="61.595" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1282
|
+
<wire x1="61.595" y1="23.495" x2="51.435" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1283
|
+
<wire x1="51.435" y1="23.495" x2="41.275" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1284
|
+
<wire x1="41.275" y1="23.495" x2="31.115" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1285
|
+
<wire x1="31.115" y1="23.495" x2="20.955" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1286
|
+
</signal>
|
1287
|
+
<signal name="D4">
|
1288
|
+
<contactref element="IC6" pad="12"/>
|
1289
|
+
<contactref element="IC5" pad="12"/>
|
1290
|
+
<contactref element="IC4" pad="12"/>
|
1291
|
+
<contactref element="IC3" pad="12"/>
|
1292
|
+
<contactref element="IC2" pad="12"/>
|
1293
|
+
<contactref element="IC1" pad="12"/>
|
1294
|
+
<contactref element="BU6" pad="17"/>
|
1295
|
+
<wire x1="60.325" y1="56.515" x2="61.595" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1296
|
+
<wire x1="71.755" y1="26.035" x2="61.595" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1297
|
+
<wire x1="61.595" y1="26.035" x2="51.435" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1298
|
+
<wire x1="51.435" y1="26.035" x2="41.275" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1299
|
+
<wire x1="41.275" y1="26.035" x2="31.115" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1300
|
+
<wire x1="31.115" y1="26.035" x2="20.955" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1301
|
+
</signal>
|
1302
|
+
<signal name="D5">
|
1303
|
+
<contactref element="IC6" pad="11"/>
|
1304
|
+
<contactref element="IC5" pad="11"/>
|
1305
|
+
<contactref element="IC4" pad="11"/>
|
1306
|
+
<contactref element="IC3" pad="11"/>
|
1307
|
+
<contactref element="IC2" pad="11"/>
|
1308
|
+
<contactref element="IC1" pad="11"/>
|
1309
|
+
<contactref element="BU6" pad="20"/>
|
1310
|
+
<wire x1="57.785" y1="53.975" x2="61.595" y2="28.575" width="0" layer="19" extent="1-1"/>
|
1311
|
+
<wire x1="71.755" y1="28.575" x2="61.595" y2="28.575" width="0" layer="19" extent="1-1"/>
|
1312
|
+
<wire x1="61.595" y1="28.575" x2="51.435" y2="28.575" width="0" layer="19" extent="1-1"/>
|
1313
|
+
<wire x1="51.435" y1="28.575" x2="41.275" y2="28.575" width="0" layer="19" extent="1-1"/>
|
1314
|
+
<wire x1="41.275" y1="28.575" x2="31.115" y2="28.575" width="0" layer="19" extent="1-1"/>
|
1315
|
+
<wire x1="31.115" y1="28.575" x2="20.955" y2="28.575" width="0" layer="19" extent="1-1"/>
|
1316
|
+
</signal>
|
1317
|
+
<signal name="D6">
|
1318
|
+
<contactref element="IC6" pad="10"/>
|
1319
|
+
<contactref element="IC5" pad="10"/>
|
1320
|
+
<contactref element="IC4" pad="10"/>
|
1321
|
+
<contactref element="IC3" pad="10"/>
|
1322
|
+
<contactref element="IC2" pad="10"/>
|
1323
|
+
<contactref element="IC1" pad="10"/>
|
1324
|
+
<contactref element="BU6" pad="19"/>
|
1325
|
+
<wire x1="57.785" y1="56.515" x2="61.595" y2="31.115" width="0" layer="19" extent="1-1"/>
|
1326
|
+
<wire x1="71.755" y1="31.115" x2="61.595" y2="31.115" width="0" layer="19" extent="1-1"/>
|
1327
|
+
<wire x1="61.595" y1="31.115" x2="51.435" y2="31.115" width="0" layer="19" extent="1-1"/>
|
1328
|
+
<wire x1="51.435" y1="31.115" x2="41.275" y2="31.115" width="0" layer="19" extent="1-1"/>
|
1329
|
+
<wire x1="41.275" y1="31.115" x2="31.115" y2="31.115" width="0" layer="19" extent="1-1"/>
|
1330
|
+
<wire x1="31.115" y1="31.115" x2="20.955" y2="31.115" width="0" layer="19" extent="1-1"/>
|
1331
|
+
</signal>
|
1332
|
+
<signal name="D7">
|
1333
|
+
<contactref element="IC6" pad="9"/>
|
1334
|
+
<contactref element="IC5" pad="9"/>
|
1335
|
+
<contactref element="IC4" pad="9"/>
|
1336
|
+
<contactref element="IC3" pad="9"/>
|
1337
|
+
<contactref element="IC2" pad="9"/>
|
1338
|
+
<contactref element="IC1" pad="9"/>
|
1339
|
+
<contactref element="BU6" pad="22"/>
|
1340
|
+
<wire x1="55.245" y1="53.975" x2="51.435" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1341
|
+
<wire x1="61.595" y1="33.655" x2="51.435" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1342
|
+
<wire x1="71.755" y1="33.655" x2="61.595" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1343
|
+
<wire x1="51.435" y1="33.655" x2="41.275" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1344
|
+
<wire x1="41.275" y1="33.655" x2="31.115" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1345
|
+
<wire x1="31.115" y1="33.655" x2="20.955" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1346
|
+
</signal>
|
1347
|
+
<signal name="CLK">
|
1348
|
+
<contactref element="IC6" pad="2"/>
|
1349
|
+
<contactref element="IC1" pad="2"/>
|
1350
|
+
<contactref element="IC2" pad="2"/>
|
1351
|
+
<contactref element="IC3" pad="2"/>
|
1352
|
+
<contactref element="IC4" pad="2"/>
|
1353
|
+
<contactref element="IC5" pad="2"/>
|
1354
|
+
<contactref element="BU6" pad="1"/>
|
1355
|
+
<wire x1="80.645" y1="56.515" x2="79.375" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1356
|
+
<wire x1="79.375" y1="18.415" x2="69.215" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1357
|
+
<wire x1="69.215" y1="18.415" x2="59.055" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1358
|
+
<wire x1="59.055" y1="18.415" x2="48.895" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1359
|
+
<wire x1="48.895" y1="18.415" x2="38.735" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1360
|
+
<wire x1="38.735" y1="18.415" x2="28.575" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1361
|
+
</signal>
|
1362
|
+
<signal name="SEL">
|
1363
|
+
<contactref element="IC6" pad="3"/>
|
1364
|
+
<contactref element="IC1" pad="3"/>
|
1365
|
+
<contactref element="IC2" pad="3"/>
|
1366
|
+
<contactref element="IC3" pad="3"/>
|
1367
|
+
<contactref element="IC4" pad="3"/>
|
1368
|
+
<contactref element="IC5" pad="3"/>
|
1369
|
+
<contactref element="BU6" pad="11"/>
|
1370
|
+
<wire x1="67.945" y1="56.515" x2="69.215" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1371
|
+
<wire x1="79.375" y1="20.955" x2="69.215" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1372
|
+
<wire x1="69.215" y1="20.955" x2="59.055" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1373
|
+
<wire x1="59.055" y1="20.955" x2="48.895" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1374
|
+
<wire x1="48.895" y1="20.955" x2="38.735" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1375
|
+
<wire x1="38.735" y1="20.955" x2="28.575" y2="20.955" width="0" layer="19" extent="1-1"/>
|
1376
|
+
</signal>
|
1377
|
+
<signal name="!OE5">
|
1378
|
+
<contactref element="IC6" pad="4"/>
|
1379
|
+
<contactref element="BU6" pad="12"/>
|
1380
|
+
<wire x1="67.945" y1="53.975" x2="28.575" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1381
|
+
</signal>
|
1382
|
+
<signal name="!RST">
|
1383
|
+
<contactref element="IC6" pad="5"/>
|
1384
|
+
<contactref element="IC1" pad="5"/>
|
1385
|
+
<contactref element="IC2" pad="5"/>
|
1386
|
+
<contactref element="IC3" pad="5"/>
|
1387
|
+
<contactref element="IC4" pad="5"/>
|
1388
|
+
<contactref element="IC5" pad="5"/>
|
1389
|
+
<contactref element="BU6" pad="14"/>
|
1390
|
+
<wire x1="65.405" y1="53.975" x2="69.215" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1391
|
+
<wire x1="79.375" y1="26.035" x2="69.215" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1392
|
+
<wire x1="69.215" y1="26.035" x2="59.055" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1393
|
+
<wire x1="59.055" y1="26.035" x2="48.895" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1394
|
+
<wire x1="48.895" y1="26.035" x2="38.735" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1395
|
+
<wire x1="38.735" y1="26.035" x2="28.575" y2="26.035" width="0" layer="19" extent="1-1"/>
|
1396
|
+
</signal>
|
1397
|
+
<signal name="!OE0">
|
1398
|
+
<contactref element="IC1" pad="4"/>
|
1399
|
+
<contactref element="BU6" pad="5"/>
|
1400
|
+
<wire x1="75.565" y1="56.515" x2="79.375" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1401
|
+
</signal>
|
1402
|
+
<signal name="!OE1">
|
1403
|
+
<contactref element="IC2" pad="4"/>
|
1404
|
+
<contactref element="BU6" pad="8"/>
|
1405
|
+
<wire x1="73.025" y1="53.975" x2="69.215" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1406
|
+
</signal>
|
1407
|
+
<signal name="!OE2">
|
1408
|
+
<contactref element="IC3" pad="4"/>
|
1409
|
+
<contactref element="BU6" pad="7"/>
|
1410
|
+
<wire x1="73.025" y1="56.515" x2="59.055" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1411
|
+
</signal>
|
1412
|
+
<signal name="!OE3">
|
1413
|
+
<contactref element="IC4" pad="4"/>
|
1414
|
+
<contactref element="BU6" pad="10"/>
|
1415
|
+
<wire x1="70.485" y1="53.975" x2="48.895" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1416
|
+
</signal>
|
1417
|
+
<signal name="!OE4">
|
1418
|
+
<contactref element="IC5" pad="4"/>
|
1419
|
+
<contactref element="BU6" pad="9"/>
|
1420
|
+
<wire x1="70.485" y1="56.515" x2="38.735" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1421
|
+
</signal>
|
1422
|
+
<signal name="ENC0">
|
1423
|
+
<contactref element="IC1" pad="7"/>
|
1424
|
+
<contactref element="ST1" pad="5"/>
|
1425
|
+
<wire x1="79.375" y1="31.115" x2="4.445" y2="19.685" width="0" layer="19" extent="1-1"/>
|
1426
|
+
</signal>
|
1427
|
+
<signal name="ENC1">
|
1428
|
+
<contactref element="IC1" pad="6"/>
|
1429
|
+
<contactref element="ST1" pad="6"/>
|
1430
|
+
<wire x1="79.375" y1="28.575" x2="6.985" y2="19.685" width="0" layer="19" extent="1-1"/>
|
1431
|
+
</signal>
|
1432
|
+
<signal name="ENC2">
|
1433
|
+
<contactref element="IC2" pad="7"/>
|
1434
|
+
<contactref element="ST1" pad="7"/>
|
1435
|
+
<wire x1="69.215" y1="31.115" x2="4.445" y2="17.145" width="0" layer="19" extent="1-1"/>
|
1436
|
+
</signal>
|
1437
|
+
<signal name="ENC3">
|
1438
|
+
<contactref element="IC2" pad="6"/>
|
1439
|
+
<contactref element="ST1" pad="8"/>
|
1440
|
+
<wire x1="69.215" y1="28.575" x2="6.985" y2="17.145" width="0" layer="19" extent="1-1"/>
|
1441
|
+
</signal>
|
1442
|
+
<signal name="ENC4">
|
1443
|
+
<contactref element="IC3" pad="7"/>
|
1444
|
+
<contactref element="ST1" pad="9"/>
|
1445
|
+
<wire x1="59.055" y1="31.115" x2="4.445" y2="14.605" width="0" layer="19" extent="1-1"/>
|
1446
|
+
</signal>
|
1447
|
+
<signal name="ENC5">
|
1448
|
+
<contactref element="IC3" pad="6"/>
|
1449
|
+
<contactref element="ST1" pad="10"/>
|
1450
|
+
<wire x1="59.055" y1="28.575" x2="6.985" y2="14.605" width="0" layer="19" extent="1-1"/>
|
1451
|
+
</signal>
|
1452
|
+
<signal name="ENC6">
|
1453
|
+
<contactref element="IC4" pad="7"/>
|
1454
|
+
<contactref element="ST1" pad="11"/>
|
1455
|
+
<wire x1="48.895" y1="31.115" x2="4.445" y2="12.065" width="0" layer="19" extent="1-1"/>
|
1456
|
+
</signal>
|
1457
|
+
<signal name="ENC7">
|
1458
|
+
<contactref element="IC4" pad="6"/>
|
1459
|
+
<contactref element="ST1" pad="12"/>
|
1460
|
+
<wire x1="48.895" y1="28.575" x2="6.985" y2="12.065" width="0" layer="19" extent="1-1"/>
|
1461
|
+
</signal>
|
1462
|
+
<signal name="ENC8">
|
1463
|
+
<contactref element="IC5" pad="7"/>
|
1464
|
+
<contactref element="ST1" pad="13"/>
|
1465
|
+
<wire x1="38.735" y1="31.115" x2="4.445" y2="9.525" width="0" layer="19" extent="1-1"/>
|
1466
|
+
</signal>
|
1467
|
+
<signal name="ENC9">
|
1468
|
+
<contactref element="IC5" pad="6"/>
|
1469
|
+
<contactref element="ST1" pad="14"/>
|
1470
|
+
<wire x1="38.735" y1="28.575" x2="6.985" y2="9.525" width="0" layer="19" extent="1-1"/>
|
1471
|
+
</signal>
|
1472
|
+
<signal name="ENC10">
|
1473
|
+
<contactref element="IC6" pad="7"/>
|
1474
|
+
<contactref element="ST1" pad="15"/>
|
1475
|
+
<wire x1="28.575" y1="31.115" x2="4.445" y2="6.985" width="0" layer="19" extent="1-1"/>
|
1476
|
+
</signal>
|
1477
|
+
<signal name="ENC11">
|
1478
|
+
<contactref element="IC6" pad="6"/>
|
1479
|
+
<contactref element="ST1" pad="16"/>
|
1480
|
+
<wire x1="28.575" y1="28.575" x2="6.985" y2="6.985" width="0" layer="19" extent="1-1"/>
|
1481
|
+
</signal>
|
1482
|
+
<signal name="+5V">
|
1483
|
+
<contactref element="U2" pad="3"/>
|
1484
|
+
<contactref element="C4" pad="+"/>
|
1485
|
+
<contactref element="BU6" pad="50"/>
|
1486
|
+
<contactref element="R4" pad="1"/>
|
1487
|
+
<contactref element="R2" pad="1"/>
|
1488
|
+
<contactref element="R1" pad="1"/>
|
1489
|
+
<contactref element="IC1" pad="16"/>
|
1490
|
+
<contactref element="IC9" pad="11"/>
|
1491
|
+
<contactref element="IC2" pad="16"/>
|
1492
|
+
<contactref element="IC3" pad="16"/>
|
1493
|
+
<contactref element="IC4" pad="16"/>
|
1494
|
+
<contactref element="IC5" pad="16"/>
|
1495
|
+
<contactref element="IC6" pad="16"/>
|
1496
|
+
<contactref element="IC7" pad="11"/>
|
1497
|
+
<contactref element="IC8" pad="11"/>
|
1498
|
+
<contactref element="D1" pad="K"/>
|
1499
|
+
<contactref element="C5" pad="+"/>
|
1500
|
+
<contactref element="ST1" pad="4"/>
|
1501
|
+
<contactref element="ST1" pad="3"/>
|
1502
|
+
<wire x1="93.98" y1="48.895" x2="83.185" y2="39.37" width="0" layer="19" extent="1-1"/>
|
1503
|
+
<wire x1="83.185" y1="39.37" x2="83.185" y2="23.495" width="0" layer="19" extent="1-1"/>
|
1504
|
+
<wire x1="83.185" y1="23.495" x2="71.755" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1505
|
+
<wire x1="71.755" y1="15.875" x2="61.595" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1506
|
+
<wire x1="61.595" y1="15.875" x2="51.435" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1507
|
+
<wire x1="51.435" y1="15.875" x2="41.275" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1508
|
+
<wire x1="41.275" y1="15.875" x2="31.115" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1509
|
+
<wire x1="31.115" y1="15.875" x2="20.955" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1510
|
+
<wire x1="20.955" y1="15.875" x2="13.97" y2="15.875" width="0" layer="19" extent="1-1"/>
|
1511
|
+
<wire x1="13.97" y1="15.875" x2="6.985" y2="22.225" width="0" layer="19" extent="1-1"/>
|
1512
|
+
<wire x1="6.985" y1="22.225" x2="4.445" y2="22.225" width="0" layer="19" extent="1-1"/>
|
1513
|
+
<wire x1="83.185" y1="39.37" x2="62.865" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1514
|
+
<wire x1="62.865" y1="38.735" x2="41.275" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1515
|
+
<wire x1="41.275" y1="38.735" x2="19.685" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1516
|
+
<wire x1="19.685" y1="53.975" x2="19.685" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1517
|
+
<wire x1="83.185" y1="23.495" x2="86.995" y2="3.175" width="0" layer="19" extent="1-1"/>
|
1518
|
+
<wire x1="89.535" y1="3.175" x2="86.995" y2="3.175" width="0" layer="19" extent="1-1"/>
|
1519
|
+
<wire x1="94.615" y1="3.175" x2="89.535" y2="3.175" width="0" layer="19" extent="1-1"/>
|
1520
|
+
</signal>
|
1521
|
+
<signal name="GND" class="2">
|
1522
|
+
<contactref element="BU6" pad="49"/>
|
1523
|
+
<contactref element="C2" pad="1"/>
|
1524
|
+
<contactref element="B1" pad="-"/>
|
1525
|
+
<contactref element="U1" pad="2"/>
|
1526
|
+
<contactref element="C3" pad="-"/>
|
1527
|
+
<contactref element="C4" pad="-"/>
|
1528
|
+
<contactref element="U2" pad="2"/>
|
1529
|
+
<contactref element="IC1" pad="8"/>
|
1530
|
+
<contactref element="IC9" pad="13"/>
|
1531
|
+
<contactref element="IC9" pad="12"/>
|
1532
|
+
<contactref element="IC9" pad="5"/>
|
1533
|
+
<contactref element="IC9" pad="4"/>
|
1534
|
+
<contactref element="IC8" pad="13"/>
|
1535
|
+
<contactref element="IC8" pad="12"/>
|
1536
|
+
<contactref element="IC8" pad="5"/>
|
1537
|
+
<contactref element="IC8" pad="4"/>
|
1538
|
+
<contactref element="IC7" pad="13"/>
|
1539
|
+
<contactref element="IC7" pad="12"/>
|
1540
|
+
<contactref element="IC7" pad="5"/>
|
1541
|
+
<contactref element="IC7" pad="4"/>
|
1542
|
+
<contactref element="IC6" pad="8"/>
|
1543
|
+
<contactref element="IC5" pad="8"/>
|
1544
|
+
<contactref element="IC4" pad="8"/>
|
1545
|
+
<contactref element="IC3" pad="8"/>
|
1546
|
+
<contactref element="IC2" pad="8"/>
|
1547
|
+
<contactref element="D1" pad="A"/>
|
1548
|
+
<contactref element="R3" pad="1"/>
|
1549
|
+
<contactref element="C1" pad="-"/>
|
1550
|
+
<contactref element="ST3" pad="2"/>
|
1551
|
+
<contactref element="ST3" pad="4"/>
|
1552
|
+
<contactref element="C5" pad="-"/>
|
1553
|
+
<contactref element="C6" pad="-"/>
|
1554
|
+
<contactref element="ST1" pad="1"/>
|
1555
|
+
<contactref element="ST1" pad="2"/>
|
1556
|
+
<wire x1="89.1286" y1="74.295" x2="93.98" y2="62.865" width="0" layer="19" extent="1-1"/>
|
1557
|
+
<wire x1="93.98" y1="62.865" x2="93.98" y2="51.435" width="0" layer="19" extent="1-1"/>
|
1558
|
+
<wire x1="93.98" y1="62.865" x2="76.835" y2="60.96" width="0" layer="19" extent="1-1"/>
|
1559
|
+
<wire x1="93.98" y1="51.435" x2="80.645" y2="43.815" width="0" layer="19" extent="1-1"/>
|
1560
|
+
<wire x1="80.645" y1="43.815" x2="83.185" y2="36.83" width="0" layer="19" extent="1-1"/>
|
1561
|
+
<wire x1="83.185" y1="36.83" x2="83.185" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1562
|
+
<wire x1="83.185" y1="33.655" x2="79.375" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1563
|
+
<wire x1="79.375" y1="33.655" x2="69.215" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1564
|
+
<wire x1="67.945" y1="38.735" x2="69.215" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1565
|
+
<wire x1="67.945" y1="38.735" x2="65.405" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1566
|
+
<wire x1="67.945" y1="46.355" x2="67.945" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1567
|
+
<wire x1="67.945" y1="46.355" x2="65.405" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1568
|
+
<wire x1="69.215" y1="33.655" x2="59.055" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1569
|
+
<wire x1="59.055" y1="33.655" x2="48.895" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1570
|
+
<wire x1="46.355" y1="38.735" x2="48.895" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1571
|
+
<wire x1="46.355" y1="38.735" x2="43.815" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1572
|
+
<wire x1="46.355" y1="46.355" x2="46.355" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1573
|
+
<wire x1="46.355" y1="46.355" x2="43.815" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1574
|
+
<wire x1="43.815" y1="38.735" x2="38.735" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1575
|
+
<wire x1="38.735" y1="33.655" x2="28.575" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1576
|
+
<wire x1="24.765" y1="38.735" x2="28.575" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1577
|
+
<wire x1="24.765" y1="38.735" x2="22.225" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1578
|
+
<wire x1="24.765" y1="46.355" x2="24.765" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1579
|
+
<wire x1="24.765" y1="46.355" x2="22.225" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1580
|
+
<wire x1="19.685" y1="56.515" x2="22.225" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1581
|
+
<wire x1="22.225" y1="38.735" x2="13.97" y2="33.655" width="0" layer="19" extent="1-1"/>
|
1582
|
+
<wire x1="13.97" y1="33.655" x2="13.97" y2="18.415" width="0" layer="19" extent="1-1"/>
|
1583
|
+
<wire x1="13.97" y1="18.415" x2="6.985" y2="24.765" width="0" layer="19" extent="1-1"/>
|
1584
|
+
<wire x1="6.985" y1="24.765" x2="4.445" y2="24.765" width="0" layer="19" extent="1-1"/>
|
1585
|
+
<wire x1="15.875" y1="69.215" x2="19.685" y2="56.515" width="0" layer="19" extent="1-1"/>
|
1586
|
+
<wire x1="83.185" y1="33.655" x2="92.075" y2="22.86" width="0" layer="19" extent="1-1"/>
|
1587
|
+
<wire x1="92.075" y1="22.86" x2="92.075" y2="20.32" width="0" layer="19" extent="1-1"/>
|
1588
|
+
<wire x1="92.075" y1="20.32" x2="92.075" y2="13.335" width="0" layer="19" extent="1-1"/>
|
1589
|
+
</signal>
|
1590
|
+
<signal name="EN">
|
1591
|
+
<contactref element="IC7" pad="14"/>
|
1592
|
+
<contactref element="IC8" pad="14"/>
|
1593
|
+
<contactref element="IC9" pad="14"/>
|
1594
|
+
<contactref element="R3" pad="2"/>
|
1595
|
+
<contactref element="BU5" pad="9"/>
|
1596
|
+
<wire x1="70.485" y1="38.735" x2="48.895" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1597
|
+
<wire x1="48.895" y1="38.735" x2="27.305" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1598
|
+
<wire x1="70.485" y1="38.735" x2="70.485" y2="10.795" width="0" layer="19" extent="1-1"/>
|
1599
|
+
<wire x1="92.075" y1="3.175" x2="70.485" y2="10.795" width="0" layer="19" extent="1-1"/>
|
1600
|
+
</signal>
|
1601
|
+
<signal name="VALVE0">
|
1602
|
+
<contactref element="IC7" pad="16"/>
|
1603
|
+
<contactref element="BU5" pad="21"/>
|
1604
|
+
<wire x1="75.565" y1="38.735" x2="55.245" y2="10.795" width="0" layer="19" extent="1-1"/>
|
1605
|
+
</signal>
|
1606
|
+
<signal name="VALVE1">
|
1607
|
+
<contactref element="IC7" pad="15"/>
|
1608
|
+
<contactref element="BU5" pad="20"/>
|
1609
|
+
<wire x1="73.025" y1="38.735" x2="57.785" y2="8.255" width="0" layer="19" extent="1-1"/>
|
1610
|
+
</signal>
|
1611
|
+
<signal name="VALVE2">
|
1612
|
+
<contactref element="IC7" pad="10"/>
|
1613
|
+
<contactref element="BU5" pad="19"/>
|
1614
|
+
<wire x1="60.325" y1="38.735" x2="57.785" y2="10.795" width="0" layer="19" extent="1-1"/>
|
1615
|
+
</signal>
|
1616
|
+
<signal name="VALVE3">
|
1617
|
+
<contactref element="IC7" pad="9"/>
|
1618
|
+
<contactref element="BU5" pad="18"/>
|
1619
|
+
<wire x1="57.785" y1="38.735" x2="60.325" y2="8.255" width="0" layer="19" extent="1-1"/>
|
1620
|
+
</signal>
|
1621
|
+
<signal name="VALVE4">
|
1622
|
+
<contactref element="IC8" pad="16"/>
|
1623
|
+
<contactref element="BU5" pad="17"/>
|
1624
|
+
<wire x1="53.975" y1="38.735" x2="60.325" y2="10.795" width="0" layer="19" extent="1-1"/>
|
1625
|
+
</signal>
|
1626
|
+
<signal name="VALVE5">
|
1627
|
+
<contactref element="IC8" pad="15"/>
|
1628
|
+
<contactref element="BU5" pad="16"/>
|
1629
|
+
<wire x1="51.435" y1="38.735" x2="62.865" y2="8.255" width="0" layer="19" extent="1-1"/>
|
1630
|
+
</signal>
|
1631
|
+
<signal name="VALVE6">
|
1632
|
+
<contactref element="IC8" pad="10"/>
|
1633
|
+
<contactref element="BU5" pad="15"/>
|
1634
|
+
<wire x1="38.735" y1="38.735" x2="62.865" y2="10.795" width="0" layer="19" extent="1-1"/>
|
1635
|
+
</signal>
|
1636
|
+
<signal name="VALVE7">
|
1637
|
+
<contactref element="IC8" pad="9"/>
|
1638
|
+
<contactref element="BU5" pad="14"/>
|
1639
|
+
<wire x1="36.195" y1="38.735" x2="65.405" y2="8.255" width="0" layer="19" extent="1-1"/>
|
1640
|
+
</signal>
|
1641
|
+
<signal name="VALVE8">
|
1642
|
+
<contactref element="IC9" pad="16"/>
|
1643
|
+
<contactref element="BU5" pad="13"/>
|
1644
|
+
<wire x1="65.405" y1="10.795" x2="32.385" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1645
|
+
</signal>
|
1646
|
+
<signal name="VALVE9">
|
1647
|
+
<contactref element="IC9" pad="15"/>
|
1648
|
+
<contactref element="BU5" pad="12"/>
|
1649
|
+
<wire x1="67.945" y1="8.255" x2="29.845" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1650
|
+
</signal>
|
1651
|
+
<signal name="VALVE10">
|
1652
|
+
<contactref element="IC9" pad="10"/>
|
1653
|
+
<contactref element="BU5" pad="11"/>
|
1654
|
+
<wire x1="67.945" y1="10.795" x2="17.145" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1655
|
+
</signal>
|
1656
|
+
<signal name="VALVE11">
|
1657
|
+
<contactref element="IC9" pad="9"/>
|
1658
|
+
<contactref element="BU5" pad="10"/>
|
1659
|
+
<wire x1="70.485" y1="8.255" x2="14.605" y2="38.735" width="0" layer="19" extent="1-1"/>
|
1660
|
+
</signal>
|
1661
|
+
<signal name="COIL0">
|
1662
|
+
<contactref element="IC7" pad="1"/>
|
1663
|
+
<contactref element="ST2" pad="2"/>
|
1664
|
+
<wire x1="75.565" y1="46.355" x2="6.985" y2="73.025" width="0" layer="19" extent="1-1"/>
|
1665
|
+
</signal>
|
1666
|
+
<signal name="COIL1">
|
1667
|
+
<contactref element="IC7" pad="3"/>
|
1668
|
+
<contactref element="ST2" pad="4"/>
|
1669
|
+
<wire x1="70.485" y1="46.355" x2="6.985" y2="70.485" width="0" layer="19" extent="1-1"/>
|
1670
|
+
</signal>
|
1671
|
+
<signal name="COIL2">
|
1672
|
+
<contactref element="IC7" pad="6"/>
|
1673
|
+
<contactref element="ST2" pad="6"/>
|
1674
|
+
<wire x1="62.865" y1="46.355" x2="6.985" y2="67.945" width="0" layer="19" extent="1-1"/>
|
1675
|
+
</signal>
|
1676
|
+
<signal name="COIL3">
|
1677
|
+
<contactref element="IC7" pad="8"/>
|
1678
|
+
<contactref element="ST2" pad="8"/>
|
1679
|
+
<wire x1="57.785" y1="46.355" x2="6.985" y2="65.405" width="0" layer="19" extent="1-1"/>
|
1680
|
+
</signal>
|
1681
|
+
<signal name="COIL4">
|
1682
|
+
<contactref element="IC8" pad="1"/>
|
1683
|
+
<contactref element="ST2" pad="10"/>
|
1684
|
+
<wire x1="53.975" y1="46.355" x2="6.985" y2="62.865" width="0" layer="19" extent="1-1"/>
|
1685
|
+
</signal>
|
1686
|
+
<signal name="COIL5">
|
1687
|
+
<contactref element="IC8" pad="3"/>
|
1688
|
+
<contactref element="ST2" pad="12"/>
|
1689
|
+
<wire x1="48.895" y1="46.355" x2="6.985" y2="60.325" width="0" layer="19" extent="1-1"/>
|
1690
|
+
</signal>
|
1691
|
+
<signal name="COIL6">
|
1692
|
+
<contactref element="IC8" pad="6"/>
|
1693
|
+
<contactref element="ST2" pad="14"/>
|
1694
|
+
<wire x1="41.275" y1="46.355" x2="6.985" y2="57.785" width="0" layer="19" extent="1-1"/>
|
1695
|
+
</signal>
|
1696
|
+
<signal name="COIL7">
|
1697
|
+
<contactref element="IC8" pad="8"/>
|
1698
|
+
<contactref element="ST2" pad="16"/>
|
1699
|
+
<wire x1="36.195" y1="46.355" x2="6.985" y2="55.245" width="0" layer="19" extent="1-1"/>
|
1700
|
+
</signal>
|
1701
|
+
<signal name="COIL8">
|
1702
|
+
<contactref element="IC9" pad="1"/>
|
1703
|
+
<contactref element="ST2" pad="18"/>
|
1704
|
+
<wire x1="32.385" y1="46.355" x2="6.985" y2="52.705" width="0" layer="19" extent="1-1"/>
|
1705
|
+
</signal>
|
1706
|
+
<signal name="COIL9">
|
1707
|
+
<contactref element="IC9" pad="3"/>
|
1708
|
+
<contactref element="ST2" pad="20"/>
|
1709
|
+
<wire x1="27.305" y1="46.355" x2="6.985" y2="50.165" width="0" layer="19" extent="1-1"/>
|
1710
|
+
</signal>
|
1711
|
+
<signal name="COIL10">
|
1712
|
+
<contactref element="IC9" pad="6"/>
|
1713
|
+
<contactref element="ST2" pad="22"/>
|
1714
|
+
<wire x1="19.685" y1="46.355" x2="6.985" y2="47.625" width="0" layer="19" extent="1-1"/>
|
1715
|
+
</signal>
|
1716
|
+
<signal name="COIL11">
|
1717
|
+
<contactref element="IC9" pad="8"/>
|
1718
|
+
<contactref element="ST2" pad="24"/>
|
1719
|
+
<wire x1="14.605" y1="46.355" x2="6.985" y2="45.085" width="0" layer="19" extent="1-1"/>
|
1720
|
+
</signal>
|
1721
|
+
<signal name="+24V" class="2">
|
1722
|
+
<contactref element="IC7" pad="2"/>
|
1723
|
+
<contactref element="IC7" pad="7"/>
|
1724
|
+
<contactref element="IC8" pad="7"/>
|
1725
|
+
<contactref element="IC8" pad="2"/>
|
1726
|
+
<contactref element="IC9" pad="7"/>
|
1727
|
+
<contactref element="IC9" pad="2"/>
|
1728
|
+
<contactref element="U1" pad="3"/>
|
1729
|
+
<contactref element="C3" pad="+"/>
|
1730
|
+
<contactref element="R5" pad="1"/>
|
1731
|
+
<contactref element="ST2" pad="1"/>
|
1732
|
+
<contactref element="ST2" pad="3"/>
|
1733
|
+
<contactref element="ST2" pad="5"/>
|
1734
|
+
<contactref element="ST2" pad="7"/>
|
1735
|
+
<contactref element="ST2" pad="9"/>
|
1736
|
+
<contactref element="ST2" pad="11"/>
|
1737
|
+
<contactref element="ST2" pad="13"/>
|
1738
|
+
<contactref element="ST2" pad="15"/>
|
1739
|
+
<contactref element="ST2" pad="17"/>
|
1740
|
+
<contactref element="ST2" pad="19"/>
|
1741
|
+
<contactref element="ST2" pad="21"/>
|
1742
|
+
<contactref element="ST2" pad="23"/>
|
1743
|
+
<contactref element="ST2" pad="25"/>
|
1744
|
+
<contactref element="ST2" pad="26"/>
|
1745
|
+
<contactref element="C6" pad="+"/>
|
1746
|
+
<wire x1="93.98" y1="60.325" x2="80.645" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1747
|
+
<wire x1="80.645" y1="46.355" x2="73.025" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1748
|
+
<wire x1="73.025" y1="46.355" x2="60.325" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1749
|
+
<wire x1="60.325" y1="46.355" x2="51.435" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1750
|
+
<wire x1="51.435" y1="46.355" x2="38.735" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1751
|
+
<wire x1="38.735" y1="46.355" x2="29.845" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1752
|
+
<wire x1="29.845" y1="46.355" x2="17.145" y2="46.355" width="0" layer="19" extent="1-1"/>
|
1753
|
+
<wire x1="17.145" y1="46.355" x2="4.445" y2="47.625" width="0" layer="19" extent="1-1"/>
|
1754
|
+
<wire x1="4.445" y1="50.165" x2="4.445" y2="47.625" width="0" layer="19" extent="1-1"/>
|
1755
|
+
<wire x1="4.445" y1="52.705" x2="4.445" y2="50.165" width="0" layer="19" extent="1-1"/>
|
1756
|
+
<wire x1="4.445" y1="55.245" x2="4.445" y2="52.705" width="0" layer="19" extent="1-1"/>
|
1757
|
+
<wire x1="4.445" y1="57.785" x2="4.445" y2="55.245" width="0" layer="19" extent="1-1"/>
|
1758
|
+
<wire x1="4.445" y1="60.325" x2="4.445" y2="57.785" width="0" layer="19" extent="1-1"/>
|
1759
|
+
<wire x1="4.445" y1="62.865" x2="4.445" y2="60.325" width="0" layer="19" extent="1-1"/>
|
1760
|
+
<wire x1="4.445" y1="65.405" x2="4.445" y2="62.865" width="0" layer="19" extent="1-1"/>
|
1761
|
+
<wire x1="4.445" y1="67.945" x2="4.445" y2="65.405" width="0" layer="19" extent="1-1"/>
|
1762
|
+
<wire x1="4.445" y1="70.485" x2="4.445" y2="67.945" width="0" layer="19" extent="1-1"/>
|
1763
|
+
<wire x1="4.445" y1="73.025" x2="4.445" y2="70.485" width="0" layer="19" extent="1-1"/>
|
1764
|
+
<wire x1="4.445" y1="47.625" x2="4.445" y2="45.085" width="0" layer="19" extent="1-1"/>
|
1765
|
+
<wire x1="4.445" y1="45.085" x2="4.445" y2="42.545" width="0" layer="19" extent="1-1"/>
|
1766
|
+
<wire x1="6.985" y1="42.545" x2="4.445" y2="42.545" width="0" layer="19" extent="1-1"/>
|
1767
|
+
<wire x1="17.145" y1="46.355" x2="13.97" y2="31.115" width="0" layer="19" extent="1-1"/>
|
1768
|
+
<wire x1="80.645" y1="46.355" x2="97.155" y2="3.175" width="0" layer="19" extent="1-1"/>
|
1769
|
+
</signal>
|
1770
|
+
<signal name="VIN" class="2">
|
1771
|
+
<contactref element="B1" pad="+"/>
|
1772
|
+
<contactref element="U1" pad="1"/>
|
1773
|
+
<contactref element="C2" pad="2"/>
|
1774
|
+
<contactref element="U2" pad="1"/>
|
1775
|
+
<contactref element="C1" pad="+"/>
|
1776
|
+
<wire x1="93.98" y1="65.405" x2="93.98" y2="53.975" width="0" layer="19" extent="1-1"/>
|
1777
|
+
<wire x1="93.98" y1="65.405" x2="76.835" y2="66.04" width="0" layer="19" extent="1-1"/>
|
1778
|
+
<wire x1="76.835" y1="66.04" x2="64.135" y2="74.295" width="0" layer="19" extent="1-1"/>
|
1779
|
+
<wire x1="64.135" y1="74.295" x2="51.435" y2="69.215" width="0" layer="19" extent="1-1"/>
|
1780
|
+
</signal>
|
1781
|
+
<signal name="STATUS0">
|
1782
|
+
<contactref element="BU5" pad="7"/>
|
1783
|
+
<contactref element="ST3" pad="8"/>
|
1784
|
+
<wire x1="92.075" y1="27.94" x2="73.025" y2="10.795" width="0" layer="19" extent="1-1"/>
|
1785
|
+
</signal>
|
1786
|
+
<signal name="STATUS1">
|
1787
|
+
<contactref element="BU5" pad="6"/>
|
1788
|
+
<contactref element="ST3" pad="6"/>
|
1789
|
+
<wire x1="92.075" y1="25.4" x2="75.565" y2="8.255" width="0" layer="19" extent="1-1"/>
|
1790
|
+
</signal>
|
1791
|
+
<signal name="AC1" class="1">
|
1792
|
+
<contactref element="B1" pad="AC1"/>
|
1793
|
+
<contactref element="ST3" pad="10"/>
|
1794
|
+
<contactref element="ST3" pad="12"/>
|
1795
|
+
<contactref element="ST3" pad="9"/>
|
1796
|
+
<contactref element="ST3" pad="11"/>
|
1797
|
+
<wire x1="92.075" y1="30.48" x2="94.615" y2="30.48" width="1.27" layer="16"/>
|
1798
|
+
<wire x1="92.075" y1="31.75" x2="92.075" y2="30.48" width="1.27" layer="16"/>
|
1799
|
+
<wire x1="92.075" y1="31.75" x2="92.075" y2="33.02" width="1.27" layer="16"/>
|
1800
|
+
<wire x1="92.075" y1="33.02" x2="94.615" y2="33.02" width="1.27" layer="16"/>
|
1801
|
+
<wire x1="89.535" y1="42.545" x2="83.185" y2="42.545" width="2.54" layer="16"/>
|
1802
|
+
<wire x1="83.185" y1="42.545" x2="83.185" y2="66.04" width="2.54" layer="16"/>
|
1803
|
+
<wire x1="94.615" y1="33.02" x2="94.615" y2="30.48" width="1.27" layer="16"/>
|
1804
|
+
<wire x1="92.075" y1="30.48" x2="94.615" y2="33.02" width="1.524" layer="16"/>
|
1805
|
+
<wire x1="92.075" y1="33.02" x2="94.615" y2="30.48" width="1.524" layer="16"/>
|
1806
|
+
<wire x1="74.1426" y1="70.485" x2="74.1426" y2="74.295" width="2.54" layer="16"/>
|
1807
|
+
<wire x1="78.74" y1="70.485" x2="74.1426" y2="70.485" width="2.54" layer="16"/>
|
1808
|
+
<wire x1="83.185" y1="66.04" x2="78.74" y2="70.485" width="2.54" layer="16"/>
|
1809
|
+
<wire x1="89.535" y1="31.75" x2="89.535" y2="42.545" width="2.54" layer="16"/>
|
1810
|
+
<wire x1="89.535" y1="31.75" x2="92.075" y2="31.75" width="2.54" layer="16"/>
|
1811
|
+
</signal>
|
1812
|
+
<signal name="AC2" class="1">
|
1813
|
+
<contactref element="B1" pad="AC2"/>
|
1814
|
+
<contactref element="ST3" pad="14"/>
|
1815
|
+
<contactref element="ST3" pad="16"/>
|
1816
|
+
<contactref element="ST3" pad="13"/>
|
1817
|
+
<contactref element="ST3" pad="15"/>
|
1818
|
+
<wire x1="92.075" y1="35.56" x2="94.615" y2="35.56" width="1.27" layer="16"/>
|
1819
|
+
<wire x1="92.075" y1="35.56" x2="92.075" y2="38.1" width="1.27" layer="16"/>
|
1820
|
+
<wire x1="94.615" y1="38.1" x2="93.345" y2="38.1" width="1.27" layer="16"/>
|
1821
|
+
<wire x1="92.075" y1="38.1" x2="93.345" y2="38.1" width="1.27" layer="16"/>
|
1822
|
+
<wire x1="94.615" y1="35.56" x2="94.615" y2="38.1" width="1.27" layer="16"/>
|
1823
|
+
<wire x1="92.075" y1="35.56" x2="94.615" y2="38.1" width="1.524" layer="16"/>
|
1824
|
+
<wire x1="94.615" y1="35.56" x2="92.075" y2="38.1" width="1.524" layer="16"/>
|
1825
|
+
<wire x1="93.345" y1="45.72" x2="86.36" y2="45.72" width="2.54" layer="16"/>
|
1826
|
+
<wire x1="93.345" y1="38.1" x2="93.345" y2="45.72" width="2.54" layer="16"/>
|
1827
|
+
<wire x1="86.36" y1="69.5706" x2="81.6356" y2="74.295" width="2.54" layer="16"/>
|
1828
|
+
<wire x1="86.36" y1="45.72" x2="86.36" y2="69.5706" width="2.54" layer="16"/>
|
1829
|
+
</signal>
|
1830
|
+
<signal name="N$5">
|
1831
|
+
<contactref element="R4" pad="2"/>
|
1832
|
+
<contactref element="ST3" pad="3"/>
|
1833
|
+
<wire x1="94.615" y1="22.86" x2="94.615" y2="13.335" width="0" layer="19" extent="1-1"/>
|
1834
|
+
</signal>
|
1835
|
+
<signal name="N$6">
|
1836
|
+
<contactref element="R2" pad="2"/>
|
1837
|
+
<contactref element="ST3" pad="5"/>
|
1838
|
+
<wire x1="94.615" y1="25.4" x2="89.535" y2="13.335" width="0" layer="19" extent="1-1"/>
|
1839
|
+
</signal>
|
1840
|
+
<signal name="N$7">
|
1841
|
+
<contactref element="R1" pad="2"/>
|
1842
|
+
<contactref element="ST3" pad="7"/>
|
1843
|
+
<wire x1="94.615" y1="27.94" x2="86.995" y2="13.335" width="0" layer="19" extent="1-1"/>
|
1844
|
+
</signal>
|
1845
|
+
<signal name="N$8">
|
1846
|
+
<contactref element="JP1" pad="2"/>
|
1847
|
+
<contactref element="BU6" pad="35"/>
|
1848
|
+
<wire x1="54.61" y1="72.39" x2="37.465" y2="56.515" width="0" layer="19" extent="1-1"/>
|
1849
|
+
</signal>
|
1850
|
+
<signal name="N$9">
|
1851
|
+
<contactref element="JP1" pad="1"/>
|
1852
|
+
<contactref element="BU6" pad="37"/>
|
1853
|
+
<wire x1="54.61" y1="74.93" x2="34.925" y2="56.515" width="0" layer="19" extent="1-1"/>
|
1854
|
+
</signal>
|
1855
|
+
<signal name="N$4">
|
1856
|
+
<contactref element="R5" pad="2"/>
|
1857
|
+
<contactref element="ST3" pad="1"/>
|
1858
|
+
<wire x1="94.615" y1="20.32" x2="97.155" y2="13.335" width="0" layer="19" extent="1-1"/>
|
1859
|
+
</signal>
|
1860
|
+
</signals>
|
1861
|
+
</board>
|
1862
|
+
</drawing>
|
1863
|
+
</eagle>
|