├── pcb ├── img │ ├── pcb.jpg │ └── pcb_back.jpg ├── ardulight.skp ├── schematic.pdf ├── ardulight-cream.pdf ├── ardulight-assembly.pdf ├── ardulights-bom-w⁄o-price.ods └── ardulight.brd ├── 98-ardulight.rules ├── README.md └── firmware └── firmware.pde /pcb/img/pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diy-electronics/Ardulight/HEAD/pcb/img/pcb.jpg -------------------------------------------------------------------------------- /pcb/ardulight.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diy-electronics/Ardulight/HEAD/pcb/ardulight.skp -------------------------------------------------------------------------------- /pcb/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diy-electronics/Ardulight/HEAD/pcb/schematic.pdf -------------------------------------------------------------------------------- /pcb/img/pcb_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diy-electronics/Ardulight/HEAD/pcb/img/pcb_back.jpg -------------------------------------------------------------------------------- /pcb/ardulight-cream.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diy-electronics/Ardulight/HEAD/pcb/ardulight-cream.pdf -------------------------------------------------------------------------------- /pcb/ardulight-assembly.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diy-electronics/Ardulight/HEAD/pcb/ardulight-assembly.pdf -------------------------------------------------------------------------------- /pcb/ardulights-bom-w⁄o-price.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diy-electronics/Ardulight/HEAD/pcb/ardulights-bom-w⁄o-price.ods -------------------------------------------------------------------------------- /98-ardulight.rules: -------------------------------------------------------------------------------- 1 | # /etc/udev/rules.d/98-ardulight.rules 2 | # 3 | # Fixes the name for ardulight 4 | # 5 | # Created on: 06.01.15 6 | # 7 | # Usage: 8 | # 9 | # $ sudo cp lightpack/93-lightpack.rules /etc/udev/rules.d/ 10 | # $ sudo restart udev 11 | # 12 | # Please write an issue on: [github](https://github.com/diy-electronics/Ardulight/issues) if you have problems 13 | 14 | KERNEL=="ttyACM*", ATTRS{idVendor}=="2341", ATTRS{idProduct}=="8036", SYMLINK+="ttyARDULIGHT", ACTION=="add", RUN+="/usr/bin/logger 'ardulight plugged in", GROUP="users", MODE="0666" 15 | 16 | 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Ardulight 2 | ========= 3 | 4 | Ardu(ino)(Ambi)light: An arduino based ambilight controller for WS2801 based digital rgb led pixels. 5 | 6 | Example-Video:
7 | Example 10 | 11 | Images 12 | ------ 13 | 14 |     15 | 16 | Assembly 17 | -------- 18 | 19 | Assembly instructions including a BOM (bill of materials) can be found [here](../master/pcb).
20 | The pcb has to be soldered by hot air or by reflow due to the qfp package of the atmega32u4. 21 | 22 | Wiring 23 | ------ 24 | 25 | For a detailed wiring guide look [here](https://learn.adafruit.com/adalight-diy-ambient-tv-lighting/wiring-1).
26 | The LED-Strip has to be powered from an external power source, using e.g. a connector like [this](https://www.adafruit.com/products/368).
27 | You only have to connect GND, CLK (SCK) and DAT (MOSI). 28 | 29 | Firmware 30 | -------- 31 | 32 | The firmware can be found [here](../master/firmware/firmware.pde)
33 | You can flash this firmware using an isp-programmer.
34 | Alternatively you can first flash the arduino leonardo bootloader with an isp-programmer and then flash the firmware directly over usb since the ambilight controller is compatible with the arduino leonardo. 35 | 36 | Software 37 | -------- 38 | 39 | The ambilight controller works with [Prismatik from woodenshark](https://github.com/woodenshark/Lightpack/releases/latest) (Alternative download [here](http://lightpack.tv/downloads)). 40 | 41 | To fix the systems device name and permissions for Ardulight on linux systems, you can add [the udev rule](98-ardulight.rules) to `/etc/udev/rules.d/`. The device name is then `/dev/ttyARDULIGHT` and is owned by `users (mode 0666)`. 42 | 43 | License 44 | ------- 45 | 46 | Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
47 | The firmware is licensed under a GNU Lesser General Public, see .
48 | -------------------------------------------------------------------------------- /firmware/firmware.pde: -------------------------------------------------------------------------------- 1 | // This file is part of Adalight. 2 | 3 | // Adalight is free software: you can redistribute it and/or modify 4 | // it under the terms of the GNU Lesser General Public License as 5 | // published by the Free Software Foundation, either version 3 of 6 | // the License, or (at your option) any later version. 7 | 8 | // Adalight is distributed in the hope that it will be useful, 9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | // GNU Lesser General Public License for more details. 12 | 13 | // You should have received a copy of the GNU Lesser General Public 14 | // License along with Adalight. If not, see 15 | // . 16 | // -------------------------------------------------------------------- 17 | 18 | #include 19 | 20 | // A 'magic word' (along with LED count & checksum) precedes each block 21 | // of LED data; this assists the microcontroller in syncing up with the 22 | // host-side software and properly issuing the latch (host I/O is 23 | // likely buffered, making usleep() unreliable for latch). You may see 24 | // an initial glitchy frame or two until the two come into alignment. 25 | // The magic word can be whatever sequence you like, but each character 26 | // should be unique, and frequent pixel values like 0 and 255 are 27 | // avoided -- fewer false positives. The host software will need to 28 | // generate a compatible header: immediately following the magic word 29 | // are three bytes: a 16-bit count of the number of LEDs (high byte 30 | // first) followed by a simple checksum value (high byte XOR low byte 31 | // XOR 0x55). LED data follows, 3 bytes per LED, in order R, G, B, 32 | // where 0 = off and 255 = max brightness. 33 | 34 | static const uint8_t magic[] = {'A','d','a'}; 35 | #define MAGICSIZE sizeof(magic) 36 | #define HEADERSIZE (MAGICSIZE + 3) 37 | 38 | #define MODE_HEADER 0 39 | #define MODE_HOLD 1 40 | #define MODE_DATA 2 41 | 42 | // If no serial data is received for a while, the LEDs are shut off 43 | // automatically. This avoids the annoying "stuck pixel" look when 44 | // quitting LED display programs on the host computer. 45 | static const unsigned long serialTimeout = 15000; // 15 seconds 46 | 47 | void setup() 48 | { 49 | // Dirty trick: the circular buffer for serial data is 256 bytes, 50 | // and the "in" and "out" indices are unsigned 8-bit types -- this 51 | // much simplifies the cases where in/out need to "wrap around" the 52 | // beginning/end of the buffer. Otherwise there'd be a ton of bit- 53 | // masking and/or conditional code every time one of these indices 54 | // needs to change, slowing things down tremendously. 55 | uint8_t 56 | buffer[256], 57 | indexIn = 0, 58 | indexOut = 0, 59 | mode = MODE_HEADER, 60 | hi, lo, chk, i, spiFlag; 61 | int16_t 62 | bytesBuffered = 0, 63 | hold = 0, 64 | c; 65 | int32_t 66 | bytesRemaining; 67 | unsigned long 68 | startTime, 69 | lastByteTime, 70 | lastAckTime, 71 | t; 72 | 73 | Serial.begin(115200); // Teensy/32u4 disregards baud rate; is OK! 74 | 75 | SPI.begin(); 76 | SPI.setBitOrder(MSBFIRST); 77 | SPI.setDataMode(SPI_MODE0); 78 | SPI.setClockDivider(SPI_CLOCK_DIV16); // 1 MHz max, else flicker 79 | 80 | // Issue test pattern to LEDs on startup. This helps verify that 81 | // wiring between the Arduino and LEDs is correct. Not knowing the 82 | // actual number of LEDs connected, this sets all of them (well, up 83 | // to the first 25,000, so as not to be TOO time consuming) to red, 84 | // green, blue, then off. Once you're confident everything is working 85 | // end-to-end, it's OK to comment this out and reprogram the Arduino. 86 | uint8_t testcolor[] = { 0, 0, 0, 255, 0, 0 }; 87 | for(char n=3; n>=0; n--) { 88 | for(c=0; c<25000; c++) { 89 | for(i=0; i<3; i++) { 90 | for(SPDR = testcolor[n + i]; !(SPSR & _BV(SPIF)); ); 91 | } 92 | } 93 | delay(1); // One millisecond pause = latch 94 | } 95 | 96 | Serial.print("Ada\n"); // Send ACK string to host 97 | 98 | startTime = micros(); 99 | lastByteTime = lastAckTime = millis(); 100 | 101 | // loop() is avoided as even that small bit of function overhead 102 | // has a measurable impact on this code's overall throughput. 103 | 104 | for(;;) { 105 | 106 | // Implementation is a simple finite-state machine. 107 | // Regardless of mode, check for serial input each time: 108 | t = millis(); 109 | if((bytesBuffered < 256) && ((c = Serial.read()) >= 0)) { 110 | buffer[indexIn++] = c; 111 | bytesBuffered++; 112 | lastByteTime = lastAckTime = t; // Reset timeout counters 113 | } else { 114 | // No data received. If this persists, send an ACK packet 115 | // to host once every second to alert it to our presence. 116 | if((t - lastAckTime) > 1000) { 117 | Serial.print("Ada\n"); // Send ACK string to host 118 | lastAckTime = t; // Reset counter 119 | } 120 | // If no data received for an extended time, turn off all LEDs. 121 | if((t - lastByteTime) > serialTimeout) { 122 | for(c=0; c<32767; c++) { 123 | for(SPDR=0; !(SPSR & _BV(SPIF)); ); 124 | } 125 | delay(1); // One millisecond pause = latch 126 | lastByteTime = t; // Reset counter 127 | } 128 | } 129 | 130 | switch(mode) { 131 | 132 | case MODE_HEADER: 133 | 134 | // In header-seeking mode. Is there enough data to check? 135 | if(bytesBuffered >= HEADERSIZE) { 136 | // Indeed. Check for a 'magic word' match. 137 | for(i=0; (i 0) and multiply by 3 for R,G,B. 146 | bytesRemaining = 3L * (256L * (long)hi + (long)lo + 1L); 147 | bytesBuffered -= 3; 148 | spiFlag = 0; // No data out yet 149 | mode = MODE_HOLD; // Proceed to latch wait mode 150 | } else { 151 | // Checksum didn't match; search resumes after magic word. 152 | indexOut -= 3; // Rewind 153 | } 154 | } // else no header match. Resume at first mismatched byte. 155 | bytesBuffered -= i; 156 | } 157 | break; 158 | 159 | case MODE_HOLD: 160 | 161 | // Ostensibly "waiting for the latch from the prior frame 162 | // to complete" mode, but may also revert to this mode when 163 | // underrun prevention necessitates a delay. 164 | 165 | if((micros() - startTime) < hold) break; // Still holding; keep buffering 166 | 167 | // Latch/delay complete. Advance to data-issuing mode... 168 | mode = MODE_DATA; // ...and fall through (no break): 169 | 170 | case MODE_DATA: 171 | 172 | while(spiFlag && !(SPSR & _BV(SPIF))); // Wait for prior byte 173 | if(bytesRemaining > 0) { 174 | if(bytesBuffered > 0) { 175 | SPDR = buffer[indexOut++]; // Issue next byte 176 | bytesBuffered--; 177 | bytesRemaining--; 178 | spiFlag = 1; 179 | } 180 | // If serial buffer is threatening to underrun, start 181 | // introducing progressively longer pauses to allow more 182 | // data to arrive (up to a point). 183 | if((bytesBuffered < 32) && (bytesRemaining > bytesBuffered)) { 184 | startTime = micros(); 185 | hold = 100 + (32 - bytesBuffered) * 10; 186 | mode = MODE_HOLD; 187 | } 188 | } else { 189 | // End of data -- issue latch: 190 | startTime = micros(); 191 | hold = 1000; // Latch duration = 1000 uS 192 | mode = MODE_HEADER; // Begin next header search 193 | } 194 | } // end switch 195 | } // end for(;;) 196 | } 197 | 198 | void loop() 199 | { 200 | // Not used. See note in setup() function. 201 | } 202 | -------------------------------------------------------------------------------- /pcb/ardulight.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 | ISP 151 | Ardulight - Rev 1.0 152 | diy-electronics.net 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | ISP 166 | 167 | 168 | 169 | <h3>SparkFun Electronics' preferred foot prints</h3> 170 | In this library you'll find all manner of digital ICs- microcontrollers, memory chips, logic chips, FPGAs, etc.<br><br> 171 | 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. 172 | <br><br> 173 | <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. 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 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 | 227 | 228 | 229 | 230 | 231 | >NAME 232 | >VALUE 233 | 234 | 235 | 236 | 237 | <h3>SparkFun Electronics' preferred foot prints</h3> 238 | In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br> 239 | 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. 240 | <br><br> 241 | <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. 242 | 243 | 244 | <b>USB Series Mini-B Surface Mounted</b> 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 | <b>Resistors, Capacitors, Inductors</b><p> 270 | Based on the previous libraries: 271 | <ul> 272 | <li>r.lbr 273 | <li>cap.lbr 274 | <li>cap-fe.lbr 275 | <li>captant.lbr 276 | <li>polcap.lbr 277 | <li>ipc-smd.lbr 278 | </ul> 279 | All SMD packages are defined according to the IPC specifications and CECC<p> 280 | <author>Created by librarian@cadsoft.de</author><p> 281 | <p> 282 | for Electrolyt Capacitors see also :<p> 283 | www.bccomponents.com <p> 284 | www.panasonic.com<p> 285 | www.kemet.com<p> 286 | http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b> 287 | <p> 288 | for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p> 289 | 290 | <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0> 291 | <tr valign="top"> 292 | 293 | <! <td width="10">&nbsp;</td> 294 | <td width="90%"> 295 | 296 | <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b> 297 | <P> 298 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2> 299 | <TR> 300 | <TD COLSPAN=8> 301 | <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT> 302 | </TD> 303 | </TR> 304 | <TR> 305 | <TD ALIGN=CENTER> 306 | <B> 307 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT> 308 | </B> 309 | </TD> 310 | <TD ALIGN=CENTER> 311 | <B> 312 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT> 313 | </B> 314 | </TD> 315 | <TD ALIGN=CENTER> 316 | <B> 317 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT> 318 | </B> 319 | </TD> 320 | <TD ALIGN=CENTER> 321 | <B> 322 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT> 323 | </B> 324 | </TD> 325 | <TD ALIGN=CENTER> 326 | <B> 327 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT> 328 | </B> 329 | </TD> 330 | <TD ALIGN=CENTER> 331 | <B> 332 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT> 333 | </B> 334 | </TD> 335 | <TD ALIGN=CENTER> 336 | <B> 337 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT> 338 | </B> 339 | </TD> 340 | <TD ALIGN=CENTER> 341 | <B> 342 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT> 343 | </B> 344 | </TD><TD>&nbsp;</TD> 345 | </TR> 346 | <TR> 347 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 > 348 | 3005P<BR> 349 | 3006P<BR> 350 | 3006W<BR> 351 | 3006Y<BR> 352 | 3009P<BR> 353 | 3009W<BR> 354 | 3009Y<BR> 355 | 3057J<BR> 356 | 3057L<BR> 357 | 3057P<BR> 358 | 3057Y<BR> 359 | 3059J<BR> 360 | 3059L<BR> 361 | 3059P<BR> 362 | 3059Y<BR></FONT> 363 | </TD> 364 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 365 | -<BR> 366 | 89P<BR> 367 | 89W<BR> 368 | 89X<BR> 369 | 89PH<BR> 370 | 76P<BR> 371 | 89XH<BR> 372 | 78SLT<BR> 373 | 78L&nbsp;ALT<BR> 374 | 56P&nbsp;ALT<BR> 375 | 78P&nbsp;ALT<BR> 376 | T8S<BR> 377 | 78L<BR> 378 | 56P<BR> 379 | 78P<BR></FONT> 380 | </TD> 381 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 382 | -<BR> 383 | T18/784<BR> 384 | 783<BR> 385 | 781<BR> 386 | -<BR> 387 | -<BR> 388 | -<BR> 389 | 2199<BR> 390 | 1697/1897<BR> 391 | 1680/1880<BR> 392 | 2187<BR> 393 | -<BR> 394 | -<BR> 395 | -<BR> 396 | -<BR></FONT> 397 | </TD> 398 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 399 | -<BR> 400 | 8035EKP/CT20/RJ-20P<BR> 401 | -<BR> 402 | RJ-20X<BR> 403 | -<BR> 404 | -<BR> 405 | -<BR> 406 | 1211L<BR> 407 | 8012EKQ&nbsp;ALT<BR> 408 | 8012EKR&nbsp;ALT<BR> 409 | 1211P<BR> 410 | 8012EKJ<BR> 411 | 8012EKL<BR> 412 | 8012EKQ<BR> 413 | 8012EKR<BR></FONT> 414 | </TD> 415 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 416 | -<BR> 417 | 2101P<BR> 418 | 2101W<BR> 419 | 2101Y<BR> 420 | -<BR> 421 | -<BR> 422 | -<BR> 423 | -<BR> 424 | -<BR> 425 | -<BR> 426 | -<BR> 427 | -<BR> 428 | 2102L<BR> 429 | 2102S<BR> 430 | 2102Y<BR></FONT> 431 | </TD> 432 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 433 | -<BR> 434 | EVMCOG<BR> 435 | -<BR> 436 | -<BR> 437 | -<BR> 438 | -<BR> 439 | -<BR> 440 | -<BR> 441 | -<BR> 442 | -<BR> 443 | -<BR> 444 | -<BR> 445 | -<BR> 446 | -<BR> 447 | -<BR></FONT> 448 | </TD> 449 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 450 | -<BR> 451 | 43P<BR> 452 | 43W<BR> 453 | 43Y<BR> 454 | -<BR> 455 | -<BR> 456 | -<BR> 457 | -<BR> 458 | 40L<BR> 459 | 40P<BR> 460 | 40Y<BR> 461 | 70Y-T602<BR> 462 | 70L<BR> 463 | 70P<BR> 464 | 70Y<BR></FONT> 465 | </TD> 466 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 467 | -<BR> 468 | -<BR> 469 | -<BR> 470 | -<BR> 471 | -<BR> 472 | -<BR> 473 | -<BR> 474 | -<BR> 475 | RT/RTR12<BR> 476 | RT/RTR12<BR> 477 | RT/RTR12<BR> 478 | -<BR> 479 | RJ/RJR12<BR> 480 | RJ/RJR12<BR> 481 | RJ/RJR12<BR></FONT> 482 | </TD> 483 | </TR> 484 | <TR> 485 | <TD COLSPAN=8>&nbsp; 486 | </TD> 487 | </TR> 488 | <TR> 489 | <TD COLSPAN=8> 490 | <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT> 491 | </TD> 492 | </TR> 493 | <TR> 494 | <TD ALIGN=CENTER> 495 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 496 | </TD> 497 | <TD ALIGN=CENTER> 498 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 499 | </TD> 500 | <TD ALIGN=CENTER> 501 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 502 | </TD> 503 | <TD ALIGN=CENTER> 504 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 505 | </TD> 506 | <TD ALIGN=CENTER> 507 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 508 | </TD> 509 | <TD ALIGN=CENTER> 510 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 511 | </TD> 512 | <TD ALIGN=CENTER> 513 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 514 | </TD> 515 | <TD ALIGN=CENTER> 516 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 517 | </TD> 518 | </TR> 519 | <TR> 520 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 521 | 3250L<BR> 522 | 3250P<BR> 523 | 3250W<BR> 524 | 3250X<BR> 525 | 3252P<BR> 526 | 3252W<BR> 527 | 3252X<BR> 528 | 3260P<BR> 529 | 3260W<BR> 530 | 3260X<BR> 531 | 3262P<BR> 532 | 3262W<BR> 533 | 3262X<BR> 534 | 3266P<BR> 535 | 3266W<BR> 536 | 3266X<BR> 537 | 3290H<BR> 538 | 3290P<BR> 539 | 3290W<BR> 540 | 3292P<BR> 541 | 3292W<BR> 542 | 3292X<BR> 543 | 3296P<BR> 544 | 3296W<BR> 545 | 3296X<BR> 546 | 3296Y<BR> 547 | 3296Z<BR> 548 | 3299P<BR> 549 | 3299W<BR> 550 | 3299X<BR> 551 | 3299Y<BR> 552 | 3299Z<BR></FONT> 553 | </TD> 554 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 555 | -<BR> 556 | 66P&nbsp;ALT<BR> 557 | 66W&nbsp;ALT<BR> 558 | 66X&nbsp;ALT<BR> 559 | 66P&nbsp;ALT<BR> 560 | 66W&nbsp;ALT<BR> 561 | 66X&nbsp;ALT<BR> 562 | -<BR> 563 | 64W&nbsp;ALT<BR> 564 | -<BR> 565 | 64P&nbsp;ALT<BR> 566 | 64W&nbsp;ALT<BR> 567 | 64X&nbsp;ALT<BR> 568 | 64P<BR> 569 | 64W<BR> 570 | 64X<BR> 571 | 66X&nbsp;ALT<BR> 572 | 66P&nbsp;ALT<BR> 573 | 66W&nbsp;ALT<BR> 574 | 66P<BR> 575 | 66W<BR> 576 | 66X<BR> 577 | 67P<BR> 578 | 67W<BR> 579 | 67X<BR> 580 | 67Y<BR> 581 | 67Z<BR> 582 | 68P<BR> 583 | 68W<BR> 584 | 68X<BR> 585 | 67Y&nbsp;ALT<BR> 586 | 67Z&nbsp;ALT<BR></FONT> 587 | </TD> 588 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 589 | 5050<BR> 590 | 5091<BR> 591 | 5080<BR> 592 | 5087<BR> 593 | -<BR> 594 | -<BR> 595 | -<BR> 596 | -<BR> 597 | -<BR> 598 | -<BR> 599 | -<BR> 600 | T63YB<BR> 601 | T63XB<BR> 602 | -<BR> 603 | -<BR> 604 | -<BR> 605 | 5887<BR> 606 | 5891<BR> 607 | 5880<BR> 608 | -<BR> 609 | -<BR> 610 | -<BR> 611 | T93Z<BR> 612 | T93YA<BR> 613 | T93XA<BR> 614 | T93YB<BR> 615 | T93XB<BR> 616 | -<BR> 617 | -<BR> 618 | -<BR> 619 | -<BR> 620 | -<BR></FONT> 621 | </TD> 622 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 623 | -<BR> 624 | -<BR> 625 | -<BR> 626 | -<BR> 627 | -<BR> 628 | -<BR> 629 | -<BR> 630 | -<BR> 631 | -<BR> 632 | -<BR> 633 | 8026EKP<BR> 634 | 8026EKW<BR> 635 | 8026EKM<BR> 636 | 8026EKP<BR> 637 | 8026EKB<BR> 638 | 8026EKM<BR> 639 | 1309X<BR> 640 | 1309P<BR> 641 | 1309W<BR> 642 | 8024EKP<BR> 643 | 8024EKW<BR> 644 | 8024EKN<BR> 645 | RJ-9P/CT9P<BR> 646 | RJ-9W<BR> 647 | RJ-9X<BR> 648 | -<BR> 649 | -<BR> 650 | -<BR> 651 | -<BR> 652 | -<BR> 653 | -<BR> 654 | -<BR></FONT> 655 | </TD> 656 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 657 | -<BR> 658 | -<BR> 659 | -<BR> 660 | -<BR> 661 | -<BR> 662 | -<BR> 663 | -<BR> 664 | -<BR> 665 | -<BR> 666 | -<BR> 667 | 3103P<BR> 668 | 3103Y<BR> 669 | 3103Z<BR> 670 | 3103P<BR> 671 | 3103Y<BR> 672 | 3103Z<BR> 673 | -<BR> 674 | -<BR> 675 | -<BR> 676 | -<BR> 677 | -<BR> 678 | -<BR> 679 | 3105P/3106P<BR> 680 | 3105W/3106W<BR> 681 | 3105X/3106X<BR> 682 | 3105Y/3106Y<BR> 683 | 3105Z/3105Z<BR> 684 | 3102P<BR> 685 | 3102W<BR> 686 | 3102X<BR> 687 | 3102Y<BR> 688 | 3102Z<BR></FONT> 689 | </TD> 690 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 691 | -<BR> 692 | -<BR> 693 | -<BR> 694 | -<BR> 695 | -<BR> 696 | -<BR> 697 | -<BR> 698 | -<BR> 699 | -<BR> 700 | -<BR> 701 | -<BR> 702 | -<BR> 703 | -<BR> 704 | -<BR> 705 | -<BR> 706 | -<BR> 707 | -<BR> 708 | -<BR> 709 | -<BR> 710 | -<BR> 711 | -<BR> 712 | -<BR> 713 | EVMCBG<BR> 714 | EVMCCG<BR> 715 | -<BR> 716 | -<BR> 717 | -<BR> 718 | -<BR> 719 | -<BR> 720 | -<BR> 721 | -<BR> 722 | -<BR></FONT> 723 | </TD> 724 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 725 | 55-1-X<BR> 726 | 55-4-X<BR> 727 | 55-3-X<BR> 728 | 55-2-X<BR> 729 | -<BR> 730 | -<BR> 731 | -<BR> 732 | -<BR> 733 | -<BR> 734 | -<BR> 735 | -<BR> 736 | -<BR> 737 | -<BR> 738 | -<BR> 739 | -<BR> 740 | -<BR> 741 | 50-2-X<BR> 742 | 50-4-X<BR> 743 | 50-3-X<BR> 744 | -<BR> 745 | -<BR> 746 | -<BR> 747 | 64P<BR> 748 | 64W<BR> 749 | 64X<BR> 750 | 64Y<BR> 751 | 64Z<BR> 752 | -<BR> 753 | -<BR> 754 | -<BR> 755 | -<BR> 756 | -<BR></FONT> 757 | </TD> 758 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 759 | RT/RTR22<BR> 760 | RT/RTR22<BR> 761 | RT/RTR22<BR> 762 | RT/RTR22<BR> 763 | RJ/RJR22<BR> 764 | RJ/RJR22<BR> 765 | RJ/RJR22<BR> 766 | RT/RTR26<BR> 767 | RT/RTR26<BR> 768 | RT/RTR26<BR> 769 | RJ/RJR26<BR> 770 | RJ/RJR26<BR> 771 | RJ/RJR26<BR> 772 | RJ/RJR26<BR> 773 | RJ/RJR26<BR> 774 | RJ/RJR26<BR> 775 | RT/RTR24<BR> 776 | RT/RTR24<BR> 777 | RT/RTR24<BR> 778 | RJ/RJR24<BR> 779 | RJ/RJR24<BR> 780 | RJ/RJR24<BR> 781 | RJ/RJR24<BR> 782 | RJ/RJR24<BR> 783 | RJ/RJR24<BR> 784 | -<BR> 785 | -<BR> 786 | -<BR> 787 | -<BR> 788 | -<BR> 789 | -<BR> 790 | -<BR></FONT> 791 | </TD> 792 | </TR> 793 | <TR> 794 | <TD COLSPAN=8>&nbsp; 795 | </TD> 796 | </TR> 797 | <TR> 798 | <TD COLSPAN=8> 799 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 800 | </TD> 801 | </TR> 802 | <TR> 803 | <TD ALIGN=CENTER> 804 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 805 | </TD> 806 | <TD ALIGN=CENTER> 807 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 808 | </TD> 809 | <TD ALIGN=CENTER> 810 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 811 | </TD> 812 | <TD ALIGN=CENTER> 813 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 814 | </TD> 815 | <TD ALIGN=CENTER> 816 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 817 | </TD> 818 | <TD ALIGN=CENTER> 819 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 820 | </TD> 821 | <TD ALIGN=CENTER> 822 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 823 | </TD> 824 | <TD ALIGN=CENTER> 825 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 826 | </TD> 827 | </TR> 828 | <TR> 829 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 830 | 3323P<BR> 831 | 3323S<BR> 832 | 3323W<BR> 833 | 3329H<BR> 834 | 3329P<BR> 835 | 3329W<BR> 836 | 3339H<BR> 837 | 3339P<BR> 838 | 3339W<BR> 839 | 3352E<BR> 840 | 3352H<BR> 841 | 3352K<BR> 842 | 3352P<BR> 843 | 3352T<BR> 844 | 3352V<BR> 845 | 3352W<BR> 846 | 3362H<BR> 847 | 3362M<BR> 848 | 3362P<BR> 849 | 3362R<BR> 850 | 3362S<BR> 851 | 3362U<BR> 852 | 3362W<BR> 853 | 3362X<BR> 854 | 3386B<BR> 855 | 3386C<BR> 856 | 3386F<BR> 857 | 3386H<BR> 858 | 3386K<BR> 859 | 3386M<BR> 860 | 3386P<BR> 861 | 3386S<BR> 862 | 3386W<BR> 863 | 3386X<BR></FONT> 864 | </TD> 865 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 866 | 25P<BR> 867 | 25S<BR> 868 | 25RX<BR> 869 | 82P<BR> 870 | 82M<BR> 871 | 82PA<BR> 872 | -<BR> 873 | -<BR> 874 | -<BR> 875 | 91E<BR> 876 | 91X<BR> 877 | 91T<BR> 878 | 91B<BR> 879 | 91A<BR> 880 | 91V<BR> 881 | 91W<BR> 882 | 25W<BR> 883 | 25V<BR> 884 | 25P<BR> 885 | -<BR> 886 | 25S<BR> 887 | 25U<BR> 888 | 25RX<BR> 889 | 25X<BR> 890 | 72XW<BR> 891 | 72XL<BR> 892 | 72PM<BR> 893 | 72RX<BR> 894 | -<BR> 895 | 72PX<BR> 896 | 72P<BR> 897 | 72RXW<BR> 898 | 72RXL<BR> 899 | 72X<BR></FONT> 900 | </TD> 901 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 902 | -<BR> 903 | -<BR> 904 | -<BR> 905 | T7YB<BR> 906 | T7YA<BR> 907 | -<BR> 908 | -<BR> 909 | -<BR> 910 | -<BR> 911 | -<BR> 912 | -<BR> 913 | -<BR> 914 | -<BR> 915 | -<BR> 916 | -<BR> 917 | -<BR> 918 | -<BR> 919 | TXD<BR> 920 | TYA<BR> 921 | TYP<BR> 922 | -<BR> 923 | TYD<BR> 924 | TX<BR> 925 | -<BR> 926 | 150SX<BR> 927 | 100SX<BR> 928 | 102T<BR> 929 | 101S<BR> 930 | 190T<BR> 931 | 150TX<BR> 932 | 101<BR> 933 | -<BR> 934 | -<BR> 935 | 101SX<BR></FONT> 936 | </TD> 937 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 938 | ET6P<BR> 939 | ET6S<BR> 940 | ET6X<BR> 941 | RJ-6W/8014EMW<BR> 942 | RJ-6P/8014EMP<BR> 943 | RJ-6X/8014EMX<BR> 944 | TM7W<BR> 945 | TM7P<BR> 946 | TM7X<BR> 947 | -<BR> 948 | 8017SMS<BR> 949 | -<BR> 950 | 8017SMB<BR> 951 | 8017SMA<BR> 952 | -<BR> 953 | -<BR> 954 | CT-6W<BR> 955 | CT-6H<BR> 956 | CT-6P<BR> 957 | CT-6R<BR> 958 | -<BR> 959 | CT-6V<BR> 960 | CT-6X<BR> 961 | -<BR> 962 | -<BR> 963 | 8038EKV<BR> 964 | -<BR> 965 | 8038EKX<BR> 966 | -<BR> 967 | -<BR> 968 | 8038EKP<BR> 969 | 8038EKZ<BR> 970 | 8038EKW<BR> 971 | -<BR></FONT> 972 | </TD> 973 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 974 | -<BR> 975 | -<BR> 976 | -<BR> 977 | 3321H<BR> 978 | 3321P<BR> 979 | 3321N<BR> 980 | 1102H<BR> 981 | 1102P<BR> 982 | 1102T<BR> 983 | RVA0911V304A<BR> 984 | -<BR> 985 | RVA0911H413A<BR> 986 | RVG0707V100A<BR> 987 | RVA0607V(H)306A<BR> 988 | RVA1214H213A<BR> 989 | -<BR> 990 | -<BR> 991 | -<BR> 992 | -<BR> 993 | -<BR> 994 | -<BR> 995 | -<BR> 996 | -<BR> 997 | -<BR> 998 | 3104B<BR> 999 | 3104C<BR> 1000 | 3104F<BR> 1001 | 3104H<BR> 1002 | -<BR> 1003 | 3104M<BR> 1004 | 3104P<BR> 1005 | 3104S<BR> 1006 | 3104W<BR> 1007 | 3104X<BR></FONT> 1008 | </TD> 1009 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1010 | EVMQ0G<BR> 1011 | EVMQIG<BR> 1012 | EVMQ3G<BR> 1013 | EVMS0G<BR> 1014 | EVMQ0G<BR> 1015 | EVMG0G<BR> 1016 | -<BR> 1017 | -<BR> 1018 | -<BR> 1019 | EVMK4GA00B<BR> 1020 | EVM30GA00B<BR> 1021 | EVMK0GA00B<BR> 1022 | EVM38GA00B<BR> 1023 | EVMB6<BR> 1024 | EVLQ0<BR> 1025 | -<BR> 1026 | EVMMSG<BR> 1027 | EVMMBG<BR> 1028 | EVMMAG<BR> 1029 | -<BR> 1030 | -<BR> 1031 | EVMMCS<BR> 1032 | -<BR> 1033 | -<BR> 1034 | -<BR> 1035 | -<BR> 1036 | -<BR> 1037 | EVMM1<BR> 1038 | -<BR> 1039 | -<BR> 1040 | EVMM0<BR> 1041 | -<BR> 1042 | -<BR> 1043 | EVMM3<BR></FONT> 1044 | </TD> 1045 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1046 | -<BR> 1047 | -<BR> 1048 | -<BR> 1049 | 62-3-1<BR> 1050 | 62-1-2<BR> 1051 | -<BR> 1052 | -<BR> 1053 | -<BR> 1054 | -<BR> 1055 | -<BR> 1056 | -<BR> 1057 | -<BR> 1058 | -<BR> 1059 | -<BR> 1060 | -<BR> 1061 | -<BR> 1062 | 67R<BR> 1063 | -<BR> 1064 | 67P<BR> 1065 | -<BR> 1066 | -<BR> 1067 | -<BR> 1068 | -<BR> 1069 | 67X<BR> 1070 | 63V<BR> 1071 | 63S<BR> 1072 | 63M<BR> 1073 | -<BR> 1074 | -<BR> 1075 | 63H<BR> 1076 | 63P<BR> 1077 | -<BR> 1078 | -<BR> 1079 | 63X<BR></FONT> 1080 | </TD> 1081 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1082 | -<BR> 1083 | -<BR> 1084 | -<BR> 1085 | RJ/RJR50<BR> 1086 | RJ/RJR50<BR> 1087 | RJ/RJR50<BR> 1088 | -<BR> 1089 | -<BR> 1090 | -<BR> 1091 | -<BR> 1092 | -<BR> 1093 | -<BR> 1094 | -<BR> 1095 | -<BR> 1096 | -<BR> 1097 | -<BR> 1098 | -<BR> 1099 | -<BR> 1100 | -<BR> 1101 | -<BR> 1102 | -<BR> 1103 | -<BR> 1104 | -<BR> 1105 | -<BR> 1106 | -<BR> 1107 | -<BR> 1108 | -<BR> 1109 | -<BR> 1110 | -<BR> 1111 | -<BR> 1112 | -<BR> 1113 | -<BR> 1114 | -<BR> 1115 | -<BR></FONT> 1116 | </TD> 1117 | </TR> 1118 | </TABLE> 1119 | <P>&nbsp;<P> 1120 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3> 1121 | <TR> 1122 | <TD COLSPAN=7> 1123 | <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT> 1124 | <P> 1125 | <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT> 1126 | </TD> 1127 | </TR> 1128 | <TR> 1129 | <TD> 1130 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1131 | </TD> 1132 | <TD> 1133 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1134 | </TD> 1135 | <TD> 1136 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1137 | </TD> 1138 | <TD> 1139 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1140 | </TD> 1141 | <TD> 1142 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1143 | </TD> 1144 | <TD> 1145 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1146 | </TD> 1147 | <TD> 1148 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1149 | </TD> 1150 | </TR> 1151 | <TR> 1152 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1153 | 3224G<BR> 1154 | 3224J<BR> 1155 | 3224W<BR> 1156 | 3269P<BR> 1157 | 3269W<BR> 1158 | 3269X<BR></FONT> 1159 | </TD> 1160 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1161 | 44G<BR> 1162 | 44J<BR> 1163 | 44W<BR> 1164 | 84P<BR> 1165 | 84W<BR> 1166 | 84X<BR></FONT> 1167 | </TD> 1168 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1169 | -<BR> 1170 | -<BR> 1171 | -<BR> 1172 | ST63Z<BR> 1173 | ST63Y<BR> 1174 | -<BR></FONT> 1175 | </TD> 1176 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1177 | -<BR> 1178 | -<BR> 1179 | -<BR> 1180 | ST5P<BR> 1181 | ST5W<BR> 1182 | ST5X<BR></FONT> 1183 | </TD> 1184 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1185 | -<BR> 1186 | -<BR> 1187 | -<BR> 1188 | -<BR> 1189 | -<BR> 1190 | -<BR></FONT> 1191 | </TD> 1192 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1193 | -<BR> 1194 | -<BR> 1195 | -<BR> 1196 | -<BR> 1197 | -<BR> 1198 | -<BR></FONT> 1199 | </TD> 1200 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1201 | -<BR> 1202 | -<BR> 1203 | -<BR> 1204 | -<BR> 1205 | -<BR> 1206 | -<BR></FONT> 1207 | </TD> 1208 | </TR> 1209 | <TR> 1210 | <TD COLSPAN=7>&nbsp; 1211 | </TD> 1212 | </TR> 1213 | <TR> 1214 | <TD COLSPAN=7> 1215 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 1216 | </TD> 1217 | </TR> 1218 | <TR> 1219 | <TD> 1220 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1221 | </TD> 1222 | <TD> 1223 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1224 | </TD> 1225 | <TD> 1226 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1227 | </TD> 1228 | <TD> 1229 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1230 | </TD> 1231 | <TD> 1232 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1233 | </TD> 1234 | <TD> 1235 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1236 | </TD> 1237 | <TD> 1238 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1239 | </TD> 1240 | </TR> 1241 | <TR> 1242 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1243 | 3314G<BR> 1244 | 3314J<BR> 1245 | 3364A/B<BR> 1246 | 3364C/D<BR> 1247 | 3364W/X<BR> 1248 | 3313G<BR> 1249 | 3313J<BR></FONT> 1250 | </TD> 1251 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1252 | 23B<BR> 1253 | 23A<BR> 1254 | 21X<BR> 1255 | 21W<BR> 1256 | -<BR> 1257 | 22B<BR> 1258 | 22A<BR></FONT> 1259 | </TD> 1260 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1261 | ST5YL/ST53YL<BR> 1262 | ST5YJ/5T53YJ<BR> 1263 | ST-23A<BR> 1264 | ST-22B<BR> 1265 | ST-22<BR> 1266 | -<BR> 1267 | -<BR></FONT> 1268 | </TD> 1269 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1270 | ST-4B<BR> 1271 | ST-4A<BR> 1272 | -<BR> 1273 | -<BR> 1274 | -<BR> 1275 | ST-3B<BR> 1276 | ST-3A<BR></FONT> 1277 | </TD> 1278 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1279 | -<BR> 1280 | EVM-6YS<BR> 1281 | EVM-1E<BR> 1282 | EVM-1G<BR> 1283 | EVM-1D<BR> 1284 | -<BR> 1285 | -<BR></FONT> 1286 | </TD> 1287 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1288 | G4B<BR> 1289 | G4A<BR> 1290 | TR04-3S1<BR> 1291 | TRG04-2S1<BR> 1292 | -<BR> 1293 | -<BR> 1294 | -<BR></FONT> 1295 | </TD> 1296 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1297 | -<BR> 1298 | -<BR> 1299 | DVR-43A<BR> 1300 | CVR-42C<BR> 1301 | CVR-42A/C<BR> 1302 | -<BR> 1303 | -<BR></FONT> 1304 | </TD> 1305 | </TR> 1306 | </TABLE> 1307 | <P> 1308 | <FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT> 1309 | <P> 1310 | 1311 | &nbsp; 1312 | <P> 1313 | </td> 1314 | </tr> 1315 | </table> 1316 | 1317 | 1318 | <b>RESISTOR</b> 1319 | 1320 | 1321 | 1322 | 1323 | 1324 | 1325 | 1326 | 1327 | >NAME 1328 | >VALUE 1329 | 1330 | 1331 | 1332 | 1333 | 1334 | <b>CAPACITOR</b> 1335 | 1336 | 1337 | 1338 | 1339 | 1340 | 1341 | 1342 | 1343 | >NAME 1344 | >VALUE 1345 | 1346 | 1347 | 1348 | 1349 | 1350 | 1351 | 1352 | <h3>SparkFun Electronics' preferred foot prints</h3> 1353 | In this library you'll find crystals and oscillators and other things that go "tick".<br><br> 1354 | 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. 1355 | <br><br> 1356 | <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. 1357 | 1358 | 1359 | 1360 | 1361 | 1362 | 1363 | 1364 | 1365 | 1366 | 1367 | >NAME 1368 | >VALUE 1369 | 1370 | 1371 | 1372 | 1373 | 1374 | 1375 | <b>CHIPLED</b><p> 1376 | Source: http://www.osram.convergy.de/ ... LG_LY Q971.pdf 1377 | 1378 | 1379 | 1380 | 1381 | 1382 | 1383 | 1384 | >NAME 1385 | >VALUE 1386 | 1387 | 1388 | 1389 | 1390 | 1391 | 1392 | 1393 | 1394 | 1395 | 1396 | 1397 | 1398 | 1399 | 1400 | 1401 | <b>Single Pads</b><p> 1402 | <author>Created by librarian@cadsoft.de</author> 1403 | 1404 | 1405 | <b>SMD PAD</b> 1406 | 1407 | >VALUE 1408 | >NAME 1409 | 1410 | 1411 | <b>SMD PAD</b> 1412 | 1413 | >VALUE 1414 | >NAME 1415 | 1416 | 1417 | 1418 | 1419 | <h3>SparkFun Electronics' preferred foot prints</h3> 1420 | In this library you'll find non-functional items- supply symbols, logos, notations, frame blocks, etc.<br><br> 1421 | 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. 1422 | <br><br> 1423 | <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. 1424 | 1425 | 1426 | 1427 | 1428 | 1429 | 1430 | 1431 | 1432 | 1433 | 1434 | 1435 | 1436 | 1437 | 1438 | 1439 | 1440 | 1441 | 1442 | 1443 | 1444 | 1445 | 1446 | 1447 | 1448 | 1449 | 1450 | 1451 | 1452 | 1453 | 1454 | 1455 | 1456 | 1457 | 1458 | 1459 | 1460 | 1461 | 1462 | 1463 | 1464 | 1465 | 1466 | 1467 | 1468 | 1469 | 1470 | 1471 | 1472 | 1473 | 1474 | <b>EAGLE Design Rules</b> 1475 | <p> 1476 | Die Standard-Design-Rules sind so gewählt, dass sie für 1477 | die meisten Anwendungen passen. Sollte ihre Platine 1478 | besondere Anforderungen haben, treffen Sie die erforderlichen 1479 | Einstellungen hier und speichern die Design Rules unter 1480 | einem neuen Namen ab. 1481 | <b>EAGLE Design Rules</b> 1482 | <p> 1483 | The default Design Rules have been set to cover 1484 | a wide range of applications. Your particular design 1485 | may have different requirements, so please make the 1486 | necessary adjustments and save your customized 1487 | design rules under a new name. 1488 | <b>Seeed Studio EAGLE Design Rules</b> 1489 | 1490 | 1491 | 1492 | 1493 | 1494 | 1495 | 1496 | 1497 | 1498 | 1499 | 1500 | 1501 | 1502 | 1503 | 1504 | 1505 | 1506 | 1507 | 1508 | 1509 | 1510 | 1511 | 1512 | 1513 | 1514 | 1515 | 1516 | 1517 | 1518 | 1519 | 1520 | 1521 | 1522 | 1523 | 1524 | 1525 | 1526 | 1527 | 1528 | 1529 | 1530 | 1531 | 1532 | 1533 | 1534 | 1535 | 1536 | 1537 | 1538 | 1539 | 1540 | 1541 | 1542 | 1543 | 1544 | 1545 | 1546 | 1547 | 1548 | 1549 | 1550 | 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | 1557 | 1558 | 1559 | 1560 | 1561 | 1562 | 1563 | 1564 | 1565 | 1566 | 1567 | 1568 | 1569 | 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 | 1596 | 1597 | 1598 | 1599 | 1600 | 1601 | 1602 | 1603 | 1604 | 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 | 1633 | 1634 | 1635 | 1636 | 1637 | 1638 | 1639 | 1640 | 1641 | 1642 | 1643 | 1644 | 1645 | 1646 | 1647 | 1648 | 1649 | 1650 | 1651 | 1652 | 1653 | 1654 | 1655 | 1656 | 1657 | 1658 | 1659 | 1660 | 1661 | 1662 | 1663 | 1664 | 1665 | 1666 | 1667 | 1668 | 1669 | 1670 | 1671 | 1672 | 1673 | 1674 | 1675 | 1676 | 1677 | 1678 | 1679 | 1680 | 1681 | 1682 | 1683 | 1684 | 1685 | 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 | 1725 | 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 | 1799 | 1800 | 1801 | 1802 | 1803 | 1804 | 1805 | 1806 | 1807 | 1808 | 1809 | 1810 | 1811 | 1812 | 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 | --------------------------------------------------------------------------------