├── README.md
├── drawings
├── blockdiagram-bis.png
├── blockdiagram.png
├── pcbs-all-connections.png
├── pcbs-serial-chain.png
├── pcbs.png
└── wordclock-layers.png
├── faceplate
├── face_21jul_reference_image.png
├── face_21jul_vector.ai
├── face_21jul_vector.pdf
└── inkscape
│ ├── face_21jul.svg
│ ├── face_21jul_path.svg
│ └── font.txt
├── firmware
└── wordclock.ino
└── hardware
├── gerbers-seeedstudio-2layer-0.8mm
├── ledboard.zip
└── main.zip
├── pcb-led-board.png
├── pcb-main-board.png
├── schematic-led-board.png
├── schematic-main-board.png
├── wordclock-ledboard.brd
├── wordclock-ledboard.sch
├── wordclock-mainboard.brd
└── wordclock-mainboard.sch
/README.md:
--------------------------------------------------------------------------------
1 | Wordclock
2 | =========
3 |
4 | Instructables: http://www.instructables.com/id/wordclock/
5 |
6 | 
7 |
8 | 
9 |
10 | 
11 |
12 | 
13 |
14 | 
15 |
16 | 
17 |
18 | [](http://www.youtube.com/watch?v=86BiDWXyuwA)
19 |
20 | 
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
21 |
--------------------------------------------------------------------------------
/drawings/blockdiagram-bis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/drawings/blockdiagram-bis.png
--------------------------------------------------------------------------------
/drawings/blockdiagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/drawings/blockdiagram.png
--------------------------------------------------------------------------------
/drawings/pcbs-all-connections.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/drawings/pcbs-all-connections.png
--------------------------------------------------------------------------------
/drawings/pcbs-serial-chain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/drawings/pcbs-serial-chain.png
--------------------------------------------------------------------------------
/drawings/pcbs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/drawings/pcbs.png
--------------------------------------------------------------------------------
/drawings/wordclock-layers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/drawings/wordclock-layers.png
--------------------------------------------------------------------------------
/faceplate/face_21jul_reference_image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/faceplate/face_21jul_reference_image.png
--------------------------------------------------------------------------------
/faceplate/face_21jul_vector.ai:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/faceplate/face_21jul_vector.ai
--------------------------------------------------------------------------------
/faceplate/face_21jul_vector.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/faceplate/face_21jul_vector.pdf
--------------------------------------------------------------------------------
/faceplate/inkscape/face_21jul.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
206 |
--------------------------------------------------------------------------------
/faceplate/inkscape/face_21jul_path.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
206 |
--------------------------------------------------------------------------------
/faceplate/inkscape/font.txt:
--------------------------------------------------------------------------------
1 | The font used is Droid Sans Mono, it is available on Google Fonts under an Apache 2.0 license.
2 | https://www.google.com/fonts/specimen/Droid+Sans+Mono
3 |
--------------------------------------------------------------------------------
/firmware/wordclock.ino:
--------------------------------------------------------------------------------
1 | // Wordclock firmware
2 | // ==================
3 | // November 2013 - August 2014
4 | // by Wouter Devinck
5 |
6 | // Dependencies:
7 | // * Arduino libraries - http://arduino.cc/
8 | // * Chronodot library (for DS3231) - https://github.com/Stephanie-Maks/Arduino-Chronodot
9 | // * LedControl library (for MAX7219) - http://playground.arduino.cc/Main/LedControl
10 |
11 | /* Hardware block diagram:
12 |
13 | +-----------------+
14 | | Real time clock |
15 | | Maxim DS3231 |
16 | +--------+--------+
17 | |I2C
18 | +-------------+-------------+
19 | | | +------------------+
20 | | +---+ 8x8 LED matrix 1 |
21 | +---+ | | | Maxim MAX7219 |
22 | |LDR+----+ | +---------+--------+
23 | +---+ | Microcontroller | |
24 | | Atmel ATMEGA328 | +---------+--------+
25 | +------+ | (with Arduino | | 8x8 LED matrix 2 |
26 | |Buzzer+-+ bootloader) | | Maxim MAX7219 |
27 | +------+ | | +---------+--------+
28 | | | |
29 | | | +---------+--------+
30 | +-++----++---------++----++-+ | 8x8 LED matrix 3 |
31 | || || || || | Maxim MAX7219 |
32 | +------++-+ || +------++-+ || +---------+--------+
33 | | Azoteq | || | Azoteq | || |
34 | | IQS127D | || | IQS127D | || +---------+--------+
35 | +---------+ || +---------+ || | 8x8 LED matrix 4 |
36 | || || | Maxim MAX7219 |
37 | +------++-+ +------++-+ +------------------+
38 | | Azoteq | | Azoteq |
39 | | IQS127D | | IQS127D |
40 | +---------+ +---------+
41 |
42 | (created using http://asciiflow.com/) */
43 |
44 |
45 | // Includes
46 | #include "LedControl.h" // MAX7219 - LED matrix drivers - http://playground.arduino.cc/Main/LedControl
47 | #include "Chronodot.h" // DS3231 - Real time clock - https://github.com/Stephanie-Maks/Arduino-Chronodot
48 | #include
49 | #include
50 |
51 | // Pins to capacitive touch chips (touch and presence for each of the Azoteq IQS127D chips in the four corners)
52 | const int pinTRB = 9; // Touch Right Bottom
53 | const int pinTRT = 3; // Touch Right Top
54 | const int pinTLT = 4; // Touch Left Top
55 | const int pinTLB = 10; // Touch Left Bottom
56 | // The presence pins are connected in hardware, but not used in this firmware.
57 | // Leaving the pin numbers in as comments for future reference.
58 | //const int pinPRB = 5; // Presence Right Bottom
59 | //const int pinPRT = 8; // Presence Right Top
60 | //const int pinPLT = 7; // Presence Left Bottom
61 | //const int pinPLB = 6; // Presence Left Top
62 |
63 | // Pins to led drivers
64 | const int pinData = 14; // A0 (used as digital pin)
65 | const int pinLoad = 15; // A1 (used as digital pin)
66 | const int pinClock = 16; // A2 (used as digital pin)
67 |
68 | // Other pins (buzzer and light sensor)
69 | const int pinBuzzer = 2;
70 | const int pinLDR = 3; // A3 (used as analog pin)
71 |
72 | // Constants
73 | const int noBoards = 4; // number of chained LED drivers
74 |
75 | // Settings (will be fetched from EEPROM)
76 | int brightness; // Between 0 and 15
77 |
78 | // The led controllers (MAX7219)
79 | LedControl lc = LedControl(pinData, pinClock, pinLoad, noBoards);
80 |
81 | // The real time clock chip (DS3231)
82 | Chronodot RTC;
83 |
84 | // LED grid
85 | const int bs = 8;
86 | const int bss = 3;
87 | const int boards[2][2] = { {2, 1}, {3, 0} };
88 |
89 | // Tasks
90 | const int wait = 10;
91 | const int noTasks = 3;
92 | typedef struct Tasks {
93 | long unsigned int previous;
94 | int interval;
95 | void (*function)();
96 | } Task;
97 | Task tasks[noTasks];
98 |
99 | // Serial menu options
100 | boolean mustReadBrightness = false;
101 |
102 | // Buffer
103 | boolean prevframe[16][16];
104 |
105 | // Words
106 |
107 | // Format: { line index, start position index, length }
108 |
109 | const int w_it[3] = { 0, 0, 2 };
110 | const int w_is[3] = { 0, 3, 2 };
111 | const int w_half[3] = { 7, 0, 4 };
112 | const int w_to[3] = { 7, 14, 2 };
113 | const int w_past[3] = { 8, 0, 4 };
114 | const int w_oclock[3] = { 11, 10, 6 };
115 | const int w_in[3] = { 12, 0, 2 };
116 | const int w_the[3] = { 12, 3, 3 };
117 | const int w_afternoon[3] = { 12, 7, 9 };
118 | const int w_noon[3] = { 12, 12, 4 }; // part of "afternoon"
119 | const int w_midnight[3] = { 4, 8, 8 };
120 | const int w_morning[3] = { 13, 0, 7 };
121 | const int w_at[3] = { 13, 8, 2 };
122 | const int w_night[3] = { 13, 11, 5 };
123 | const int w_evening[3] = { 14, 0, 7 };
124 | const int w_and[3] = { 14, 8, 3 };
125 | const int w_cold[3] = { 14, 12, 4 };
126 | const int w_cool[3] = { 15, 0, 4 };
127 | const int w_warm[3] = { 15, 6, 4 };
128 | const int w_hot[3] = { 15, 12, 3 };
129 | const int w_el[3] = { 9, 2, 2 };
130 |
131 | const int w_minutes[20][3] = {
132 | { 0, 13, 3 }, // one
133 | { 1, 0, 3 }, // two
134 | { 3, 0, 5 }, // three
135 | { 2, 12, 4 }, // four
136 | { 2, 0, 4 }, // five
137 | { 5, 0, 3 }, // six
138 | { 6, 0, 5 }, // seven
139 | { 5, 8, 5 }, // eight
140 | { 3, 6, 4 }, // nine
141 | { 1, 4, 3 }, // ten
142 | { 2, 5, 6 }, // eleven
143 | { 6, 10, 6 }, // twelve
144 | { 1, 8, 8 }, // thirteen
145 | { 4, 0, 8 }, // fourteen
146 | { 7, 6, 7 }, // quarter
147 | { 5, 0, 7 }, // sixteen
148 | { 6, 0, 9 }, // seventeen
149 | { 5, 8, 8 }, // eighteen
150 | { 3, 6, 8 }, // nineteen
151 | { 0, 6, 6 } // twenty
152 | };
153 |
154 | const int w_hours[12][3] = {
155 | { 8, 5, 3 }, // one
156 | { 8, 9, 3 }, // two
157 | { 11, 4, 5 }, // three
158 | { 9, 7, 4 }, // four
159 | { 9, 12, 4 }, // five
160 | { 8, 13, 3 }, // six
161 | { 10, 0, 5 }, // seven
162 | { 10, 6, 5 }, // eight
163 | { 10, 12, 4 }, // nine
164 | { 11, 0, 3 }, // ten
165 | { 10, 1, 4 }, // "even"
166 | { 9, 0, 6 } // twelve
167 | };
168 |
169 | // Touch
170 | boolean tlt;
171 | boolean trt;
172 | boolean tlb;
173 | boolean trb;
174 |
175 | void setup() {
176 |
177 | // Debug info
178 | Serial.begin(9600);
179 | Serial.println("[INFO] Wordclock is booting...");
180 |
181 | // Read settings from EEPROM
182 | Serial.println("[INFO] 1. Read settings");
183 | brightness = EEPROM.read(0);
184 |
185 | // Initiate the LED drivers
186 | Serial.println("[INFO] 2. LED drivers");
187 | for(int i = 0; i < noBoards; ++i) {
188 | lc.shutdown(i, false);
189 | lc.clearDisplay(i);
190 | }
191 | setBrightness(brightness);
192 |
193 | // Initiate the Real Time Clock
194 | Serial.println("[INFO] 3. Real time clock");
195 | Wire.begin();
196 | RTC.begin();
197 | //if (! RTC.isrunning()) {
198 | // Serial.println("[WARNING] RTC is NOT running!");
199 | // RTC.adjust(DateTime(__DATE__, __TIME__));
200 | //}
201 |
202 | // Initiate the capacitive touch inputs
203 | Serial.println("[INFO] 4. Capacitive touch");
204 | pinMode(pinTRB, INPUT);
205 | pinMode(pinTRT, INPUT);
206 | pinMode(pinTLT, INPUT);
207 | pinMode(pinTLB, INPUT);
208 | //pinMode(pinPRB, INPUT);
209 | //pinMode(pinPRT, INPUT);
210 | //pinMode(pinPLT, INPUT);
211 | //pinMode(pinPLB, INPUT);
212 |
213 | // Tasks
214 | Serial.println("[INFO] 5. Tasks");
215 | loadTasks();
216 |
217 | // Debug info
218 | Serial.println("[INFO] Wordclock done booting. Hellooooo!");
219 | printMenu();
220 |
221 | }
222 |
223 | void loadTasks() {
224 |
225 | // Listen for input on the serial interface
226 | tasks[0].previous = 0;
227 | tasks[0].interval = 100;
228 | tasks[0].function = serialMenu;
229 |
230 | // Show time
231 | tasks[1].previous = 0;
232 | tasks[1].interval = 1000;
233 | tasks[1].function = showTime;
234 |
235 | // Read the touch inputs
236 | tasks[2].previous = 0;
237 | tasks[2].interval = 100;
238 | tasks[2].function = readTouch;
239 |
240 | }
241 |
242 | void loop() {
243 | unsigned long time = millis();
244 | for(int i = 0; i < noTasks; i++) {
245 | Task task = tasks[i];
246 | if (time - task.previous > task.interval) {
247 | tasks[i].previous = time;
248 | task.function();
249 | }
250 | }
251 | delay(wait);
252 | }
253 |
254 | void serialMenu() {
255 | if (Serial.available() > 0) {
256 | if(mustReadBrightness) {
257 | int val = Serial.parseInt();
258 | if(val < 0 || val > 15) {
259 | Serial.println("[ERROR] Brightness must be between 0 and 15");
260 | } else {
261 | Serial.print("Brightness set to ");
262 | Serial.println(val, DEC);
263 | setBrightness(val);
264 | brightness = val;
265 | EEPROM.write(0, val);
266 | }
267 | mustReadBrightness = false;
268 | printMenu();
269 | } else {
270 | int in = Serial.read();
271 | if (in == 49) {
272 | Serial.println("You entered [1]");
273 | Serial.println(" Enter brightness (0-15)");
274 | mustReadBrightness = true;
275 | } else if (in == 50) {
276 | Serial.println("You entered [2]");
277 | Serial.print(" Brightness: ");
278 | Serial.println(brightness, DEC);
279 | printMenu();
280 | } else {
281 | Serial.println("[ERROR] Whut?");
282 | printMenu();
283 | }
284 | }
285 | }
286 | }
287 |
288 | void showTime() {
289 |
290 | // Get the time
291 | DateTime now = RTC.now();
292 | int h = now.hour();
293 | int h2 = h;
294 | int m = now.minute();
295 | int t = now.tempC();
296 |
297 | // DEBUG
298 | /*Serial.print("[DEBUG] ");
299 | Serial.print(h, DEC);
300 | Serial.print(':');
301 | Serial.println(m, DEC);*/
302 |
303 | // The frame
304 | boolean frame[16][16];
305 | for(int r = 0; r < 16; r++) {
306 | for(int c = 0; c < 16; c++) {
307 | frame[r][c] = false;
308 | }
309 | }
310 |
311 | // Show "IT IS"
312 | addWordToFrame(w_it, frame);
313 | addWordToFrame(w_is, frame);
314 |
315 | // Minutes
316 | if (m == 0) {
317 |
318 | if (h == 0) {
319 | addWordToFrame(w_midnight, frame);
320 | } else if (h == 12) {
321 | addWordToFrame(w_noon, frame);
322 | } else {
323 | addWordToFrame(w_oclock, frame);
324 | }
325 |
326 | } else {
327 |
328 | if (m <= 20) {
329 | addWordToFrame(w_minutes[m - 1], frame);
330 | } else if (m < 30) {
331 | addWordToFrame(w_minutes[19], frame); // twenty
332 | addWordToFrame(w_minutes[m - 21], frame);
333 | } else if (m == 30) {
334 | addWordToFrame(w_half, frame);
335 | } else if (m < 40) {
336 | addWordToFrame(w_minutes[19], frame); // twenty
337 | addWordToFrame(w_minutes[60 - m - 21], frame);
338 | } else {
339 | addWordToFrame(w_minutes[60 - m - 1], frame);
340 | }
341 |
342 | if(m <= 30) {
343 | addWordToFrame(w_past, frame);
344 | } else {
345 | addWordToFrame(w_to, frame);
346 | ++h2;
347 | }
348 |
349 | }
350 |
351 | if(!(m ==0 && (h == 0 || h == 12))) {
352 |
353 | // Hours
354 | if(h2 == 0) {
355 | addWordToFrame(w_hours[11], frame);
356 | } else if (h2 <= 12) {
357 | addWordToFrame(w_hours[h2 - 1], frame);
358 | } else {
359 | addWordToFrame(w_hours[h2 - 13], frame);
360 | }
361 | if(h2 == 11 || h2 == 23) {
362 | addWordToFrame(w_el, frame);
363 | }
364 |
365 | // Time of day
366 | if(h < 6) {
367 | addWordToFrame(w_at, frame);
368 | addWordToFrame(w_night, frame);
369 | } else if(h < 12) {
370 | addWordToFrame(w_in, frame);
371 | addWordToFrame(w_the, frame);
372 | addWordToFrame(w_morning, frame);
373 | } else if(h < 18) {
374 | addWordToFrame(w_in, frame);
375 | addWordToFrame(w_the, frame);
376 | addWordToFrame(w_afternoon, frame);
377 | } else {
378 | addWordToFrame(w_at, frame);
379 | addWordToFrame(w_night, frame);
380 | }
381 |
382 | }
383 |
384 | // Temperature
385 | addWordToFrame(w_and, frame);
386 | if(t <= 16) {
387 | addWordToFrame(w_cold, frame);
388 | } else if (t <= 20) {
389 | addWordToFrame(w_cool, frame);
390 | } else if (t <= 30) {
391 | addWordToFrame(w_warm, frame);
392 | } else {
393 | addWordToFrame(w_hot, frame);
394 | }
395 |
396 | // Update display
397 | updateDisplay(prevframe, frame);
398 |
399 | // Copy current frame to buffer
400 | for(int r = 0; r < 16; r++) {
401 | for(int c = 0; c < 16; c++) {
402 | prevframe[r][c] = frame[r][c];
403 | }
404 | }
405 |
406 | }
407 |
408 | void readTouch() {
409 | boolean lt = debounce(digitalRead(pinTLT) == LOW, &tlt);
410 | boolean rt = debounce(digitalRead(pinTRT) == LOW, &trt);
411 | boolean lb = debounce(digitalRead(pinTLB) == LOW, &tlb);
412 | boolean rb = debounce(digitalRead(pinTRB) == LOW, &trb);
413 | if(lt || rt || lb || rb) {
414 | tone(pinBuzzer, 500, 100);
415 | }
416 | }
417 |
418 | boolean debounce(boolean value, boolean* store) {
419 | if(value) {
420 | if(*store) {
421 | value = false;
422 | } else {
423 | *store = true;
424 | }
425 | } else {
426 | *store = false;
427 | }
428 | return value;
429 | }
430 |
431 | void setAllLeds(boolean on) {
432 | for(int i = 0; i < noBoards; ++i) {
433 | for(int r = 0; r < 8; ++r) {
434 | lc.setRow(i, r, B11111111);
435 | }
436 | }
437 | }
438 |
439 | void setLed(int row, int col, boolean on) {
440 | int t = row >> bss;
441 | int l = col >> bss;
442 | int board = boards[t][l];
443 | int r = row % bs;
444 | int c = col % bs;
445 | if(t == 0) {
446 | if(l == 0) {
447 | r = bs - 1 - r;
448 | c = (c + 1) % bs;
449 | } else {
450 | int r1 = r;
451 | r = c;
452 | c = (r1 + 1) % bs;
453 | }
454 | } else {
455 | if(l == 0) {
456 | int r1 = r;
457 | r = bs - 1 - c;
458 | c = (bs - r1) % bs;
459 | } else {
460 | c = (bs - c) % bs;
461 | }
462 | }
463 | lc.setLed(board, r, c, on);
464 | }
465 |
466 | void updateDisplay(boolean previousframe[16][16], boolean frame[16][16]) {
467 | for(int r = 0; r < 16; ++r) {
468 | for(int c = 0; c < 16; ++c) {
469 | if(prevframe[r][c] && !frame[r][c]) {
470 | setLed(r, c, false);
471 | } else if(!prevframe[r][c] && frame[r][c]) {
472 | setLed(r, c, true);
473 | }
474 | }
475 | }
476 | }
477 |
478 | void addWordToFrame(const int theword[3], boolean frame[16][16]){
479 | for(int i = 0; i < theword[2]; ++i) {
480 | frame[theword[0]][theword[1] + i] = true;
481 | }
482 | }
483 |
484 | void setBrightness(int value) {
485 | for(int i = 0; i < noBoards; ++i) {
486 | lc.setIntensity(i, value);
487 | }
488 | }
489 |
490 | void printMenu() {
491 | Serial.println("");
492 | Serial.println("Menu");
493 | Serial.println("----");
494 | Serial.println(" 1. Set brightness");
495 | Serial.println(" 2. Read brightness");
496 | Serial.println("");
497 | }
498 |
--------------------------------------------------------------------------------
/hardware/gerbers-seeedstudio-2layer-0.8mm/ledboard.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/hardware/gerbers-seeedstudio-2layer-0.8mm/ledboard.zip
--------------------------------------------------------------------------------
/hardware/gerbers-seeedstudio-2layer-0.8mm/main.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/hardware/gerbers-seeedstudio-2layer-0.8mm/main.zip
--------------------------------------------------------------------------------
/hardware/pcb-led-board.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/hardware/pcb-led-board.png
--------------------------------------------------------------------------------
/hardware/pcb-main-board.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/hardware/pcb-main-board.png
--------------------------------------------------------------------------------
/hardware/schematic-led-board.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/hardware/schematic-led-board.png
--------------------------------------------------------------------------------
/hardware/schematic-main-board.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wouterdevinck/wordclock/cb112d31f0224b14c1fc6d0ebf025b549b94e794/hardware/schematic-main-board.png
--------------------------------------------------------------------------------
/hardware/wordclock-mainboard.brd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 | Wordclock MCU board
151 | Revision 1 (november 2013)
152 | Wouter Devinck
153 | 5
154 | 6
155 | 7
156 | 8
157 | 9
158 | 10
159 | 4
160 | 3
161 | A2
162 | A1
163 | A0
164 |
165 |
166 |
167 | <h3>SparkFun Electronics' preferred foot prints</h3>
168 | In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br>
169 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
170 | <br><br>
171 | <b>Licensing:</b> CC v3.0 Share-Alike You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 | >NAME
191 | >VALUE
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 | >NAME
227 | >VALUE
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 | >NAME
262 | >VALUE
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 | >NAME
316 | >VALUE
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 | <b>Crystals and Crystal Resonators</b><p>
328 | <author>Created by librarian@cadsoft.de</author>
329 |
330 |
331 | <b>SMD CRYSTAL</b><p>
332 | Source: www.ecsxtal.com .. Crystal 3.6864MHz CSM_7X_DU.PDF
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 | >NAME
345 | >VALUE
346 |
347 |
348 |
349 |
350 | <b>Resistors, Capacitors, Inductors</b><p>
351 | Based on the previous libraries:
352 | <ul>
353 | <li>r.lbr
354 | <li>cap.lbr
355 | <li>cap-fe.lbr
356 | <li>captant.lbr
357 | <li>polcap.lbr
358 | <li>ipc-smd.lbr
359 | </ul>
360 | All SMD packages are defined according to the IPC specifications and CECC<p>
361 | <author>Created by librarian@cadsoft.de</author><p>
362 | <p>
363 | for Electrolyt Capacitors see also :<p>
364 | www.bccomponents.com <p>
365 | www.panasonic.com<p>
366 | www.kemet.com<p>
367 | http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
368 | <p>
369 | for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
370 |
371 | <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
372 | <tr valign="top">
373 |
374 | <! <td width="10"> </td>
375 | <td width="90%">
376 |
377 | <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
378 | <P>
379 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
380 | <TR>
381 | <TD COLSPAN=8>
382 | <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
383 | </TD>
384 | </TR>
385 | <TR>
386 | <TD ALIGN=CENTER>
387 | <B>
388 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
389 | </B>
390 | </TD>
391 | <TD ALIGN=CENTER>
392 | <B>
393 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
394 | </B>
395 | </TD>
396 | <TD ALIGN=CENTER>
397 | <B>
398 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
399 | </B>
400 | </TD>
401 | <TD ALIGN=CENTER>
402 | <B>
403 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
404 | </B>
405 | </TD>
406 | <TD ALIGN=CENTER>
407 | <B>
408 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
409 | </B>
410 | </TD>
411 | <TD ALIGN=CENTER>
412 | <B>
413 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
414 | </B>
415 | </TD>
416 | <TD ALIGN=CENTER>
417 | <B>
418 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
419 | </B>
420 | </TD>
421 | <TD ALIGN=CENTER>
422 | <B>
423 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
424 | </B>
425 | </TD><TD> </TD>
426 | </TR>
427 | <TR>
428 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
429 | 3005P<BR>
430 | 3006P<BR>
431 | 3006W<BR>
432 | 3006Y<BR>
433 | 3009P<BR>
434 | 3009W<BR>
435 | 3009Y<BR>
436 | 3057J<BR>
437 | 3057L<BR>
438 | 3057P<BR>
439 | 3057Y<BR>
440 | 3059J<BR>
441 | 3059L<BR>
442 | 3059P<BR>
443 | 3059Y<BR></FONT>
444 | </TD>
445 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
446 | -<BR>
447 | 89P<BR>
448 | 89W<BR>
449 | 89X<BR>
450 | 89PH<BR>
451 | 76P<BR>
452 | 89XH<BR>
453 | 78SLT<BR>
454 | 78L ALT<BR>
455 | 56P ALT<BR>
456 | 78P ALT<BR>
457 | T8S<BR>
458 | 78L<BR>
459 | 56P<BR>
460 | 78P<BR></FONT>
461 | </TD>
462 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
463 | -<BR>
464 | T18/784<BR>
465 | 783<BR>
466 | 781<BR>
467 | -<BR>
468 | -<BR>
469 | -<BR>
470 | 2199<BR>
471 | 1697/1897<BR>
472 | 1680/1880<BR>
473 | 2187<BR>
474 | -<BR>
475 | -<BR>
476 | -<BR>
477 | -<BR></FONT>
478 | </TD>
479 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
480 | -<BR>
481 | 8035EKP/CT20/RJ-20P<BR>
482 | -<BR>
483 | RJ-20X<BR>
484 | -<BR>
485 | -<BR>
486 | -<BR>
487 | 1211L<BR>
488 | 8012EKQ ALT<BR>
489 | 8012EKR ALT<BR>
490 | 1211P<BR>
491 | 8012EKJ<BR>
492 | 8012EKL<BR>
493 | 8012EKQ<BR>
494 | 8012EKR<BR></FONT>
495 | </TD>
496 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
497 | -<BR>
498 | 2101P<BR>
499 | 2101W<BR>
500 | 2101Y<BR>
501 | -<BR>
502 | -<BR>
503 | -<BR>
504 | -<BR>
505 | -<BR>
506 | -<BR>
507 | -<BR>
508 | -<BR>
509 | 2102L<BR>
510 | 2102S<BR>
511 | 2102Y<BR></FONT>
512 | </TD>
513 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
514 | -<BR>
515 | EVMCOG<BR>
516 | -<BR>
517 | -<BR>
518 | -<BR>
519 | -<BR>
520 | -<BR>
521 | -<BR>
522 | -<BR>
523 | -<BR>
524 | -<BR>
525 | -<BR>
526 | -<BR>
527 | -<BR>
528 | -<BR></FONT>
529 | </TD>
530 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
531 | -<BR>
532 | 43P<BR>
533 | 43W<BR>
534 | 43Y<BR>
535 | -<BR>
536 | -<BR>
537 | -<BR>
538 | -<BR>
539 | 40L<BR>
540 | 40P<BR>
541 | 40Y<BR>
542 | 70Y-T602<BR>
543 | 70L<BR>
544 | 70P<BR>
545 | 70Y<BR></FONT>
546 | </TD>
547 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
548 | -<BR>
549 | -<BR>
550 | -<BR>
551 | -<BR>
552 | -<BR>
553 | -<BR>
554 | -<BR>
555 | -<BR>
556 | RT/RTR12<BR>
557 | RT/RTR12<BR>
558 | RT/RTR12<BR>
559 | -<BR>
560 | RJ/RJR12<BR>
561 | RJ/RJR12<BR>
562 | RJ/RJR12<BR></FONT>
563 | </TD>
564 | </TR>
565 | <TR>
566 | <TD COLSPAN=8>
567 | </TD>
568 | </TR>
569 | <TR>
570 | <TD COLSPAN=8>
571 | <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
572 | </TD>
573 | </TR>
574 | <TR>
575 | <TD ALIGN=CENTER>
576 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
577 | </TD>
578 | <TD ALIGN=CENTER>
579 | <FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
580 | </TD>
581 | <TD ALIGN=CENTER>
582 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
583 | </TD>
584 | <TD ALIGN=CENTER>
585 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
586 | </TD>
587 | <TD ALIGN=CENTER>
588 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
589 | </TD>
590 | <TD ALIGN=CENTER>
591 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
592 | </TD>
593 | <TD ALIGN=CENTER>
594 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
595 | </TD>
596 | <TD ALIGN=CENTER>
597 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
598 | </TD>
599 | </TR>
600 | <TR>
601 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
602 | 3250L<BR>
603 | 3250P<BR>
604 | 3250W<BR>
605 | 3250X<BR>
606 | 3252P<BR>
607 | 3252W<BR>
608 | 3252X<BR>
609 | 3260P<BR>
610 | 3260W<BR>
611 | 3260X<BR>
612 | 3262P<BR>
613 | 3262W<BR>
614 | 3262X<BR>
615 | 3266P<BR>
616 | 3266W<BR>
617 | 3266X<BR>
618 | 3290H<BR>
619 | 3290P<BR>
620 | 3290W<BR>
621 | 3292P<BR>
622 | 3292W<BR>
623 | 3292X<BR>
624 | 3296P<BR>
625 | 3296W<BR>
626 | 3296X<BR>
627 | 3296Y<BR>
628 | 3296Z<BR>
629 | 3299P<BR>
630 | 3299W<BR>
631 | 3299X<BR>
632 | 3299Y<BR>
633 | 3299Z<BR></FONT>
634 | </TD>
635 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
636 | -<BR>
637 | 66P ALT<BR>
638 | 66W ALT<BR>
639 | 66X ALT<BR>
640 | 66P ALT<BR>
641 | 66W ALT<BR>
642 | 66X ALT<BR>
643 | -<BR>
644 | 64W ALT<BR>
645 | -<BR>
646 | 64P ALT<BR>
647 | 64W ALT<BR>
648 | 64X ALT<BR>
649 | 64P<BR>
650 | 64W<BR>
651 | 64X<BR>
652 | 66X ALT<BR>
653 | 66P ALT<BR>
654 | 66W ALT<BR>
655 | 66P<BR>
656 | 66W<BR>
657 | 66X<BR>
658 | 67P<BR>
659 | 67W<BR>
660 | 67X<BR>
661 | 67Y<BR>
662 | 67Z<BR>
663 | 68P<BR>
664 | 68W<BR>
665 | 68X<BR>
666 | 67Y ALT<BR>
667 | 67Z ALT<BR></FONT>
668 | </TD>
669 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
670 | 5050<BR>
671 | 5091<BR>
672 | 5080<BR>
673 | 5087<BR>
674 | -<BR>
675 | -<BR>
676 | -<BR>
677 | -<BR>
678 | -<BR>
679 | -<BR>
680 | -<BR>
681 | T63YB<BR>
682 | T63XB<BR>
683 | -<BR>
684 | -<BR>
685 | -<BR>
686 | 5887<BR>
687 | 5891<BR>
688 | 5880<BR>
689 | -<BR>
690 | -<BR>
691 | -<BR>
692 | T93Z<BR>
693 | T93YA<BR>
694 | T93XA<BR>
695 | T93YB<BR>
696 | T93XB<BR>
697 | -<BR>
698 | -<BR>
699 | -<BR>
700 | -<BR>
701 | -<BR></FONT>
702 | </TD>
703 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
704 | -<BR>
705 | -<BR>
706 | -<BR>
707 | -<BR>
708 | -<BR>
709 | -<BR>
710 | -<BR>
711 | -<BR>
712 | -<BR>
713 | -<BR>
714 | 8026EKP<BR>
715 | 8026EKW<BR>
716 | 8026EKM<BR>
717 | 8026EKP<BR>
718 | 8026EKB<BR>
719 | 8026EKM<BR>
720 | 1309X<BR>
721 | 1309P<BR>
722 | 1309W<BR>
723 | 8024EKP<BR>
724 | 8024EKW<BR>
725 | 8024EKN<BR>
726 | RJ-9P/CT9P<BR>
727 | RJ-9W<BR>
728 | RJ-9X<BR>
729 | -<BR>
730 | -<BR>
731 | -<BR>
732 | -<BR>
733 | -<BR>
734 | -<BR>
735 | -<BR></FONT>
736 | </TD>
737 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
738 | -<BR>
739 | -<BR>
740 | -<BR>
741 | -<BR>
742 | -<BR>
743 | -<BR>
744 | -<BR>
745 | -<BR>
746 | -<BR>
747 | -<BR>
748 | 3103P<BR>
749 | 3103Y<BR>
750 | 3103Z<BR>
751 | 3103P<BR>
752 | 3103Y<BR>
753 | 3103Z<BR>
754 | -<BR>
755 | -<BR>
756 | -<BR>
757 | -<BR>
758 | -<BR>
759 | -<BR>
760 | 3105P/3106P<BR>
761 | 3105W/3106W<BR>
762 | 3105X/3106X<BR>
763 | 3105Y/3106Y<BR>
764 | 3105Z/3105Z<BR>
765 | 3102P<BR>
766 | 3102W<BR>
767 | 3102X<BR>
768 | 3102Y<BR>
769 | 3102Z<BR></FONT>
770 | </TD>
771 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
772 | -<BR>
773 | -<BR>
774 | -<BR>
775 | -<BR>
776 | -<BR>
777 | -<BR>
778 | -<BR>
779 | -<BR>
780 | -<BR>
781 | -<BR>
782 | -<BR>
783 | -<BR>
784 | -<BR>
785 | -<BR>
786 | -<BR>
787 | -<BR>
788 | -<BR>
789 | -<BR>
790 | -<BR>
791 | -<BR>
792 | -<BR>
793 | -<BR>
794 | EVMCBG<BR>
795 | EVMCCG<BR>
796 | -<BR>
797 | -<BR>
798 | -<BR>
799 | -<BR>
800 | -<BR>
801 | -<BR>
802 | -<BR>
803 | -<BR></FONT>
804 | </TD>
805 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
806 | 55-1-X<BR>
807 | 55-4-X<BR>
808 | 55-3-X<BR>
809 | 55-2-X<BR>
810 | -<BR>
811 | -<BR>
812 | -<BR>
813 | -<BR>
814 | -<BR>
815 | -<BR>
816 | -<BR>
817 | -<BR>
818 | -<BR>
819 | -<BR>
820 | -<BR>
821 | -<BR>
822 | 50-2-X<BR>
823 | 50-4-X<BR>
824 | 50-3-X<BR>
825 | -<BR>
826 | -<BR>
827 | -<BR>
828 | 64P<BR>
829 | 64W<BR>
830 | 64X<BR>
831 | 64Y<BR>
832 | 64Z<BR>
833 | -<BR>
834 | -<BR>
835 | -<BR>
836 | -<BR>
837 | -<BR></FONT>
838 | </TD>
839 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
840 | RT/RTR22<BR>
841 | RT/RTR22<BR>
842 | RT/RTR22<BR>
843 | RT/RTR22<BR>
844 | RJ/RJR22<BR>
845 | RJ/RJR22<BR>
846 | RJ/RJR22<BR>
847 | RT/RTR26<BR>
848 | RT/RTR26<BR>
849 | RT/RTR26<BR>
850 | RJ/RJR26<BR>
851 | RJ/RJR26<BR>
852 | RJ/RJR26<BR>
853 | RJ/RJR26<BR>
854 | RJ/RJR26<BR>
855 | RJ/RJR26<BR>
856 | RT/RTR24<BR>
857 | RT/RTR24<BR>
858 | RT/RTR24<BR>
859 | RJ/RJR24<BR>
860 | RJ/RJR24<BR>
861 | RJ/RJR24<BR>
862 | RJ/RJR24<BR>
863 | RJ/RJR24<BR>
864 | RJ/RJR24<BR>
865 | -<BR>
866 | -<BR>
867 | -<BR>
868 | -<BR>
869 | -<BR>
870 | -<BR>
871 | -<BR></FONT>
872 | </TD>
873 | </TR>
874 | <TR>
875 | <TD COLSPAN=8>
876 | </TD>
877 | </TR>
878 | <TR>
879 | <TD COLSPAN=8>
880 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
881 | </TD>
882 | </TR>
883 | <TR>
884 | <TD ALIGN=CENTER>
885 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
886 | </TD>
887 | <TD ALIGN=CENTER>
888 | <FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
889 | </TD>
890 | <TD ALIGN=CENTER>
891 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
892 | </TD>
893 | <TD ALIGN=CENTER>
894 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
895 | </TD>
896 | <TD ALIGN=CENTER>
897 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
898 | </TD>
899 | <TD ALIGN=CENTER>
900 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
901 | </TD>
902 | <TD ALIGN=CENTER>
903 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
904 | </TD>
905 | <TD ALIGN=CENTER>
906 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
907 | </TD>
908 | </TR>
909 | <TR>
910 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
911 | 3323P<BR>
912 | 3323S<BR>
913 | 3323W<BR>
914 | 3329H<BR>
915 | 3329P<BR>
916 | 3329W<BR>
917 | 3339H<BR>
918 | 3339P<BR>
919 | 3339W<BR>
920 | 3352E<BR>
921 | 3352H<BR>
922 | 3352K<BR>
923 | 3352P<BR>
924 | 3352T<BR>
925 | 3352V<BR>
926 | 3352W<BR>
927 | 3362H<BR>
928 | 3362M<BR>
929 | 3362P<BR>
930 | 3362R<BR>
931 | 3362S<BR>
932 | 3362U<BR>
933 | 3362W<BR>
934 | 3362X<BR>
935 | 3386B<BR>
936 | 3386C<BR>
937 | 3386F<BR>
938 | 3386H<BR>
939 | 3386K<BR>
940 | 3386M<BR>
941 | 3386P<BR>
942 | 3386S<BR>
943 | 3386W<BR>
944 | 3386X<BR></FONT>
945 | </TD>
946 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
947 | 25P<BR>
948 | 25S<BR>
949 | 25RX<BR>
950 | 82P<BR>
951 | 82M<BR>
952 | 82PA<BR>
953 | -<BR>
954 | -<BR>
955 | -<BR>
956 | 91E<BR>
957 | 91X<BR>
958 | 91T<BR>
959 | 91B<BR>
960 | 91A<BR>
961 | 91V<BR>
962 | 91W<BR>
963 | 25W<BR>
964 | 25V<BR>
965 | 25P<BR>
966 | -<BR>
967 | 25S<BR>
968 | 25U<BR>
969 | 25RX<BR>
970 | 25X<BR>
971 | 72XW<BR>
972 | 72XL<BR>
973 | 72PM<BR>
974 | 72RX<BR>
975 | -<BR>
976 | 72PX<BR>
977 | 72P<BR>
978 | 72RXW<BR>
979 | 72RXL<BR>
980 | 72X<BR></FONT>
981 | </TD>
982 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
983 | -<BR>
984 | -<BR>
985 | -<BR>
986 | T7YB<BR>
987 | T7YA<BR>
988 | -<BR>
989 | -<BR>
990 | -<BR>
991 | -<BR>
992 | -<BR>
993 | -<BR>
994 | -<BR>
995 | -<BR>
996 | -<BR>
997 | -<BR>
998 | -<BR>
999 | -<BR>
1000 | TXD<BR>
1001 | TYA<BR>
1002 | TYP<BR>
1003 | -<BR>
1004 | TYD<BR>
1005 | TX<BR>
1006 | -<BR>
1007 | 150SX<BR>
1008 | 100SX<BR>
1009 | 102T<BR>
1010 | 101S<BR>
1011 | 190T<BR>
1012 | 150TX<BR>
1013 | 101<BR>
1014 | -<BR>
1015 | -<BR>
1016 | 101SX<BR></FONT>
1017 | </TD>
1018 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1019 | ET6P<BR>
1020 | ET6S<BR>
1021 | ET6X<BR>
1022 | RJ-6W/8014EMW<BR>
1023 | RJ-6P/8014EMP<BR>
1024 | RJ-6X/8014EMX<BR>
1025 | TM7W<BR>
1026 | TM7P<BR>
1027 | TM7X<BR>
1028 | -<BR>
1029 | 8017SMS<BR>
1030 | -<BR>
1031 | 8017SMB<BR>
1032 | 8017SMA<BR>
1033 | -<BR>
1034 | -<BR>
1035 | CT-6W<BR>
1036 | CT-6H<BR>
1037 | CT-6P<BR>
1038 | CT-6R<BR>
1039 | -<BR>
1040 | CT-6V<BR>
1041 | CT-6X<BR>
1042 | -<BR>
1043 | -<BR>
1044 | 8038EKV<BR>
1045 | -<BR>
1046 | 8038EKX<BR>
1047 | -<BR>
1048 | -<BR>
1049 | 8038EKP<BR>
1050 | 8038EKZ<BR>
1051 | 8038EKW<BR>
1052 | -<BR></FONT>
1053 | </TD>
1054 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1055 | -<BR>
1056 | -<BR>
1057 | -<BR>
1058 | 3321H<BR>
1059 | 3321P<BR>
1060 | 3321N<BR>
1061 | 1102H<BR>
1062 | 1102P<BR>
1063 | 1102T<BR>
1064 | RVA0911V304A<BR>
1065 | -<BR>
1066 | RVA0911H413A<BR>
1067 | RVG0707V100A<BR>
1068 | RVA0607V(H)306A<BR>
1069 | RVA1214H213A<BR>
1070 | -<BR>
1071 | -<BR>
1072 | -<BR>
1073 | -<BR>
1074 | -<BR>
1075 | -<BR>
1076 | -<BR>
1077 | -<BR>
1078 | -<BR>
1079 | 3104B<BR>
1080 | 3104C<BR>
1081 | 3104F<BR>
1082 | 3104H<BR>
1083 | -<BR>
1084 | 3104M<BR>
1085 | 3104P<BR>
1086 | 3104S<BR>
1087 | 3104W<BR>
1088 | 3104X<BR></FONT>
1089 | </TD>
1090 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1091 | EVMQ0G<BR>
1092 | EVMQIG<BR>
1093 | EVMQ3G<BR>
1094 | EVMS0G<BR>
1095 | EVMQ0G<BR>
1096 | EVMG0G<BR>
1097 | -<BR>
1098 | -<BR>
1099 | -<BR>
1100 | EVMK4GA00B<BR>
1101 | EVM30GA00B<BR>
1102 | EVMK0GA00B<BR>
1103 | EVM38GA00B<BR>
1104 | EVMB6<BR>
1105 | EVLQ0<BR>
1106 | -<BR>
1107 | EVMMSG<BR>
1108 | EVMMBG<BR>
1109 | EVMMAG<BR>
1110 | -<BR>
1111 | -<BR>
1112 | EVMMCS<BR>
1113 | -<BR>
1114 | -<BR>
1115 | -<BR>
1116 | -<BR>
1117 | -<BR>
1118 | EVMM1<BR>
1119 | -<BR>
1120 | -<BR>
1121 | EVMM0<BR>
1122 | -<BR>
1123 | -<BR>
1124 | EVMM3<BR></FONT>
1125 | </TD>
1126 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1127 | -<BR>
1128 | -<BR>
1129 | -<BR>
1130 | 62-3-1<BR>
1131 | 62-1-2<BR>
1132 | -<BR>
1133 | -<BR>
1134 | -<BR>
1135 | -<BR>
1136 | -<BR>
1137 | -<BR>
1138 | -<BR>
1139 | -<BR>
1140 | -<BR>
1141 | -<BR>
1142 | -<BR>
1143 | 67R<BR>
1144 | -<BR>
1145 | 67P<BR>
1146 | -<BR>
1147 | -<BR>
1148 | -<BR>
1149 | -<BR>
1150 | 67X<BR>
1151 | 63V<BR>
1152 | 63S<BR>
1153 | 63M<BR>
1154 | -<BR>
1155 | -<BR>
1156 | 63H<BR>
1157 | 63P<BR>
1158 | -<BR>
1159 | -<BR>
1160 | 63X<BR></FONT>
1161 | </TD>
1162 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1163 | -<BR>
1164 | -<BR>
1165 | -<BR>
1166 | RJ/RJR50<BR>
1167 | RJ/RJR50<BR>
1168 | RJ/RJR50<BR>
1169 | -<BR>
1170 | -<BR>
1171 | -<BR>
1172 | -<BR>
1173 | -<BR>
1174 | -<BR>
1175 | -<BR>
1176 | -<BR>
1177 | -<BR>
1178 | -<BR>
1179 | -<BR>
1180 | -<BR>
1181 | -<BR>
1182 | -<BR>
1183 | -<BR>
1184 | -<BR>
1185 | -<BR>
1186 | -<BR>
1187 | -<BR>
1188 | -<BR>
1189 | -<BR>
1190 | -<BR>
1191 | -<BR>
1192 | -<BR>
1193 | -<BR>
1194 | -<BR>
1195 | -<BR>
1196 | -<BR></FONT>
1197 | </TD>
1198 | </TR>
1199 | </TABLE>
1200 | <P> <P>
1201 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
1202 | <TR>
1203 | <TD COLSPAN=7>
1204 | <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
1205 | <P>
1206 | <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
1207 | </TD>
1208 | </TR>
1209 | <TR>
1210 | <TD>
1211 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
1212 | </TD>
1213 | <TD>
1214 | <FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
1215 | </TD>
1216 | <TD>
1217 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
1218 | </TD>
1219 | <TD>
1220 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
1221 | </TD>
1222 | <TD>
1223 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
1224 | </TD>
1225 | <TD>
1226 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
1227 | </TD>
1228 | <TD>
1229 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
1230 | </TD>
1231 | </TR>
1232 | <TR>
1233 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1234 | 3224G<BR>
1235 | 3224J<BR>
1236 | 3224W<BR>
1237 | 3269P<BR>
1238 | 3269W<BR>
1239 | 3269X<BR></FONT>
1240 | </TD>
1241 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1242 | 44G<BR>
1243 | 44J<BR>
1244 | 44W<BR>
1245 | 84P<BR>
1246 | 84W<BR>
1247 | 84X<BR></FONT>
1248 | </TD>
1249 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1250 | -<BR>
1251 | -<BR>
1252 | -<BR>
1253 | ST63Z<BR>
1254 | ST63Y<BR>
1255 | -<BR></FONT>
1256 | </TD>
1257 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1258 | -<BR>
1259 | -<BR>
1260 | -<BR>
1261 | ST5P<BR>
1262 | ST5W<BR>
1263 | ST5X<BR></FONT>
1264 | </TD>
1265 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1266 | -<BR>
1267 | -<BR>
1268 | -<BR>
1269 | -<BR>
1270 | -<BR>
1271 | -<BR></FONT>
1272 | </TD>
1273 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1274 | -<BR>
1275 | -<BR>
1276 | -<BR>
1277 | -<BR>
1278 | -<BR>
1279 | -<BR></FONT>
1280 | </TD>
1281 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1282 | -<BR>
1283 | -<BR>
1284 | -<BR>
1285 | -<BR>
1286 | -<BR>
1287 | -<BR></FONT>
1288 | </TD>
1289 | </TR>
1290 | <TR>
1291 | <TD COLSPAN=7>
1292 | </TD>
1293 | </TR>
1294 | <TR>
1295 | <TD COLSPAN=7>
1296 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
1297 | </TD>
1298 | </TR>
1299 | <TR>
1300 | <TD>
1301 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
1302 | </TD>
1303 | <TD>
1304 | <FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
1305 | </TD>
1306 | <TD>
1307 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
1308 | </TD>
1309 | <TD>
1310 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
1311 | </TD>
1312 | <TD>
1313 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
1314 | </TD>
1315 | <TD>
1316 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
1317 | </TD>
1318 | <TD>
1319 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
1320 | </TD>
1321 | </TR>
1322 | <TR>
1323 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1324 | 3314G<BR>
1325 | 3314J<BR>
1326 | 3364A/B<BR>
1327 | 3364C/D<BR>
1328 | 3364W/X<BR>
1329 | 3313G<BR>
1330 | 3313J<BR></FONT>
1331 | </TD>
1332 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1333 | 23B<BR>
1334 | 23A<BR>
1335 | 21X<BR>
1336 | 21W<BR>
1337 | -<BR>
1338 | 22B<BR>
1339 | 22A<BR></FONT>
1340 | </TD>
1341 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1342 | ST5YL/ST53YL<BR>
1343 | ST5YJ/5T53YJ<BR>
1344 | ST-23A<BR>
1345 | ST-22B<BR>
1346 | ST-22<BR>
1347 | -<BR>
1348 | -<BR></FONT>
1349 | </TD>
1350 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1351 | ST-4B<BR>
1352 | ST-4A<BR>
1353 | -<BR>
1354 | -<BR>
1355 | -<BR>
1356 | ST-3B<BR>
1357 | ST-3A<BR></FONT>
1358 | </TD>
1359 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1360 | -<BR>
1361 | EVM-6YS<BR>
1362 | EVM-1E<BR>
1363 | EVM-1G<BR>
1364 | EVM-1D<BR>
1365 | -<BR>
1366 | -<BR></FONT>
1367 | </TD>
1368 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1369 | G4B<BR>
1370 | G4A<BR>
1371 | TR04-3S1<BR>
1372 | TRG04-2S1<BR>
1373 | -<BR>
1374 | -<BR>
1375 | -<BR></FONT>
1376 | </TD>
1377 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
1378 | -<BR>
1379 | -<BR>
1380 | DVR-43A<BR>
1381 | CVR-42C<BR>
1382 | CVR-42A/C<BR>
1383 | -<BR>
1384 | -<BR></FONT>
1385 | </TD>
1386 | </TR>
1387 | </TABLE>
1388 | <P>
1389 | <FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
1390 | <P>
1391 |
1392 |
1393 | <P>
1394 | </td>
1395 | </tr>
1396 | </table>
1397 |
1398 |
1399 | <b>CAPACITOR</b><p>
1400 |
1401 |
1402 |
1403 |
1404 |
1405 |
1406 |
1407 |
1408 | >NAME
1409 | >VALUE
1410 |
1411 |
1412 |
1413 |
1414 |
1415 | <b>RESISTOR</b>
1416 |
1417 |
1418 |
1419 |
1420 |
1421 |
1422 |
1423 |
1424 | >NAME
1425 | >VALUE
1426 |
1427 |
1428 |
1429 |
1430 |
1431 | <b>Panasonic Aluminium Electrolytic Capacitor VS-Serie Package D</b>
1432 |
1433 |
1434 |
1435 |
1436 |
1437 |
1438 |
1439 |
1440 |
1441 |
1442 |
1443 |
1444 |
1445 |
1446 |
1447 |
1448 |
1449 |
1450 |
1451 |
1452 | >NAME
1453 | >VALUE
1454 |
1455 |
1456 |
1457 |
1458 |
1459 |
1460 |
1461 |
1462 |
1463 |
1464 |
1465 |
1466 |
1467 |
1468 |
1469 |
1470 |
1471 |
1472 |
1473 |
1474 |
1475 |
1476 |
1477 |
1478 | >name
1479 |
1480 |
1481 |
1482 |
1483 | <h3>SparkFun Electronics' preferred foot prints</h3>
1484 | In this library you'll find drivers, regulators, and amplifiers.<br><br>
1485 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
1486 | <br><br>
1487 | <b>Licensing:</b> CC v3.0 Share-Alike You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
1488 |
1489 |
1490 | <b>SOT-223</b>
1491 |
1492 |
1493 |
1494 |
1495 |
1496 |
1497 |
1498 |
1499 | >NAME
1500 | >VALUE
1501 |
1502 |
1503 |
1504 |
1505 |
1506 |
1507 |
1508 |
1509 |
1510 |
1511 |
1512 |
1513 | <b>Diodes</b><p>
1514 | Based on the following sources:
1515 | <ul>
1516 | <li>Motorola : www.onsemi.com
1517 | <li>Fairchild : www.fairchildsemi.com
1518 | <li>Philips : www.semiconductors.com
1519 | <li>Vishay : www.vishay.de
1520 | </ul>
1521 | <author>Created by librarian@cadsoft.de</author>
1522 |
1523 |
1524 | <b>SURFACE MOUNT GENERAL RECTIFIER</b> JEDEC DO-214AC molded platic body<p>
1525 | Method 2026<br>
1526 | Source: http://www.kingtronics.com/SMD_M7/M7_SMD_4007.pdf
1527 |
1528 |
1529 |
1530 |
1531 |
1532 |
1533 |
1534 |
1535 | >NAME
1536 | >VALUE
1537 |
1538 |
1539 |
1540 |
1541 |
1542 |
1543 |
1544 |
1545 | <h3>SparkFun Electronics' preferred foot prints</h3>
1546 | In this library you'll find anything that moves- switches, relays, buttons, potentiometers. Also, anything that goes on a board but isn't electrical in nature- screws, standoffs, etc.<br><br>
1547 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
1548 | <br><br>
1549 | <b>Licensing:</b> CC v3.0 Share-Alike You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
1550 |
1551 |
1552 | <b>BUZZER</b>
1553 |
1554 |
1555 |
1556 |
1557 | >NAME
1558 | >VALUE
1559 |
1560 |
1561 |
1562 |
1563 | <b>Photocells</b><p>
1564 | Manufakturer: PerkinElmer Optoelektronics<br>
1565 | www.perkinelmer.com/opto
1566 |
1567 |
1568 | <b>Sensor</b> Robust Light Sensing Applications<p>
1569 | Source: http://optoelectronics.perkinelmer.com/content/Datasheets/DTS_PhotocellsA1050.pdf
1570 |
1571 |
1572 |
1573 |
1574 |
1575 |
1576 |
1577 |
1578 |
1579 |
1580 |
1581 |
1582 |
1583 |
1584 |
1585 |
1586 |
1587 |
1588 |
1589 |
1590 |
1591 |
1592 |
1593 |
1594 |
1595 | >NAME
1596 | >VALUE
1597 |
1598 |
1599 |
1600 |
1601 |
1602 |
1603 | <b>SMALL OUTLINE INTEGRATED CIRCUIT</b><p>
1604 | wide body 7.5 mm/JEDEC MS-013AA
1605 |
1606 |
1607 |
1608 |
1609 |
1610 |
1611 |
1612 |
1613 |
1614 |
1615 |
1616 |
1617 |
1618 |
1619 |
1620 |
1621 |
1622 |
1623 |
1624 |
1625 |
1626 |
1627 |
1628 |
1629 |
1630 |
1631 |
1632 | >NAME
1633 | >VALUE
1634 |
1635 |
1636 |
1637 |
1638 |
1639 |
1640 |
1641 |
1642 |
1643 |
1644 |
1645 |
1646 |
1647 |
1648 |
1649 |
1650 |
1651 |
1652 | <b>CHIPLED</b><p>
1653 | Source: http://www.osram.convergy.de/ ... LG_LY Q971.pdf
1654 |
1655 |
1656 |
1657 |
1658 |
1659 |
1660 |
1661 | >NAME
1662 | >VALUE
1663 |
1664 |
1665 |
1666 |
1667 |
1668 |
1669 |
1670 |
1671 |
1672 |
1673 |
1674 |
1675 |
1676 |
1677 |
1678 | <h3>SparkFun Electronics' preferred foot prints</h3>
1679 | In this library you'll find all manner of digital ICs- microcontrollers, memory chips, logic chips, FPGAs, etc.<br><br>
1680 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
1681 | <br><br>
1682 | <b>Licensing:</b> CC v3.0 Share-Alike You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
1683 |
1684 |
1685 | <B>Thin Plasic Quad Flat Package</B> Grid 0.8 mm
1686 |
1687 |
1688 |
1689 |
1690 |
1691 |
1692 |
1693 |
1694 |
1695 |
1696 |
1697 |
1698 |
1699 |
1700 |
1701 |
1702 |
1703 |
1704 |
1705 |
1706 |
1707 |
1708 |
1709 |
1710 |
1711 |
1712 |
1713 |
1714 |
1715 |
1716 |
1717 |
1718 |
1719 |
1720 |
1721 |
1722 |
1723 |
1724 | >NAME
1725 | >VALUE
1726 |
1727 |
1728 |
1729 |
1730 |
1731 |
1732 |
1733 |
1734 |
1735 |
1736 |
1737 |
1738 |
1739 |
1740 |
1741 |
1742 |
1743 |
1744 |
1745 |
1746 |
1747 |
1748 |
1749 |
1750 |
1751 |
1752 |
1753 |
1754 |
1755 |
1756 |
1757 |
1758 |
1759 |
1760 |
1761 |
1762 |
1763 |
1764 |
1765 |
1766 |
1767 |
1768 |
1769 |
1770 |
1771 |
1772 |
1773 |
1774 |
1775 |
1776 |
1777 |
1778 |
1779 |
1780 |
1781 |
1782 |
1783 |
1784 |
1785 |
1786 |
1787 |
1788 |
1789 |
1790 |
1791 |
1792 |
1793 |
1794 |
1795 |
1796 |
1797 |
1798 | <b>EAGLE Design Rules</b>
1799 | <p>
1800 | Die Standard-Design-Rules sind so gewählt, dass sie für
1801 | die meisten Anwendungen passen. Sollte ihre Platine
1802 | besondere Anforderungen haben, treffen Sie die erforderlichen
1803 | Einstellungen hier und speichern die Design Rules unter
1804 | einem neuen Namen ab.
1805 | <b>EAGLE Design Rules</b>
1806 | <p>
1807 | The default Design Rules have been set to cover
1808 | a wide range of applications. Your particular design
1809 | may have different requirements, so please make the
1810 | necessary adjustments and save your customized
1811 | design rules under a new name.
1812 | <b>Seeed Studio EAGLE Design Rules</b>
1813 |
1814 |
1815 |
1816 |
1817 |
1818 |
1819 |
1820 |
1821 |
1822 |
1823 |
1824 |
1825 |
1826 |
1827 |
1828 |
1829 |
1830 |
1831 |
1832 |
1833 |
1834 |
1835 |
1836 |
1837 |
1838 |
1839 |
1840 |
1841 |
1842 |
1843 |
1844 |
1845 |
1846 |
1847 |
1848 |
1849 |
1850 |
1851 |
1852 |
1853 |
1854 |
1855 |
1856 |
1857 |
1858 |
1859 |
1860 |
1861 |
1862 |
1863 |
1864 |
1865 |
1866 |
1867 |
1868 |
1869 |
1870 |
1871 |
1872 |
1873 |
1874 |
1875 |
1876 |
1877 |
1878 |
1879 |
1880 |
1881 |
1882 |
1883 |
1884 |
1885 |
1886 |
1887 |
1888 |
1889 |
1890 |
1891 |
1892 |
1893 |
1894 |
1895 |
1896 |
1897 |
1898 |
1899 |
1900 |
1901 |
1902 |
1903 |
1904 |
1905 |
1906 |
1907 |
1908 |
1909 |
1910 |
1911 |
1912 |
1913 |
1914 |
1915 |
1916 |
1917 |
1918 |
1919 |
1920 |
1921 |
1922 |
1923 |
1924 |
1925 |
1926 |
1927 |
1928 |
1929 |
1930 |
1931 |
1932 |
1933 |
1934 |
1935 |
1936 |
1937 |
1938 |
1939 |
1940 |
1941 |
1942 |
1943 |
1944 |
1945 |
1946 |
1947 |
1948 |
1949 |
1950 |
1951 |
1952 |
1953 |
1954 |
1955 |
1956 |
1957 |
1958 |
1959 |
1960 |
1961 |
1962 |
1963 |
1964 |
1965 |
1966 |
1967 |
1968 |
1969 |
1970 |
1971 |
1972 |
1973 |
1974 |
1975 |
1976 |
1977 |
1978 |
1979 |
1980 |
1981 |
1982 |
1983 |
1984 |
1985 |
1986 |
1987 |
1988 |
1989 |
1990 |
1991 |
1992 |
1993 |
1994 |
1995 |
1996 |
1997 |
1998 |
1999 |
2000 |
2001 |
2002 |
2003 |
2004 |
2005 |
2006 |
2007 |
2008 |
2009 |
2010 |
2011 |
2012 |
2013 |
2014 |
2015 |
2016 |
2017 |
2018 |
2019 |
2020 |
2021 |
2022 |
2023 |
2024 |
2025 |
2026 |
2027 |
2028 |
2029 |
2030 |
2031 |
2032 |
2033 |
2034 |
2035 |
2036 |
2037 |
2038 |
2039 |
2040 |
2041 |
2042 |
2043 |
2044 |
2045 |
2046 |
2047 |
2048 |
2049 |
2050 |
2051 |
2052 |
2053 |
2054 |
2055 |
2056 |
2057 |
2058 |
2059 |
2060 |
2061 |
2062 |
2063 |
2064 |
2065 |
2066 |
2067 |
2068 |
2069 |
2070 |
2071 |
2072 |
2073 |
2074 |
2075 |
2076 |
2077 |
2078 |
2079 |
2080 |
2081 |
2082 |
2083 |
2084 |
2085 |
2086 |
2087 |
2088 |
2089 |
2090 |
2091 |
2092 |
2093 |
2094 |
2095 |
2096 |
2097 |
2098 |
2099 |
2100 |
2101 |
2102 |
2103 |
2104 |
2105 |
2106 |
2107 |
2108 |
2109 |
2110 |
2111 |
2112 |
2113 |
2114 |
2115 |
2116 |
2117 |
2118 |
2119 |
2120 |
2121 |
2122 |
2123 |
2124 |
2125 |
2126 |
2127 |
2128 |
2129 |
2130 |
2131 |
2132 |
2133 |
2134 |
2135 |
2136 |
2137 |
2138 |
2139 |
2140 |
2141 |
2142 |
2143 |
2144 |
2145 |
2146 |
2147 |
2148 |
2149 |
2150 |
2151 |
2152 |
2153 |
2154 |
2155 |
2156 |
2157 |
2158 |
2159 |
2160 |
2161 |
2162 |
2163 |
2164 |
2165 |
2166 |
2167 |
2168 |
2169 |
2170 |
2171 |
2172 |
2173 |
2174 |
2175 |
2176 |
2177 |
2178 |
2179 |
2180 |
2181 |
2182 |
2183 |
2184 |
2185 |
2186 |
2187 |
2188 |
2189 |
2190 |
2191 |
2192 |
2193 |
2194 |
2195 |
2196 |
2197 |
2198 |
2199 |
2200 |
2201 |
2202 |
2203 |
2204 |
2205 |
2206 |
2207 |
2208 |
2209 |
2210 |
2211 |
2212 |
2213 |
2214 |
2215 |
2216 |
2217 |
2218 |
2219 |
2220 |
2221 |
2222 |
2223 |
2224 |
2225 |
2226 |
2227 |
2228 |
2229 |
2230 |
2231 |
2232 |
2233 |
2234 |
2235 |
2236 |
2237 |
2238 |
2239 |
2240 |
2241 |
2242 |
2243 |
2244 |
2245 |
2246 |
2247 |
2248 |
2249 |
2250 |
2251 |
2252 |
2253 |
2254 |
2255 |
2256 |
2257 |
2258 |
2259 |
2260 |
2261 |
2262 |
2263 |
2264 |
2265 |
2266 |
2267 |
2268 |
2269 |
2270 |
2271 |
2272 |
2273 |
2274 |
2275 |
2276 |
2277 |
2278 |
2279 |
2280 |
2281 |
2282 |
2283 |
2284 |
2285 |
2286 |
2287 |
2288 |
2289 |
2290 |
2291 |
2292 |
2293 |
2294 |
2295 |
2296 |
2297 |
2298 |
2299 |
2300 |
2301 |
2302 |
2303 |
2304 |
2305 |
2306 |
2307 |
2308 |
2309 |
2310 |
2311 |
2312 |
2313 |
2314 |
2315 |
2316 |
2317 |
2318 |
2319 |
2320 |
2321 |
2322 |
2323 |
2324 |
2325 |
2326 |
2327 |
2328 |
2329 |
2330 |
2331 |
2332 |
2333 |
2334 |
2335 |
2336 |
2337 |
2338 |
2339 |
2340 |
2341 |
2342 |
2343 |
2344 |
2345 |
2346 |
2347 |
2348 |
2349 |
2350 |
2351 |
2352 |
2353 |
2354 |
2355 |
2356 |
2357 |
2358 |
2359 |
2360 |
2361 |
2362 |
2363 |
2364 |
2365 |
2366 |
2367 |
2368 |
2369 |
2370 |
2371 |
2372 |
2373 |
2374 |
2375 |
2376 |
2377 |
2378 |
2379 |
2380 |
2381 |
2382 |
2383 |
2384 |
2385 |
2386 |
2387 |
2388 |
2389 |
2390 |
2391 |
2392 |
2393 |
2394 |
2395 |
2396 |
2397 |
2398 |
2399 |
2400 |
2401 |
2402 |
2403 |
2404 |
2405 |
2406 |
2407 |
2408 |
2409 |
2410 |
2411 |
2412 |
2413 |
2414 |
2415 |
2416 |
2417 |
2418 |
2419 |
2420 |
2421 |
2422 |
2423 |
2424 |
2425 |
2426 |
2427 |
2428 |
2429 |
2430 |
2431 |
2432 |
2433 |
2434 |
2435 |
2436 |
2437 |
2438 |
2439 |
2440 |
2441 |
2442 |
2443 |
2444 |
2445 |
2446 |
2447 |
2448 |
2449 |
2450 |
2451 |
2452 |
2453 |
2454 |
2455 |
2456 |
2457 |
2458 |
2459 |
2460 |
2461 |
2462 |
2463 |
2464 |
2465 |
2466 |
2467 |
2468 |
2469 |
2470 |
2471 |
2472 |
2473 |
2474 |
2475 |
2476 |
2477 |
2478 |
2479 |
2480 |
2481 |
2482 |
2483 |
2484 |
2485 |
2486 |
2487 |
2488 |
2489 |
2490 |
2491 |
2492 |
2493 |
2494 |
2495 |
2496 |
2497 |
2498 |
2499 |
2500 |
2501 |
2502 |
2503 |
2504 |
2505 |
2506 |
2507 |
2508 |
2509 |
2510 |
2511 |
2512 |
2513 |
2514 |
2515 |
2516 |
2517 |
2518 |
2519 |
2520 |
2521 |
2522 |
2523 |
2524 |
2525 |
2526 |
2527 |
2528 |
2529 |
2530 |
2531 |
2532 |
2533 |
2534 |
2535 |
2536 |
2537 |
2538 |
2539 |
2540 |
2541 |
2542 |
2543 |
2544 |
2545 |
2546 |
2547 |
2548 |
2549 |
2550 |
2551 |
2552 |
2553 |
2554 |
2555 |
2556 |
2557 |
2558 |
2559 |
2560 |
2561 |
2562 |
2563 |
2564 |
2565 |
2566 |
2567 |
2568 |
2569 |
2570 |
2571 |
2572 |
2573 |
2574 |
2575 |
2576 |
2577 |
2578 |
2579 |
2580 |
2581 |
2582 |
2583 |
2584 |
2585 |
2586 |
2587 |
2588 |
2589 |
2590 |
2591 |
2592 |
2593 |
2594 |
2595 |
2596 |
2597 |
2598 |
2599 |
2600 |
2601 |
2602 |
2603 |
2604 |
2605 |
2606 |
2607 |
2608 |
2609 |
2610 |
2611 |
2612 |
2613 |
2614 |
2615 |
2616 |
2617 |
2618 |
2619 |
2620 |
2621 |
2622 |
2623 |
2624 |
2625 |
2626 |
2627 |
2628 |
2629 |
2630 |
2631 |
2632 |
2633 |
2634 |
2635 |
2636 |
2637 |
2638 |
2639 |
2640 |
2641 |
2642 |
2643 |
2644 |
2645 |
2646 |
2647 |
2648 |
2649 |
2650 |
2651 |
2652 |
2653 |
2654 |
2655 |
2656 |
2657 |
2658 |
2659 |
2660 |
2661 |
2662 |
2663 |
2664 |
2665 |
2666 |
2667 |
2668 |
2669 |
2670 |
2671 |
2672 |
2673 |
2674 |
2675 |
2676 |
2677 |
2678 |
2679 |
2680 |
2681 |
2682 |
2683 |
2684 |
2685 |
2686 |
2687 |
2688 |
2689 |
2690 |
2691 |
2692 |
2693 |
2694 | Since Version 6.2.2 text objects can contain more than one line,
2695 | which will not be processed correctly with this version.
2696 |
2697 |
2698 |
2699 |
--------------------------------------------------------------------------------