├── .gitignore ├── LICENSE ├── README.md ├── datasheets ├── MCP2515 Datasheet.pdf └── TJA1049 Datasheet.pdf ├── eagle ├── CAN-Simulator_v1.1.brd ├── CAN-Simulator_v1.1.pdf ├── CAN-Simulator_v1.1.sch ├── CAN-Simulator_v1.brd ├── CAN-Simulator_v1.pdf ├── CAN-Simulator_v1.sch ├── CAN-Simulator_v1_BOM.csv ├── CAN-Simulator_v1_OrderUploadDigiKey.csv ├── CAN-Simulator_v1_UpdatePartNumAttributes.scr ├── CAN-Simulator_v2.brd └── CAN-Simulator_v2.sch └── simulator.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Work-in-progress versions 2 | archive/ 3 | 4 | # Backup files 5 | *.s#? 6 | *.b#? 7 | *.l#? 8 | 9 | # CAM files 10 | *.$$$ 11 | *.cmp 12 | *.ly2 13 | *.l15 14 | *.sol 15 | *.plc 16 | *.stc 17 | *.sts 18 | *.crc 19 | *.crs 20 | 21 | *.dri 22 | *.drl 23 | *.gpi 24 | *.pls 25 | 26 | *.drd 27 | *.drd.* 28 | 29 | *.pro 30 | 31 | *.info 32 | 33 | *.eps 34 | 35 | # Eagle lock files 36 | *.lck 37 | 38 | # Eagle settings files 39 | *.epf 40 | 41 | # Vim swap files 42 | *.sw* 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Carloop 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CAN Simulator 2 | 3 | This is a project we used to help develop and test the [Carloop open-source car adapter][carloop]. We hope you'll find it useful for your projects too. 4 | 5 | ## Overview 6 | 7 | The simulator consists of: 8 | - An OBD port (the same you have in your car under the steering wheel) to plug a device to test 9 | - The simulator board to convert CAN voltages to logic levels and provide 12V on the OBD port 10 | - A Raspberry Pi to run the simulator program 11 | - [The program][simulator-program] that communicates with the simulator board and that decide what to do with the CAN messages received 12 | 13 | ![CAN simulator](simulator.png) 14 | 15 | ## Background about CAN 16 | 17 | CAN is the communication bus used between most computers in cars. It has several physical layers, including a high-speed differential voltage (CAN high and CAN low) at up to 1 Mbit/second. CAN is a multicast protocol where each message has an identifier and up to 8 data bytes. Any node listening on the bus can receive any message transmitted. In order to make sense of the messages, the receivers need to know the data format used by the transmitter of each message for the data bytes. 18 | 19 | There are higher level protocols built on top of CAN, most importantly ISO 15765 used for OBD-II (On-Board Diagsnotics II) mandated on all cars since 2008 and used on many cars before. See [this tutorial by Sparkfun for more information about the OBD-II protocol][obd-getting-started] 20 | 21 | This CAN simulator can be used to transmit and receive messages simulating OBD-II communications and regular vehicle messages. 22 | 23 | ## Simulator board 24 | 25 | The heart of the simulator board is the [MCP2515 standalone CAN controller][mcp2515-datasheet] that understands the CAN protocol 26 | and talks to the Raspberry Pi over the SPI bus. 27 | 28 | The board also has a [TJA1049 CAN transceiver][tja1049-datasheet] to translate logic voltage levels to the differential voltage levels used for high speed CAN. 29 | 30 | Since the OBD port is supposed to provide 12 volts, a simple [5V to 12V step up regulator from Pololu][12v-step-up-regulator] is included. 31 | 32 | The OBD connector is part of an off-the-shelf [9-pin OBD ribbon extension cable available on Amazon][obd-cable]. 33 | 34 | - [Board schematics (PDF)][schematics] [(Eagle)][schematics-eagle] 35 | - [Board layout (Eagle)][layout-eagle] 36 | - [Bill of materials][bom] 37 | - [MCP2515 CAN controller datasheet][mcp2515-datasheet] 38 | - [TJA1049 CAN transceiver datasheet][tja1049-datasheet] 39 | 40 | ### Assembly instructions 41 | 42 | - [Order a simulator v1 PCB from OSH Park.][pcb-osh-park] 43 | - [Order the parts from the BOM from DigiKey][bom] and the [regulator from Pololu.][12v-step-up-regulator] 44 | - Solder the above together. 45 | - Get a Raspberry Pi with a GPIO connector. 46 | - [Get an OBD cable.][obd-cable] 47 | - Insert the 9-pin flat cable in the 10-pin insulation displacement connector aligned to the left (see the overview picture above) and cut the leftover cable. 48 | - Flash the latest Raspian image to the SD card of your Raspberry PI and follow the instructions to get the simulator program running. 49 | 50 | ## [Simulator program][simulator-program] 51 | 52 | The program running the simulation is in [a separate repository][simulator-program]. Currently it only sends fixed messages. It could be extended for more sophisticated communication or to replay logged CAN bus traces. 53 | 54 | ## License 55 | 56 | Copyright 2016 Julien Vanier. Distributed under the MIT license. See [LICENSE](/LICENSE) for details. 57 | 58 | [carloop]: https://www.carloop.io 59 | [simulator-program]: https://github.com/carloop/simulator-program 60 | [schematics]: eagle/CAN-Simulator_v1.1.pdf 61 | [schematics-eagle]: eagle/CAN-Simulator_v1.1.sch 62 | [layout-eagle]: eagle/CAN-Simulator_v1.1.brd 63 | [bom]: eagle/CAN-Simulator_v1_BOM.csv 64 | [obd-getting-started]: https://learn.sparkfun.com/tutorials/getting-started-with-obd-ii 65 | [obd-cable]: https://www.amazon.com/gp/product/B00GGLVXG2/ref=oh_aui_detailpage_o02_s00?ie=UTF8&psc=1 66 | [mcp2515-datasheet]: datasheets/MCP2515%20Datasheet.pdf 67 | [tja1049-datasheet]: datasheets/TJA1049%20Datasheet.pdf 68 | [12v-step-up-regulator]: https://www.pololu.com/product/2117 69 | [pcb-osh-park]:https://oshpark.com/shared_projects/GOPwocjS 70 | -------------------------------------------------------------------------------- /datasheets/MCP2515 Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloop/simulator/03f9f456bc7db1a8a38d4b285fff29964a44dfe3/datasheets/MCP2515 Datasheet.pdf -------------------------------------------------------------------------------- /datasheets/TJA1049 Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloop/simulator/03f9f456bc7db1a8a38d4b285fff29964a44dfe3/datasheets/TJA1049 Datasheet.pdf -------------------------------------------------------------------------------- /eagle/CAN-Simulator_v1.1.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 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | V1.1 166 | 167 | 168 | 169 | 170 | 171 | 172 | Raspberry Pi 173 | CAN Simulator 174 | Julien Vanier 175 | VREG 176 | CANL 177 | CANH 178 | 12V GND 5V 179 | Pi GPIO 180 | OBD 181 | 182 | 183 | 184 | <h3>SparkFun Electronics' preferred foot prints</h3> 185 | In this library you'll find boards and modules: Arduino footprints, breadboards, non-RF modules, etc.<br><br> 186 | 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. 187 | <br><br> 188 | <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. 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | >VALUE 212 | >NAME 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 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 | 262 | 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 | <h3>SparkFun Electronics' preferred foot prints</h3> 297 | In this library you'll find non-functional items- supply symbols, logos, notations, frame blocks, etc.<br><br> 298 | 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. 299 | <br><br> 300 | <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. 301 | 302 | 303 | Released under the Creative Commons Attribution Share-Alike 4.0 License 304 | https://creativecommons.org/licenses/by-sa/4.0/ 305 | Designed by: 306 | 307 | 308 | 309 | 310 | <h3>SparkFun Electronics' preferred foot prints</h3> 311 | 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> 312 | 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. 313 | <br><br> 314 | <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. 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | <h3>SparkFun Electronics' preferred foot prints</h3> 328 | In this library you'll find all manner of digital ICs- microcontrollers, memory chips, logic chips, FPGAs, etc.<br><br> 329 | 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. 330 | <br><br> 331 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 332 | <br><br> 333 | 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. 334 | 335 | 336 | <B>Small Outline Wide Plastic Gull Wing</B><p> 337 | 300-mil body, package type SO 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | >NAME 380 | >VALUE 381 | 382 | 383 | 384 | 385 | <h3>SparkFun Electronics' preferred foot prints</h3> 386 | In this library you'll find crystals and oscillators and other things that go "tick".<br><br> 387 | 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. 388 | <br><br> 389 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 390 | <br><br> 391 | 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. 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | >NAME 403 | >VALUE 404 | 405 | 406 | 407 | 408 | <h3>SparkFun Electronics' preferred foot prints</h3> 409 | In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br> 410 | 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. 411 | <br><br> 412 | <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. 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | <b>Resistors, Capacitors, Inductors</b><p> 424 | Based on the previous libraries: 425 | <ul> 426 | <li>r.lbr 427 | <li>cap.lbr 428 | <li>cap-fe.lbr 429 | <li>captant.lbr 430 | <li>polcap.lbr 431 | <li>ipc-smd.lbr 432 | </ul> 433 | All SMD packages are defined according to the IPC specifications and CECC<p> 434 | <author>Created by librarian@cadsoft.de</author><p> 435 | <p> 436 | for Electrolyt Capacitors see also :<p> 437 | www.bccomponents.com <p> 438 | www.panasonic.com<p> 439 | www.kemet.com<p> 440 | http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b> 441 | <p> 442 | for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p> 443 | 444 | <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0> 445 | <tr valign="top"> 446 | 447 | <! <td width="10">&nbsp;</td> 448 | <td width="90%"> 449 | 450 | <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b> 451 | <P> 452 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2> 453 | <TR> 454 | <TD COLSPAN=8> 455 | <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT> 456 | </TD> 457 | </TR> 458 | <TR> 459 | <TD ALIGN=CENTER> 460 | <B> 461 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT> 462 | </B> 463 | </TD> 464 | <TD ALIGN=CENTER> 465 | <B> 466 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT> 467 | </B> 468 | </TD> 469 | <TD ALIGN=CENTER> 470 | <B> 471 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT> 472 | </B> 473 | </TD> 474 | <TD ALIGN=CENTER> 475 | <B> 476 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT> 477 | </B> 478 | </TD> 479 | <TD ALIGN=CENTER> 480 | <B> 481 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT> 482 | </B> 483 | </TD> 484 | <TD ALIGN=CENTER> 485 | <B> 486 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT> 487 | </B> 488 | </TD> 489 | <TD ALIGN=CENTER> 490 | <B> 491 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT> 492 | </B> 493 | </TD> 494 | <TD ALIGN=CENTER> 495 | <B> 496 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT> 497 | </B> 498 | </TD><TD>&nbsp;</TD> 499 | </TR> 500 | <TR> 501 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 > 502 | 3005P<BR> 503 | 3006P<BR> 504 | 3006W<BR> 505 | 3006Y<BR> 506 | 3009P<BR> 507 | 3009W<BR> 508 | 3009Y<BR> 509 | 3057J<BR> 510 | 3057L<BR> 511 | 3057P<BR> 512 | 3057Y<BR> 513 | 3059J<BR> 514 | 3059L<BR> 515 | 3059P<BR> 516 | 3059Y<BR></FONT> 517 | </TD> 518 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 519 | -<BR> 520 | 89P<BR> 521 | 89W<BR> 522 | 89X<BR> 523 | 89PH<BR> 524 | 76P<BR> 525 | 89XH<BR> 526 | 78SLT<BR> 527 | 78L&nbsp;ALT<BR> 528 | 56P&nbsp;ALT<BR> 529 | 78P&nbsp;ALT<BR> 530 | T8S<BR> 531 | 78L<BR> 532 | 56P<BR> 533 | 78P<BR></FONT> 534 | </TD> 535 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 536 | -<BR> 537 | T18/784<BR> 538 | 783<BR> 539 | 781<BR> 540 | -<BR> 541 | -<BR> 542 | -<BR> 543 | 2199<BR> 544 | 1697/1897<BR> 545 | 1680/1880<BR> 546 | 2187<BR> 547 | -<BR> 548 | -<BR> 549 | -<BR> 550 | -<BR></FONT> 551 | </TD> 552 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 553 | -<BR> 554 | 8035EKP/CT20/RJ-20P<BR> 555 | -<BR> 556 | RJ-20X<BR> 557 | -<BR> 558 | -<BR> 559 | -<BR> 560 | 1211L<BR> 561 | 8012EKQ&nbsp;ALT<BR> 562 | 8012EKR&nbsp;ALT<BR> 563 | 1211P<BR> 564 | 8012EKJ<BR> 565 | 8012EKL<BR> 566 | 8012EKQ<BR> 567 | 8012EKR<BR></FONT> 568 | </TD> 569 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 570 | -<BR> 571 | 2101P<BR> 572 | 2101W<BR> 573 | 2101Y<BR> 574 | -<BR> 575 | -<BR> 576 | -<BR> 577 | -<BR> 578 | -<BR> 579 | -<BR> 580 | -<BR> 581 | -<BR> 582 | 2102L<BR> 583 | 2102S<BR> 584 | 2102Y<BR></FONT> 585 | </TD> 586 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 587 | -<BR> 588 | EVMCOG<BR> 589 | -<BR> 590 | -<BR> 591 | -<BR> 592 | -<BR> 593 | -<BR> 594 | -<BR> 595 | -<BR> 596 | -<BR> 597 | -<BR> 598 | -<BR> 599 | -<BR> 600 | -<BR> 601 | -<BR></FONT> 602 | </TD> 603 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 604 | -<BR> 605 | 43P<BR> 606 | 43W<BR> 607 | 43Y<BR> 608 | -<BR> 609 | -<BR> 610 | -<BR> 611 | -<BR> 612 | 40L<BR> 613 | 40P<BR> 614 | 40Y<BR> 615 | 70Y-T602<BR> 616 | 70L<BR> 617 | 70P<BR> 618 | 70Y<BR></FONT> 619 | </TD> 620 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 621 | -<BR> 622 | -<BR> 623 | -<BR> 624 | -<BR> 625 | -<BR> 626 | -<BR> 627 | -<BR> 628 | -<BR> 629 | RT/RTR12<BR> 630 | RT/RTR12<BR> 631 | RT/RTR12<BR> 632 | -<BR> 633 | RJ/RJR12<BR> 634 | RJ/RJR12<BR> 635 | RJ/RJR12<BR></FONT> 636 | </TD> 637 | </TR> 638 | <TR> 639 | <TD COLSPAN=8>&nbsp; 640 | </TD> 641 | </TR> 642 | <TR> 643 | <TD COLSPAN=8> 644 | <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT> 645 | </TD> 646 | </TR> 647 | <TR> 648 | <TD ALIGN=CENTER> 649 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 650 | </TD> 651 | <TD ALIGN=CENTER> 652 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 653 | </TD> 654 | <TD ALIGN=CENTER> 655 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 656 | </TD> 657 | <TD ALIGN=CENTER> 658 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 659 | </TD> 660 | <TD ALIGN=CENTER> 661 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 662 | </TD> 663 | <TD ALIGN=CENTER> 664 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 665 | </TD> 666 | <TD ALIGN=CENTER> 667 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 668 | </TD> 669 | <TD ALIGN=CENTER> 670 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 671 | </TD> 672 | </TR> 673 | <TR> 674 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 675 | 3250L<BR> 676 | 3250P<BR> 677 | 3250W<BR> 678 | 3250X<BR> 679 | 3252P<BR> 680 | 3252W<BR> 681 | 3252X<BR> 682 | 3260P<BR> 683 | 3260W<BR> 684 | 3260X<BR> 685 | 3262P<BR> 686 | 3262W<BR> 687 | 3262X<BR> 688 | 3266P<BR> 689 | 3266W<BR> 690 | 3266X<BR> 691 | 3290H<BR> 692 | 3290P<BR> 693 | 3290W<BR> 694 | 3292P<BR> 695 | 3292W<BR> 696 | 3292X<BR> 697 | 3296P<BR> 698 | 3296W<BR> 699 | 3296X<BR> 700 | 3296Y<BR> 701 | 3296Z<BR> 702 | 3299P<BR> 703 | 3299W<BR> 704 | 3299X<BR> 705 | 3299Y<BR> 706 | 3299Z<BR></FONT> 707 | </TD> 708 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 709 | -<BR> 710 | 66P&nbsp;ALT<BR> 711 | 66W&nbsp;ALT<BR> 712 | 66X&nbsp;ALT<BR> 713 | 66P&nbsp;ALT<BR> 714 | 66W&nbsp;ALT<BR> 715 | 66X&nbsp;ALT<BR> 716 | -<BR> 717 | 64W&nbsp;ALT<BR> 718 | -<BR> 719 | 64P&nbsp;ALT<BR> 720 | 64W&nbsp;ALT<BR> 721 | 64X&nbsp;ALT<BR> 722 | 64P<BR> 723 | 64W<BR> 724 | 64X<BR> 725 | 66X&nbsp;ALT<BR> 726 | 66P&nbsp;ALT<BR> 727 | 66W&nbsp;ALT<BR> 728 | 66P<BR> 729 | 66W<BR> 730 | 66X<BR> 731 | 67P<BR> 732 | 67W<BR> 733 | 67X<BR> 734 | 67Y<BR> 735 | 67Z<BR> 736 | 68P<BR> 737 | 68W<BR> 738 | 68X<BR> 739 | 67Y&nbsp;ALT<BR> 740 | 67Z&nbsp;ALT<BR></FONT> 741 | </TD> 742 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 743 | 5050<BR> 744 | 5091<BR> 745 | 5080<BR> 746 | 5087<BR> 747 | -<BR> 748 | -<BR> 749 | -<BR> 750 | -<BR> 751 | -<BR> 752 | -<BR> 753 | -<BR> 754 | T63YB<BR> 755 | T63XB<BR> 756 | -<BR> 757 | -<BR> 758 | -<BR> 759 | 5887<BR> 760 | 5891<BR> 761 | 5880<BR> 762 | -<BR> 763 | -<BR> 764 | -<BR> 765 | T93Z<BR> 766 | T93YA<BR> 767 | T93XA<BR> 768 | T93YB<BR> 769 | T93XB<BR> 770 | -<BR> 771 | -<BR> 772 | -<BR> 773 | -<BR> 774 | -<BR></FONT> 775 | </TD> 776 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 777 | -<BR> 778 | -<BR> 779 | -<BR> 780 | -<BR> 781 | -<BR> 782 | -<BR> 783 | -<BR> 784 | -<BR> 785 | -<BR> 786 | -<BR> 787 | 8026EKP<BR> 788 | 8026EKW<BR> 789 | 8026EKM<BR> 790 | 8026EKP<BR> 791 | 8026EKB<BR> 792 | 8026EKM<BR> 793 | 1309X<BR> 794 | 1309P<BR> 795 | 1309W<BR> 796 | 8024EKP<BR> 797 | 8024EKW<BR> 798 | 8024EKN<BR> 799 | RJ-9P/CT9P<BR> 800 | RJ-9W<BR> 801 | RJ-9X<BR> 802 | -<BR> 803 | -<BR> 804 | -<BR> 805 | -<BR> 806 | -<BR> 807 | -<BR> 808 | -<BR></FONT> 809 | </TD> 810 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 811 | -<BR> 812 | -<BR> 813 | -<BR> 814 | -<BR> 815 | -<BR> 816 | -<BR> 817 | -<BR> 818 | -<BR> 819 | -<BR> 820 | -<BR> 821 | 3103P<BR> 822 | 3103Y<BR> 823 | 3103Z<BR> 824 | 3103P<BR> 825 | 3103Y<BR> 826 | 3103Z<BR> 827 | -<BR> 828 | -<BR> 829 | -<BR> 830 | -<BR> 831 | -<BR> 832 | -<BR> 833 | 3105P/3106P<BR> 834 | 3105W/3106W<BR> 835 | 3105X/3106X<BR> 836 | 3105Y/3106Y<BR> 837 | 3105Z/3105Z<BR> 838 | 3102P<BR> 839 | 3102W<BR> 840 | 3102X<BR> 841 | 3102Y<BR> 842 | 3102Z<BR></FONT> 843 | </TD> 844 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 845 | -<BR> 846 | -<BR> 847 | -<BR> 848 | -<BR> 849 | -<BR> 850 | -<BR> 851 | -<BR> 852 | -<BR> 853 | -<BR> 854 | -<BR> 855 | -<BR> 856 | -<BR> 857 | -<BR> 858 | -<BR> 859 | -<BR> 860 | -<BR> 861 | -<BR> 862 | -<BR> 863 | -<BR> 864 | -<BR> 865 | -<BR> 866 | -<BR> 867 | EVMCBG<BR> 868 | EVMCCG<BR> 869 | -<BR> 870 | -<BR> 871 | -<BR> 872 | -<BR> 873 | -<BR> 874 | -<BR> 875 | -<BR> 876 | -<BR></FONT> 877 | </TD> 878 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 879 | 55-1-X<BR> 880 | 55-4-X<BR> 881 | 55-3-X<BR> 882 | 55-2-X<BR> 883 | -<BR> 884 | -<BR> 885 | -<BR> 886 | -<BR> 887 | -<BR> 888 | -<BR> 889 | -<BR> 890 | -<BR> 891 | -<BR> 892 | -<BR> 893 | -<BR> 894 | -<BR> 895 | 50-2-X<BR> 896 | 50-4-X<BR> 897 | 50-3-X<BR> 898 | -<BR> 899 | -<BR> 900 | -<BR> 901 | 64P<BR> 902 | 64W<BR> 903 | 64X<BR> 904 | 64Y<BR> 905 | 64Z<BR> 906 | -<BR> 907 | -<BR> 908 | -<BR> 909 | -<BR> 910 | -<BR></FONT> 911 | </TD> 912 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 913 | RT/RTR22<BR> 914 | RT/RTR22<BR> 915 | RT/RTR22<BR> 916 | RT/RTR22<BR> 917 | RJ/RJR22<BR> 918 | RJ/RJR22<BR> 919 | RJ/RJR22<BR> 920 | RT/RTR26<BR> 921 | RT/RTR26<BR> 922 | RT/RTR26<BR> 923 | RJ/RJR26<BR> 924 | RJ/RJR26<BR> 925 | RJ/RJR26<BR> 926 | RJ/RJR26<BR> 927 | RJ/RJR26<BR> 928 | RJ/RJR26<BR> 929 | RT/RTR24<BR> 930 | RT/RTR24<BR> 931 | RT/RTR24<BR> 932 | RJ/RJR24<BR> 933 | RJ/RJR24<BR> 934 | RJ/RJR24<BR> 935 | RJ/RJR24<BR> 936 | RJ/RJR24<BR> 937 | RJ/RJR24<BR> 938 | -<BR> 939 | -<BR> 940 | -<BR> 941 | -<BR> 942 | -<BR> 943 | -<BR> 944 | -<BR></FONT> 945 | </TD> 946 | </TR> 947 | <TR> 948 | <TD COLSPAN=8>&nbsp; 949 | </TD> 950 | </TR> 951 | <TR> 952 | <TD COLSPAN=8> 953 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 954 | </TD> 955 | </TR> 956 | <TR> 957 | <TD ALIGN=CENTER> 958 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 959 | </TD> 960 | <TD ALIGN=CENTER> 961 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 962 | </TD> 963 | <TD ALIGN=CENTER> 964 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 965 | </TD> 966 | <TD ALIGN=CENTER> 967 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 968 | </TD> 969 | <TD ALIGN=CENTER> 970 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 971 | </TD> 972 | <TD ALIGN=CENTER> 973 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 974 | </TD> 975 | <TD ALIGN=CENTER> 976 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 977 | </TD> 978 | <TD ALIGN=CENTER> 979 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 980 | </TD> 981 | </TR> 982 | <TR> 983 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 984 | 3323P<BR> 985 | 3323S<BR> 986 | 3323W<BR> 987 | 3329H<BR> 988 | 3329P<BR> 989 | 3329W<BR> 990 | 3339H<BR> 991 | 3339P<BR> 992 | 3339W<BR> 993 | 3352E<BR> 994 | 3352H<BR> 995 | 3352K<BR> 996 | 3352P<BR> 997 | 3352T<BR> 998 | 3352V<BR> 999 | 3352W<BR> 1000 | 3362H<BR> 1001 | 3362M<BR> 1002 | 3362P<BR> 1003 | 3362R<BR> 1004 | 3362S<BR> 1005 | 3362U<BR> 1006 | 3362W<BR> 1007 | 3362X<BR> 1008 | 3386B<BR> 1009 | 3386C<BR> 1010 | 3386F<BR> 1011 | 3386H<BR> 1012 | 3386K<BR> 1013 | 3386M<BR> 1014 | 3386P<BR> 1015 | 3386S<BR> 1016 | 3386W<BR> 1017 | 3386X<BR></FONT> 1018 | </TD> 1019 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1020 | 25P<BR> 1021 | 25S<BR> 1022 | 25RX<BR> 1023 | 82P<BR> 1024 | 82M<BR> 1025 | 82PA<BR> 1026 | -<BR> 1027 | -<BR> 1028 | -<BR> 1029 | 91E<BR> 1030 | 91X<BR> 1031 | 91T<BR> 1032 | 91B<BR> 1033 | 91A<BR> 1034 | 91V<BR> 1035 | 91W<BR> 1036 | 25W<BR> 1037 | 25V<BR> 1038 | 25P<BR> 1039 | -<BR> 1040 | 25S<BR> 1041 | 25U<BR> 1042 | 25RX<BR> 1043 | 25X<BR> 1044 | 72XW<BR> 1045 | 72XL<BR> 1046 | 72PM<BR> 1047 | 72RX<BR> 1048 | -<BR> 1049 | 72PX<BR> 1050 | 72P<BR> 1051 | 72RXW<BR> 1052 | 72RXL<BR> 1053 | 72X<BR></FONT> 1054 | </TD> 1055 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1056 | -<BR> 1057 | -<BR> 1058 | -<BR> 1059 | T7YB<BR> 1060 | T7YA<BR> 1061 | -<BR> 1062 | -<BR> 1063 | -<BR> 1064 | -<BR> 1065 | -<BR> 1066 | -<BR> 1067 | -<BR> 1068 | -<BR> 1069 | -<BR> 1070 | -<BR> 1071 | -<BR> 1072 | -<BR> 1073 | TXD<BR> 1074 | TYA<BR> 1075 | TYP<BR> 1076 | -<BR> 1077 | TYD<BR> 1078 | TX<BR> 1079 | -<BR> 1080 | 150SX<BR> 1081 | 100SX<BR> 1082 | 102T<BR> 1083 | 101S<BR> 1084 | 190T<BR> 1085 | 150TX<BR> 1086 | 101<BR> 1087 | -<BR> 1088 | -<BR> 1089 | 101SX<BR></FONT> 1090 | </TD> 1091 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1092 | ET6P<BR> 1093 | ET6S<BR> 1094 | ET6X<BR> 1095 | RJ-6W/8014EMW<BR> 1096 | RJ-6P/8014EMP<BR> 1097 | RJ-6X/8014EMX<BR> 1098 | TM7W<BR> 1099 | TM7P<BR> 1100 | TM7X<BR> 1101 | -<BR> 1102 | 8017SMS<BR> 1103 | -<BR> 1104 | 8017SMB<BR> 1105 | 8017SMA<BR> 1106 | -<BR> 1107 | -<BR> 1108 | CT-6W<BR> 1109 | CT-6H<BR> 1110 | CT-6P<BR> 1111 | CT-6R<BR> 1112 | -<BR> 1113 | CT-6V<BR> 1114 | CT-6X<BR> 1115 | -<BR> 1116 | -<BR> 1117 | 8038EKV<BR> 1118 | -<BR> 1119 | 8038EKX<BR> 1120 | -<BR> 1121 | -<BR> 1122 | 8038EKP<BR> 1123 | 8038EKZ<BR> 1124 | 8038EKW<BR> 1125 | -<BR></FONT> 1126 | </TD> 1127 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1128 | -<BR> 1129 | -<BR> 1130 | -<BR> 1131 | 3321H<BR> 1132 | 3321P<BR> 1133 | 3321N<BR> 1134 | 1102H<BR> 1135 | 1102P<BR> 1136 | 1102T<BR> 1137 | RVA0911V304A<BR> 1138 | -<BR> 1139 | RVA0911H413A<BR> 1140 | RVG0707V100A<BR> 1141 | RVA0607V(H)306A<BR> 1142 | RVA1214H213A<BR> 1143 | -<BR> 1144 | -<BR> 1145 | -<BR> 1146 | -<BR> 1147 | -<BR> 1148 | -<BR> 1149 | -<BR> 1150 | -<BR> 1151 | -<BR> 1152 | 3104B<BR> 1153 | 3104C<BR> 1154 | 3104F<BR> 1155 | 3104H<BR> 1156 | -<BR> 1157 | 3104M<BR> 1158 | 3104P<BR> 1159 | 3104S<BR> 1160 | 3104W<BR> 1161 | 3104X<BR></FONT> 1162 | </TD> 1163 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1164 | EVMQ0G<BR> 1165 | EVMQIG<BR> 1166 | EVMQ3G<BR> 1167 | EVMS0G<BR> 1168 | EVMQ0G<BR> 1169 | EVMG0G<BR> 1170 | -<BR> 1171 | -<BR> 1172 | -<BR> 1173 | EVMK4GA00B<BR> 1174 | EVM30GA00B<BR> 1175 | EVMK0GA00B<BR> 1176 | EVM38GA00B<BR> 1177 | EVMB6<BR> 1178 | EVLQ0<BR> 1179 | -<BR> 1180 | EVMMSG<BR> 1181 | EVMMBG<BR> 1182 | EVMMAG<BR> 1183 | -<BR> 1184 | -<BR> 1185 | EVMMCS<BR> 1186 | -<BR> 1187 | -<BR> 1188 | -<BR> 1189 | -<BR> 1190 | -<BR> 1191 | EVMM1<BR> 1192 | -<BR> 1193 | -<BR> 1194 | EVMM0<BR> 1195 | -<BR> 1196 | -<BR> 1197 | EVMM3<BR></FONT> 1198 | </TD> 1199 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1200 | -<BR> 1201 | -<BR> 1202 | -<BR> 1203 | 62-3-1<BR> 1204 | 62-1-2<BR> 1205 | -<BR> 1206 | -<BR> 1207 | -<BR> 1208 | -<BR> 1209 | -<BR> 1210 | -<BR> 1211 | -<BR> 1212 | -<BR> 1213 | -<BR> 1214 | -<BR> 1215 | -<BR> 1216 | 67R<BR> 1217 | -<BR> 1218 | 67P<BR> 1219 | -<BR> 1220 | -<BR> 1221 | -<BR> 1222 | -<BR> 1223 | 67X<BR> 1224 | 63V<BR> 1225 | 63S<BR> 1226 | 63M<BR> 1227 | -<BR> 1228 | -<BR> 1229 | 63H<BR> 1230 | 63P<BR> 1231 | -<BR> 1232 | -<BR> 1233 | 63X<BR></FONT> 1234 | </TD> 1235 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1236 | -<BR> 1237 | -<BR> 1238 | -<BR> 1239 | RJ/RJR50<BR> 1240 | RJ/RJR50<BR> 1241 | RJ/RJR50<BR> 1242 | -<BR> 1243 | -<BR> 1244 | -<BR> 1245 | -<BR> 1246 | -<BR> 1247 | -<BR> 1248 | -<BR> 1249 | -<BR> 1250 | -<BR> 1251 | -<BR> 1252 | -<BR> 1253 | -<BR> 1254 | -<BR> 1255 | -<BR> 1256 | -<BR> 1257 | -<BR> 1258 | -<BR> 1259 | -<BR> 1260 | -<BR> 1261 | -<BR> 1262 | -<BR> 1263 | -<BR> 1264 | -<BR> 1265 | -<BR> 1266 | -<BR> 1267 | -<BR> 1268 | -<BR> 1269 | -<BR></FONT> 1270 | </TD> 1271 | </TR> 1272 | </TABLE> 1273 | <P>&nbsp;<P> 1274 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3> 1275 | <TR> 1276 | <TD COLSPAN=7> 1277 | <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT> 1278 | <P> 1279 | <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT> 1280 | </TD> 1281 | </TR> 1282 | <TR> 1283 | <TD> 1284 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1285 | </TD> 1286 | <TD> 1287 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1288 | </TD> 1289 | <TD> 1290 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1291 | </TD> 1292 | <TD> 1293 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1294 | </TD> 1295 | <TD> 1296 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1297 | </TD> 1298 | <TD> 1299 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1300 | </TD> 1301 | <TD> 1302 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1303 | </TD> 1304 | </TR> 1305 | <TR> 1306 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1307 | 3224G<BR> 1308 | 3224J<BR> 1309 | 3224W<BR> 1310 | 3269P<BR> 1311 | 3269W<BR> 1312 | 3269X<BR></FONT> 1313 | </TD> 1314 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1315 | 44G<BR> 1316 | 44J<BR> 1317 | 44W<BR> 1318 | 84P<BR> 1319 | 84W<BR> 1320 | 84X<BR></FONT> 1321 | </TD> 1322 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1323 | -<BR> 1324 | -<BR> 1325 | -<BR> 1326 | ST63Z<BR> 1327 | ST63Y<BR> 1328 | -<BR></FONT> 1329 | </TD> 1330 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1331 | -<BR> 1332 | -<BR> 1333 | -<BR> 1334 | ST5P<BR> 1335 | ST5W<BR> 1336 | ST5X<BR></FONT> 1337 | </TD> 1338 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1339 | -<BR> 1340 | -<BR> 1341 | -<BR> 1342 | -<BR> 1343 | -<BR> 1344 | -<BR></FONT> 1345 | </TD> 1346 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1347 | -<BR> 1348 | -<BR> 1349 | -<BR> 1350 | -<BR> 1351 | -<BR> 1352 | -<BR></FONT> 1353 | </TD> 1354 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1355 | -<BR> 1356 | -<BR> 1357 | -<BR> 1358 | -<BR> 1359 | -<BR> 1360 | -<BR></FONT> 1361 | </TD> 1362 | </TR> 1363 | <TR> 1364 | <TD COLSPAN=7>&nbsp; 1365 | </TD> 1366 | </TR> 1367 | <TR> 1368 | <TD COLSPAN=7> 1369 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 1370 | </TD> 1371 | </TR> 1372 | <TR> 1373 | <TD> 1374 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1375 | </TD> 1376 | <TD> 1377 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1378 | </TD> 1379 | <TD> 1380 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1381 | </TD> 1382 | <TD> 1383 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1384 | </TD> 1385 | <TD> 1386 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1387 | </TD> 1388 | <TD> 1389 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1390 | </TD> 1391 | <TD> 1392 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1393 | </TD> 1394 | </TR> 1395 | <TR> 1396 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1397 | 3314G<BR> 1398 | 3314J<BR> 1399 | 3364A/B<BR> 1400 | 3364C/D<BR> 1401 | 3364W/X<BR> 1402 | 3313G<BR> 1403 | 3313J<BR></FONT> 1404 | </TD> 1405 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1406 | 23B<BR> 1407 | 23A<BR> 1408 | 21X<BR> 1409 | 21W<BR> 1410 | -<BR> 1411 | 22B<BR> 1412 | 22A<BR></FONT> 1413 | </TD> 1414 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1415 | ST5YL/ST53YL<BR> 1416 | ST5YJ/5T53YJ<BR> 1417 | ST-23A<BR> 1418 | ST-22B<BR> 1419 | ST-22<BR> 1420 | -<BR> 1421 | -<BR></FONT> 1422 | </TD> 1423 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1424 | ST-4B<BR> 1425 | ST-4A<BR> 1426 | -<BR> 1427 | -<BR> 1428 | -<BR> 1429 | ST-3B<BR> 1430 | ST-3A<BR></FONT> 1431 | </TD> 1432 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1433 | -<BR> 1434 | EVM-6YS<BR> 1435 | EVM-1E<BR> 1436 | EVM-1G<BR> 1437 | EVM-1D<BR> 1438 | -<BR> 1439 | -<BR></FONT> 1440 | </TD> 1441 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1442 | G4B<BR> 1443 | G4A<BR> 1444 | TR04-3S1<BR> 1445 | TRG04-2S1<BR> 1446 | -<BR> 1447 | -<BR> 1448 | -<BR></FONT> 1449 | </TD> 1450 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1451 | -<BR> 1452 | -<BR> 1453 | DVR-43A<BR> 1454 | CVR-42C<BR> 1455 | CVR-42A/C<BR> 1456 | -<BR> 1457 | -<BR></FONT> 1458 | </TD> 1459 | </TR> 1460 | </TABLE> 1461 | <P> 1462 | <FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT> 1463 | <P> 1464 | 1465 | &nbsp; 1466 | <P> 1467 | </td> 1468 | </tr> 1469 | </table> 1470 | 1471 | 1472 | <b>CAPACITOR</b><p> 1473 | 1474 | 1475 | 1476 | 1477 | 1478 | 1479 | 1480 | 1481 | >NAME 1482 | >VALUE 1483 | 1484 | 1485 | 1486 | 1487 | 1488 | <b>RESISTOR</b><p> 1489 | 1490 | 1491 | 1492 | 1493 | 1494 | 1495 | 1496 | 1497 | >NAME 1498 | >VALUE 1499 | 1500 | 1501 | 1502 | 1503 | 1504 | 1505 | 1506 | 1507 | 1508 | <b>SOT-23</b> 1509 | 1510 | 1511 | 1512 | 1513 | 1514 | 1515 | 1516 | 1517 | 1518 | 1519 | >NAME 1520 | >VALUE 1521 | 1522 | 1523 | <b>SMALL OUTLINE INTEGRATED CIRCUIT</b> 1524 | 1525 | 1526 | 1527 | 1528 | 1529 | 1530 | 1531 | 1532 | 1533 | 1534 | 1535 | 1536 | 1537 | 1538 | 1539 | >NAME 1540 | >VALUE 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 | <h3>SparkFun Electronics' preferred foot prints</h3> 1568 | In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br> 1569 | 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. 1570 | <br><br> 1571 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 1572 | <br><br> 1573 | 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. 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 | >VALUE 1602 | >NAME 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 | <b>EAGLE Design Rules</b> 1632 | <p> 1633 | The default Design Rules have been set to cover 1634 | a wide range of applications. Your particular design 1635 | may have different requirements, so please make the 1636 | necessary adjustments and save your customized 1637 | design rules under a new name. 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 | 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 | Since Version 6.2.2 text objects can contain more than one line, 2171 | which will not be processed correctly with this version. 2172 | 2173 | 2174 | 2175 | -------------------------------------------------------------------------------- /eagle/CAN-Simulator_v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloop/simulator/03f9f456bc7db1a8a38d4b285fff29964a44dfe3/eagle/CAN-Simulator_v1.1.pdf -------------------------------------------------------------------------------- /eagle/CAN-Simulator_v1.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 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | V1 166 | 167 | 168 | 169 | 170 | 171 | 172 | Raspberry Pi 173 | CAN Simulator 174 | Julien Vanier 175 | VREG 176 | CANL 177 | CANH 178 | 12V GND 5V 179 | Pi GPIO 180 | OBD 181 | 182 | 183 | 184 | <h3>SparkFun Electronics' preferred foot prints</h3> 185 | In this library you'll find boards and modules: Arduino footprints, breadboards, non-RF modules, etc.<br><br> 186 | 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. 187 | <br><br> 188 | <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. 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | >VALUE 212 | >NAME 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 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 | 262 | 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 | <h3>SparkFun Electronics' preferred foot prints</h3> 297 | In this library you'll find non-functional items- supply symbols, logos, notations, frame blocks, etc.<br><br> 298 | 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. 299 | <br><br> 300 | <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. 301 | 302 | 303 | Released under the Creative Commons Attribution Share-Alike 4.0 License 304 | https://creativecommons.org/licenses/by-sa/4.0/ 305 | Designed by: 306 | 307 | 308 | 309 | 310 | <h3>SparkFun Electronics' preferred foot prints</h3> 311 | 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> 312 | 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. 313 | <br><br> 314 | <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. 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | <h3>SparkFun Electronics' preferred foot prints</h3> 328 | In this library you'll find all manner of digital ICs- microcontrollers, memory chips, logic chips, FPGAs, etc.<br><br> 329 | 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. 330 | <br><br> 331 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 332 | <br><br> 333 | 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. 334 | 335 | 336 | <B>Small Outline Wide Plastic Gull Wing</B><p> 337 | 300-mil body, package type SO 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | >NAME 380 | >VALUE 381 | 382 | 383 | 384 | 385 | <h3>SparkFun Electronics' preferred foot prints</h3> 386 | In this library you'll find crystals and oscillators and other things that go "tick".<br><br> 387 | 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. 388 | <br><br> 389 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 390 | <br><br> 391 | 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. 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | >NAME 403 | >VALUE 404 | 405 | 406 | 407 | 408 | <h3>SparkFun Electronics' preferred foot prints</h3> 409 | In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br> 410 | 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. 411 | <br><br> 412 | <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. 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | <b>Resistors, Capacitors, Inductors</b><p> 424 | Based on the previous libraries: 425 | <ul> 426 | <li>r.lbr 427 | <li>cap.lbr 428 | <li>cap-fe.lbr 429 | <li>captant.lbr 430 | <li>polcap.lbr 431 | <li>ipc-smd.lbr 432 | </ul> 433 | All SMD packages are defined according to the IPC specifications and CECC<p> 434 | <author>Created by librarian@cadsoft.de</author><p> 435 | <p> 436 | for Electrolyt Capacitors see also :<p> 437 | www.bccomponents.com <p> 438 | www.panasonic.com<p> 439 | www.kemet.com<p> 440 | http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b> 441 | <p> 442 | for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p> 443 | 444 | <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0> 445 | <tr valign="top"> 446 | 447 | <! <td width="10">&nbsp;</td> 448 | <td width="90%"> 449 | 450 | <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b> 451 | <P> 452 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2> 453 | <TR> 454 | <TD COLSPAN=8> 455 | <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT> 456 | </TD> 457 | </TR> 458 | <TR> 459 | <TD ALIGN=CENTER> 460 | <B> 461 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT> 462 | </B> 463 | </TD> 464 | <TD ALIGN=CENTER> 465 | <B> 466 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT> 467 | </B> 468 | </TD> 469 | <TD ALIGN=CENTER> 470 | <B> 471 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT> 472 | </B> 473 | </TD> 474 | <TD ALIGN=CENTER> 475 | <B> 476 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT> 477 | </B> 478 | </TD> 479 | <TD ALIGN=CENTER> 480 | <B> 481 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT> 482 | </B> 483 | </TD> 484 | <TD ALIGN=CENTER> 485 | <B> 486 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT> 487 | </B> 488 | </TD> 489 | <TD ALIGN=CENTER> 490 | <B> 491 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT> 492 | </B> 493 | </TD> 494 | <TD ALIGN=CENTER> 495 | <B> 496 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT> 497 | </B> 498 | </TD><TD>&nbsp;</TD> 499 | </TR> 500 | <TR> 501 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 > 502 | 3005P<BR> 503 | 3006P<BR> 504 | 3006W<BR> 505 | 3006Y<BR> 506 | 3009P<BR> 507 | 3009W<BR> 508 | 3009Y<BR> 509 | 3057J<BR> 510 | 3057L<BR> 511 | 3057P<BR> 512 | 3057Y<BR> 513 | 3059J<BR> 514 | 3059L<BR> 515 | 3059P<BR> 516 | 3059Y<BR></FONT> 517 | </TD> 518 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 519 | -<BR> 520 | 89P<BR> 521 | 89W<BR> 522 | 89X<BR> 523 | 89PH<BR> 524 | 76P<BR> 525 | 89XH<BR> 526 | 78SLT<BR> 527 | 78L&nbsp;ALT<BR> 528 | 56P&nbsp;ALT<BR> 529 | 78P&nbsp;ALT<BR> 530 | T8S<BR> 531 | 78L<BR> 532 | 56P<BR> 533 | 78P<BR></FONT> 534 | </TD> 535 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 536 | -<BR> 537 | T18/784<BR> 538 | 783<BR> 539 | 781<BR> 540 | -<BR> 541 | -<BR> 542 | -<BR> 543 | 2199<BR> 544 | 1697/1897<BR> 545 | 1680/1880<BR> 546 | 2187<BR> 547 | -<BR> 548 | -<BR> 549 | -<BR> 550 | -<BR></FONT> 551 | </TD> 552 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 553 | -<BR> 554 | 8035EKP/CT20/RJ-20P<BR> 555 | -<BR> 556 | RJ-20X<BR> 557 | -<BR> 558 | -<BR> 559 | -<BR> 560 | 1211L<BR> 561 | 8012EKQ&nbsp;ALT<BR> 562 | 8012EKR&nbsp;ALT<BR> 563 | 1211P<BR> 564 | 8012EKJ<BR> 565 | 8012EKL<BR> 566 | 8012EKQ<BR> 567 | 8012EKR<BR></FONT> 568 | </TD> 569 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 570 | -<BR> 571 | 2101P<BR> 572 | 2101W<BR> 573 | 2101Y<BR> 574 | -<BR> 575 | -<BR> 576 | -<BR> 577 | -<BR> 578 | -<BR> 579 | -<BR> 580 | -<BR> 581 | -<BR> 582 | 2102L<BR> 583 | 2102S<BR> 584 | 2102Y<BR></FONT> 585 | </TD> 586 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 587 | -<BR> 588 | EVMCOG<BR> 589 | -<BR> 590 | -<BR> 591 | -<BR> 592 | -<BR> 593 | -<BR> 594 | -<BR> 595 | -<BR> 596 | -<BR> 597 | -<BR> 598 | -<BR> 599 | -<BR> 600 | -<BR> 601 | -<BR></FONT> 602 | </TD> 603 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 604 | -<BR> 605 | 43P<BR> 606 | 43W<BR> 607 | 43Y<BR> 608 | -<BR> 609 | -<BR> 610 | -<BR> 611 | -<BR> 612 | 40L<BR> 613 | 40P<BR> 614 | 40Y<BR> 615 | 70Y-T602<BR> 616 | 70L<BR> 617 | 70P<BR> 618 | 70Y<BR></FONT> 619 | </TD> 620 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 621 | -<BR> 622 | -<BR> 623 | -<BR> 624 | -<BR> 625 | -<BR> 626 | -<BR> 627 | -<BR> 628 | -<BR> 629 | RT/RTR12<BR> 630 | RT/RTR12<BR> 631 | RT/RTR12<BR> 632 | -<BR> 633 | RJ/RJR12<BR> 634 | RJ/RJR12<BR> 635 | RJ/RJR12<BR></FONT> 636 | </TD> 637 | </TR> 638 | <TR> 639 | <TD COLSPAN=8>&nbsp; 640 | </TD> 641 | </TR> 642 | <TR> 643 | <TD COLSPAN=8> 644 | <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT> 645 | </TD> 646 | </TR> 647 | <TR> 648 | <TD ALIGN=CENTER> 649 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 650 | </TD> 651 | <TD ALIGN=CENTER> 652 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 653 | </TD> 654 | <TD ALIGN=CENTER> 655 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 656 | </TD> 657 | <TD ALIGN=CENTER> 658 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 659 | </TD> 660 | <TD ALIGN=CENTER> 661 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 662 | </TD> 663 | <TD ALIGN=CENTER> 664 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 665 | </TD> 666 | <TD ALIGN=CENTER> 667 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 668 | </TD> 669 | <TD ALIGN=CENTER> 670 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 671 | </TD> 672 | </TR> 673 | <TR> 674 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 675 | 3250L<BR> 676 | 3250P<BR> 677 | 3250W<BR> 678 | 3250X<BR> 679 | 3252P<BR> 680 | 3252W<BR> 681 | 3252X<BR> 682 | 3260P<BR> 683 | 3260W<BR> 684 | 3260X<BR> 685 | 3262P<BR> 686 | 3262W<BR> 687 | 3262X<BR> 688 | 3266P<BR> 689 | 3266W<BR> 690 | 3266X<BR> 691 | 3290H<BR> 692 | 3290P<BR> 693 | 3290W<BR> 694 | 3292P<BR> 695 | 3292W<BR> 696 | 3292X<BR> 697 | 3296P<BR> 698 | 3296W<BR> 699 | 3296X<BR> 700 | 3296Y<BR> 701 | 3296Z<BR> 702 | 3299P<BR> 703 | 3299W<BR> 704 | 3299X<BR> 705 | 3299Y<BR> 706 | 3299Z<BR></FONT> 707 | </TD> 708 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 709 | -<BR> 710 | 66P&nbsp;ALT<BR> 711 | 66W&nbsp;ALT<BR> 712 | 66X&nbsp;ALT<BR> 713 | 66P&nbsp;ALT<BR> 714 | 66W&nbsp;ALT<BR> 715 | 66X&nbsp;ALT<BR> 716 | -<BR> 717 | 64W&nbsp;ALT<BR> 718 | -<BR> 719 | 64P&nbsp;ALT<BR> 720 | 64W&nbsp;ALT<BR> 721 | 64X&nbsp;ALT<BR> 722 | 64P<BR> 723 | 64W<BR> 724 | 64X<BR> 725 | 66X&nbsp;ALT<BR> 726 | 66P&nbsp;ALT<BR> 727 | 66W&nbsp;ALT<BR> 728 | 66P<BR> 729 | 66W<BR> 730 | 66X<BR> 731 | 67P<BR> 732 | 67W<BR> 733 | 67X<BR> 734 | 67Y<BR> 735 | 67Z<BR> 736 | 68P<BR> 737 | 68W<BR> 738 | 68X<BR> 739 | 67Y&nbsp;ALT<BR> 740 | 67Z&nbsp;ALT<BR></FONT> 741 | </TD> 742 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 743 | 5050<BR> 744 | 5091<BR> 745 | 5080<BR> 746 | 5087<BR> 747 | -<BR> 748 | -<BR> 749 | -<BR> 750 | -<BR> 751 | -<BR> 752 | -<BR> 753 | -<BR> 754 | T63YB<BR> 755 | T63XB<BR> 756 | -<BR> 757 | -<BR> 758 | -<BR> 759 | 5887<BR> 760 | 5891<BR> 761 | 5880<BR> 762 | -<BR> 763 | -<BR> 764 | -<BR> 765 | T93Z<BR> 766 | T93YA<BR> 767 | T93XA<BR> 768 | T93YB<BR> 769 | T93XB<BR> 770 | -<BR> 771 | -<BR> 772 | -<BR> 773 | -<BR> 774 | -<BR></FONT> 775 | </TD> 776 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 777 | -<BR> 778 | -<BR> 779 | -<BR> 780 | -<BR> 781 | -<BR> 782 | -<BR> 783 | -<BR> 784 | -<BR> 785 | -<BR> 786 | -<BR> 787 | 8026EKP<BR> 788 | 8026EKW<BR> 789 | 8026EKM<BR> 790 | 8026EKP<BR> 791 | 8026EKB<BR> 792 | 8026EKM<BR> 793 | 1309X<BR> 794 | 1309P<BR> 795 | 1309W<BR> 796 | 8024EKP<BR> 797 | 8024EKW<BR> 798 | 8024EKN<BR> 799 | RJ-9P/CT9P<BR> 800 | RJ-9W<BR> 801 | RJ-9X<BR> 802 | -<BR> 803 | -<BR> 804 | -<BR> 805 | -<BR> 806 | -<BR> 807 | -<BR> 808 | -<BR></FONT> 809 | </TD> 810 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 811 | -<BR> 812 | -<BR> 813 | -<BR> 814 | -<BR> 815 | -<BR> 816 | -<BR> 817 | -<BR> 818 | -<BR> 819 | -<BR> 820 | -<BR> 821 | 3103P<BR> 822 | 3103Y<BR> 823 | 3103Z<BR> 824 | 3103P<BR> 825 | 3103Y<BR> 826 | 3103Z<BR> 827 | -<BR> 828 | -<BR> 829 | -<BR> 830 | -<BR> 831 | -<BR> 832 | -<BR> 833 | 3105P/3106P<BR> 834 | 3105W/3106W<BR> 835 | 3105X/3106X<BR> 836 | 3105Y/3106Y<BR> 837 | 3105Z/3105Z<BR> 838 | 3102P<BR> 839 | 3102W<BR> 840 | 3102X<BR> 841 | 3102Y<BR> 842 | 3102Z<BR></FONT> 843 | </TD> 844 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 845 | -<BR> 846 | -<BR> 847 | -<BR> 848 | -<BR> 849 | -<BR> 850 | -<BR> 851 | -<BR> 852 | -<BR> 853 | -<BR> 854 | -<BR> 855 | -<BR> 856 | -<BR> 857 | -<BR> 858 | -<BR> 859 | -<BR> 860 | -<BR> 861 | -<BR> 862 | -<BR> 863 | -<BR> 864 | -<BR> 865 | -<BR> 866 | -<BR> 867 | EVMCBG<BR> 868 | EVMCCG<BR> 869 | -<BR> 870 | -<BR> 871 | -<BR> 872 | -<BR> 873 | -<BR> 874 | -<BR> 875 | -<BR> 876 | -<BR></FONT> 877 | </TD> 878 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 879 | 55-1-X<BR> 880 | 55-4-X<BR> 881 | 55-3-X<BR> 882 | 55-2-X<BR> 883 | -<BR> 884 | -<BR> 885 | -<BR> 886 | -<BR> 887 | -<BR> 888 | -<BR> 889 | -<BR> 890 | -<BR> 891 | -<BR> 892 | -<BR> 893 | -<BR> 894 | -<BR> 895 | 50-2-X<BR> 896 | 50-4-X<BR> 897 | 50-3-X<BR> 898 | -<BR> 899 | -<BR> 900 | -<BR> 901 | 64P<BR> 902 | 64W<BR> 903 | 64X<BR> 904 | 64Y<BR> 905 | 64Z<BR> 906 | -<BR> 907 | -<BR> 908 | -<BR> 909 | -<BR> 910 | -<BR></FONT> 911 | </TD> 912 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 913 | RT/RTR22<BR> 914 | RT/RTR22<BR> 915 | RT/RTR22<BR> 916 | RT/RTR22<BR> 917 | RJ/RJR22<BR> 918 | RJ/RJR22<BR> 919 | RJ/RJR22<BR> 920 | RT/RTR26<BR> 921 | RT/RTR26<BR> 922 | RT/RTR26<BR> 923 | RJ/RJR26<BR> 924 | RJ/RJR26<BR> 925 | RJ/RJR26<BR> 926 | RJ/RJR26<BR> 927 | RJ/RJR26<BR> 928 | RJ/RJR26<BR> 929 | RT/RTR24<BR> 930 | RT/RTR24<BR> 931 | RT/RTR24<BR> 932 | RJ/RJR24<BR> 933 | RJ/RJR24<BR> 934 | RJ/RJR24<BR> 935 | RJ/RJR24<BR> 936 | RJ/RJR24<BR> 937 | RJ/RJR24<BR> 938 | -<BR> 939 | -<BR> 940 | -<BR> 941 | -<BR> 942 | -<BR> 943 | -<BR> 944 | -<BR></FONT> 945 | </TD> 946 | </TR> 947 | <TR> 948 | <TD COLSPAN=8>&nbsp; 949 | </TD> 950 | </TR> 951 | <TR> 952 | <TD COLSPAN=8> 953 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 954 | </TD> 955 | </TR> 956 | <TR> 957 | <TD ALIGN=CENTER> 958 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 959 | </TD> 960 | <TD ALIGN=CENTER> 961 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 962 | </TD> 963 | <TD ALIGN=CENTER> 964 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 965 | </TD> 966 | <TD ALIGN=CENTER> 967 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 968 | </TD> 969 | <TD ALIGN=CENTER> 970 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 971 | </TD> 972 | <TD ALIGN=CENTER> 973 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 974 | </TD> 975 | <TD ALIGN=CENTER> 976 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 977 | </TD> 978 | <TD ALIGN=CENTER> 979 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 980 | </TD> 981 | </TR> 982 | <TR> 983 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 984 | 3323P<BR> 985 | 3323S<BR> 986 | 3323W<BR> 987 | 3329H<BR> 988 | 3329P<BR> 989 | 3329W<BR> 990 | 3339H<BR> 991 | 3339P<BR> 992 | 3339W<BR> 993 | 3352E<BR> 994 | 3352H<BR> 995 | 3352K<BR> 996 | 3352P<BR> 997 | 3352T<BR> 998 | 3352V<BR> 999 | 3352W<BR> 1000 | 3362H<BR> 1001 | 3362M<BR> 1002 | 3362P<BR> 1003 | 3362R<BR> 1004 | 3362S<BR> 1005 | 3362U<BR> 1006 | 3362W<BR> 1007 | 3362X<BR> 1008 | 3386B<BR> 1009 | 3386C<BR> 1010 | 3386F<BR> 1011 | 3386H<BR> 1012 | 3386K<BR> 1013 | 3386M<BR> 1014 | 3386P<BR> 1015 | 3386S<BR> 1016 | 3386W<BR> 1017 | 3386X<BR></FONT> 1018 | </TD> 1019 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1020 | 25P<BR> 1021 | 25S<BR> 1022 | 25RX<BR> 1023 | 82P<BR> 1024 | 82M<BR> 1025 | 82PA<BR> 1026 | -<BR> 1027 | -<BR> 1028 | -<BR> 1029 | 91E<BR> 1030 | 91X<BR> 1031 | 91T<BR> 1032 | 91B<BR> 1033 | 91A<BR> 1034 | 91V<BR> 1035 | 91W<BR> 1036 | 25W<BR> 1037 | 25V<BR> 1038 | 25P<BR> 1039 | -<BR> 1040 | 25S<BR> 1041 | 25U<BR> 1042 | 25RX<BR> 1043 | 25X<BR> 1044 | 72XW<BR> 1045 | 72XL<BR> 1046 | 72PM<BR> 1047 | 72RX<BR> 1048 | -<BR> 1049 | 72PX<BR> 1050 | 72P<BR> 1051 | 72RXW<BR> 1052 | 72RXL<BR> 1053 | 72X<BR></FONT> 1054 | </TD> 1055 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1056 | -<BR> 1057 | -<BR> 1058 | -<BR> 1059 | T7YB<BR> 1060 | T7YA<BR> 1061 | -<BR> 1062 | -<BR> 1063 | -<BR> 1064 | -<BR> 1065 | -<BR> 1066 | -<BR> 1067 | -<BR> 1068 | -<BR> 1069 | -<BR> 1070 | -<BR> 1071 | -<BR> 1072 | -<BR> 1073 | TXD<BR> 1074 | TYA<BR> 1075 | TYP<BR> 1076 | -<BR> 1077 | TYD<BR> 1078 | TX<BR> 1079 | -<BR> 1080 | 150SX<BR> 1081 | 100SX<BR> 1082 | 102T<BR> 1083 | 101S<BR> 1084 | 190T<BR> 1085 | 150TX<BR> 1086 | 101<BR> 1087 | -<BR> 1088 | -<BR> 1089 | 101SX<BR></FONT> 1090 | </TD> 1091 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1092 | ET6P<BR> 1093 | ET6S<BR> 1094 | ET6X<BR> 1095 | RJ-6W/8014EMW<BR> 1096 | RJ-6P/8014EMP<BR> 1097 | RJ-6X/8014EMX<BR> 1098 | TM7W<BR> 1099 | TM7P<BR> 1100 | TM7X<BR> 1101 | -<BR> 1102 | 8017SMS<BR> 1103 | -<BR> 1104 | 8017SMB<BR> 1105 | 8017SMA<BR> 1106 | -<BR> 1107 | -<BR> 1108 | CT-6W<BR> 1109 | CT-6H<BR> 1110 | CT-6P<BR> 1111 | CT-6R<BR> 1112 | -<BR> 1113 | CT-6V<BR> 1114 | CT-6X<BR> 1115 | -<BR> 1116 | -<BR> 1117 | 8038EKV<BR> 1118 | -<BR> 1119 | 8038EKX<BR> 1120 | -<BR> 1121 | -<BR> 1122 | 8038EKP<BR> 1123 | 8038EKZ<BR> 1124 | 8038EKW<BR> 1125 | -<BR></FONT> 1126 | </TD> 1127 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1128 | -<BR> 1129 | -<BR> 1130 | -<BR> 1131 | 3321H<BR> 1132 | 3321P<BR> 1133 | 3321N<BR> 1134 | 1102H<BR> 1135 | 1102P<BR> 1136 | 1102T<BR> 1137 | RVA0911V304A<BR> 1138 | -<BR> 1139 | RVA0911H413A<BR> 1140 | RVG0707V100A<BR> 1141 | RVA0607V(H)306A<BR> 1142 | RVA1214H213A<BR> 1143 | -<BR> 1144 | -<BR> 1145 | -<BR> 1146 | -<BR> 1147 | -<BR> 1148 | -<BR> 1149 | -<BR> 1150 | -<BR> 1151 | -<BR> 1152 | 3104B<BR> 1153 | 3104C<BR> 1154 | 3104F<BR> 1155 | 3104H<BR> 1156 | -<BR> 1157 | 3104M<BR> 1158 | 3104P<BR> 1159 | 3104S<BR> 1160 | 3104W<BR> 1161 | 3104X<BR></FONT> 1162 | </TD> 1163 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1164 | EVMQ0G<BR> 1165 | EVMQIG<BR> 1166 | EVMQ3G<BR> 1167 | EVMS0G<BR> 1168 | EVMQ0G<BR> 1169 | EVMG0G<BR> 1170 | -<BR> 1171 | -<BR> 1172 | -<BR> 1173 | EVMK4GA00B<BR> 1174 | EVM30GA00B<BR> 1175 | EVMK0GA00B<BR> 1176 | EVM38GA00B<BR> 1177 | EVMB6<BR> 1178 | EVLQ0<BR> 1179 | -<BR> 1180 | EVMMSG<BR> 1181 | EVMMBG<BR> 1182 | EVMMAG<BR> 1183 | -<BR> 1184 | -<BR> 1185 | EVMMCS<BR> 1186 | -<BR> 1187 | -<BR> 1188 | -<BR> 1189 | -<BR> 1190 | -<BR> 1191 | EVMM1<BR> 1192 | -<BR> 1193 | -<BR> 1194 | EVMM0<BR> 1195 | -<BR> 1196 | -<BR> 1197 | EVMM3<BR></FONT> 1198 | </TD> 1199 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1200 | -<BR> 1201 | -<BR> 1202 | -<BR> 1203 | 62-3-1<BR> 1204 | 62-1-2<BR> 1205 | -<BR> 1206 | -<BR> 1207 | -<BR> 1208 | -<BR> 1209 | -<BR> 1210 | -<BR> 1211 | -<BR> 1212 | -<BR> 1213 | -<BR> 1214 | -<BR> 1215 | -<BR> 1216 | 67R<BR> 1217 | -<BR> 1218 | 67P<BR> 1219 | -<BR> 1220 | -<BR> 1221 | -<BR> 1222 | -<BR> 1223 | 67X<BR> 1224 | 63V<BR> 1225 | 63S<BR> 1226 | 63M<BR> 1227 | -<BR> 1228 | -<BR> 1229 | 63H<BR> 1230 | 63P<BR> 1231 | -<BR> 1232 | -<BR> 1233 | 63X<BR></FONT> 1234 | </TD> 1235 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1236 | -<BR> 1237 | -<BR> 1238 | -<BR> 1239 | RJ/RJR50<BR> 1240 | RJ/RJR50<BR> 1241 | RJ/RJR50<BR> 1242 | -<BR> 1243 | -<BR> 1244 | -<BR> 1245 | -<BR> 1246 | -<BR> 1247 | -<BR> 1248 | -<BR> 1249 | -<BR> 1250 | -<BR> 1251 | -<BR> 1252 | -<BR> 1253 | -<BR> 1254 | -<BR> 1255 | -<BR> 1256 | -<BR> 1257 | -<BR> 1258 | -<BR> 1259 | -<BR> 1260 | -<BR> 1261 | -<BR> 1262 | -<BR> 1263 | -<BR> 1264 | -<BR> 1265 | -<BR> 1266 | -<BR> 1267 | -<BR> 1268 | -<BR> 1269 | -<BR></FONT> 1270 | </TD> 1271 | </TR> 1272 | </TABLE> 1273 | <P>&nbsp;<P> 1274 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3> 1275 | <TR> 1276 | <TD COLSPAN=7> 1277 | <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT> 1278 | <P> 1279 | <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT> 1280 | </TD> 1281 | </TR> 1282 | <TR> 1283 | <TD> 1284 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1285 | </TD> 1286 | <TD> 1287 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1288 | </TD> 1289 | <TD> 1290 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1291 | </TD> 1292 | <TD> 1293 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1294 | </TD> 1295 | <TD> 1296 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1297 | </TD> 1298 | <TD> 1299 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1300 | </TD> 1301 | <TD> 1302 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1303 | </TD> 1304 | </TR> 1305 | <TR> 1306 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1307 | 3224G<BR> 1308 | 3224J<BR> 1309 | 3224W<BR> 1310 | 3269P<BR> 1311 | 3269W<BR> 1312 | 3269X<BR></FONT> 1313 | </TD> 1314 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1315 | 44G<BR> 1316 | 44J<BR> 1317 | 44W<BR> 1318 | 84P<BR> 1319 | 84W<BR> 1320 | 84X<BR></FONT> 1321 | </TD> 1322 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1323 | -<BR> 1324 | -<BR> 1325 | -<BR> 1326 | ST63Z<BR> 1327 | ST63Y<BR> 1328 | -<BR></FONT> 1329 | </TD> 1330 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1331 | -<BR> 1332 | -<BR> 1333 | -<BR> 1334 | ST5P<BR> 1335 | ST5W<BR> 1336 | ST5X<BR></FONT> 1337 | </TD> 1338 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1339 | -<BR> 1340 | -<BR> 1341 | -<BR> 1342 | -<BR> 1343 | -<BR> 1344 | -<BR></FONT> 1345 | </TD> 1346 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1347 | -<BR> 1348 | -<BR> 1349 | -<BR> 1350 | -<BR> 1351 | -<BR> 1352 | -<BR></FONT> 1353 | </TD> 1354 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1355 | -<BR> 1356 | -<BR> 1357 | -<BR> 1358 | -<BR> 1359 | -<BR> 1360 | -<BR></FONT> 1361 | </TD> 1362 | </TR> 1363 | <TR> 1364 | <TD COLSPAN=7>&nbsp; 1365 | </TD> 1366 | </TR> 1367 | <TR> 1368 | <TD COLSPAN=7> 1369 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 1370 | </TD> 1371 | </TR> 1372 | <TR> 1373 | <TD> 1374 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1375 | </TD> 1376 | <TD> 1377 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1378 | </TD> 1379 | <TD> 1380 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1381 | </TD> 1382 | <TD> 1383 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1384 | </TD> 1385 | <TD> 1386 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1387 | </TD> 1388 | <TD> 1389 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1390 | </TD> 1391 | <TD> 1392 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1393 | </TD> 1394 | </TR> 1395 | <TR> 1396 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1397 | 3314G<BR> 1398 | 3314J<BR> 1399 | 3364A/B<BR> 1400 | 3364C/D<BR> 1401 | 3364W/X<BR> 1402 | 3313G<BR> 1403 | 3313J<BR></FONT> 1404 | </TD> 1405 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1406 | 23B<BR> 1407 | 23A<BR> 1408 | 21X<BR> 1409 | 21W<BR> 1410 | -<BR> 1411 | 22B<BR> 1412 | 22A<BR></FONT> 1413 | </TD> 1414 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1415 | ST5YL/ST53YL<BR> 1416 | ST5YJ/5T53YJ<BR> 1417 | ST-23A<BR> 1418 | ST-22B<BR> 1419 | ST-22<BR> 1420 | -<BR> 1421 | -<BR></FONT> 1422 | </TD> 1423 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1424 | ST-4B<BR> 1425 | ST-4A<BR> 1426 | -<BR> 1427 | -<BR> 1428 | -<BR> 1429 | ST-3B<BR> 1430 | ST-3A<BR></FONT> 1431 | </TD> 1432 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1433 | -<BR> 1434 | EVM-6YS<BR> 1435 | EVM-1E<BR> 1436 | EVM-1G<BR> 1437 | EVM-1D<BR> 1438 | -<BR> 1439 | -<BR></FONT> 1440 | </TD> 1441 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1442 | G4B<BR> 1443 | G4A<BR> 1444 | TR04-3S1<BR> 1445 | TRG04-2S1<BR> 1446 | -<BR> 1447 | -<BR> 1448 | -<BR></FONT> 1449 | </TD> 1450 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1451 | -<BR> 1452 | -<BR> 1453 | DVR-43A<BR> 1454 | CVR-42C<BR> 1455 | CVR-42A/C<BR> 1456 | -<BR> 1457 | -<BR></FONT> 1458 | </TD> 1459 | </TR> 1460 | </TABLE> 1461 | <P> 1462 | <FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT> 1463 | <P> 1464 | 1465 | &nbsp; 1466 | <P> 1467 | </td> 1468 | </tr> 1469 | </table> 1470 | 1471 | 1472 | <b>CAPACITOR</b><p> 1473 | 1474 | 1475 | 1476 | 1477 | 1478 | 1479 | 1480 | 1481 | >NAME 1482 | >VALUE 1483 | 1484 | 1485 | 1486 | 1487 | 1488 | <b>RESISTOR</b><p> 1489 | 1490 | 1491 | 1492 | 1493 | 1494 | 1495 | 1496 | 1497 | >NAME 1498 | >VALUE 1499 | 1500 | 1501 | 1502 | 1503 | 1504 | 1505 | 1506 | 1507 | 1508 | <b>SOT-23</b> 1509 | 1510 | 1511 | 1512 | 1513 | 1514 | 1515 | 1516 | 1517 | 1518 | 1519 | >NAME 1520 | >VALUE 1521 | 1522 | 1523 | <b>SMALL OUTLINE INTEGRATED CIRCUIT</b> 1524 | 1525 | 1526 | 1527 | 1528 | 1529 | 1530 | 1531 | 1532 | 1533 | 1534 | 1535 | 1536 | 1537 | 1538 | 1539 | >NAME 1540 | >VALUE 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 | <h3>SparkFun Electronics' preferred foot prints</h3> 1568 | In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br> 1569 | 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. 1570 | <br><br> 1571 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 1572 | <br><br> 1573 | 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. 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 | >VALUE 1602 | >NAME 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 | <b>EAGLE Design Rules</b> 1632 | <p> 1633 | The default Design Rules have been set to cover 1634 | a wide range of applications. Your particular design 1635 | may have different requirements, so please make the 1636 | necessary adjustments and save your customized 1637 | design rules under a new name. 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 | 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 | Since Version 6.2.2 text objects can contain more than one line, 2171 | which will not be processed correctly with this version. 2172 | 2173 | 2174 | 2175 | -------------------------------------------------------------------------------- /eagle/CAN-Simulator_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloop/simulator/03f9f456bc7db1a8a38d4b285fff29964a44dfe3/eagle/CAN-Simulator_v1.pdf -------------------------------------------------------------------------------- /eagle/CAN-Simulator_v1_BOM.csv: -------------------------------------------------------------------------------- 1 | Qty-1,Part References,Value,Package,Mfg Part Num,Mfg Name,VID,Vendor Part Num,Description,XREF 2 | 2,"C2, C1",0.1uF,C0805,08055C104KAT2A,AVX,DK,478-1395-1-ND,CAP CER 0.1UF 50V X7R 0805,REF20 3 | 1,"R1",4.7K,R0805,RC0805JR-0747KL,Yageo,DK,311-47KARCT-ND,RES SMD 47K OHM 5% 1/8W 0805,REF34 4 | 1,"Q1",16MHz,CRYSTAL-SMD-5X3,ABM3B-16.000MHZ-10-1-U-T,Abracon LLC,DK,300-8206-2-ND,"16MHz ±10ppm Crystal 10pF 50 Ohm -10°C ~ 60°C Surface Mount 4-SMD No Lead (DFN, LCC)",REF33 5 | 1,"C5",22pF,C0805,C0805C220J5GACTU,Kemet,DK,399-1113-1-ND,CAP CER 22PF 50V NP0 0805,REF29 6 | 1,"C7",22pF,C0805,GRM219R61A226MEA0D,Murata ,DK,490-9951-1-ND,CAP CER 22UF 10V X5R 0805,REF21 7 | 1,"R2",120,R0805,RC0603FR-07120RL,Yageo,DK,311-120HRCT-ND,RES SMD 120 OHM 1% 1/10W 0603,REF7 8 | 1,"JP1",AMP 5103308-1,2X5-SHROUDED,5103308-1,TE Connectivity AMP Connectors,DK,A33159-ND,CONN HEADER LOPRO STR 10POS GOLD,REF31 9 | 1,"CONN-JP1",BOM-ENTRY,*,1658621-1,TE Connectivity AMP Connectors,DK,AKC10H-ND,CONN IDC SKT 10POS W/POL 15 GOLD,REF32 10 | 1,"IC1",MCP2515,SO-18W,MCP2515-I/SO,Microchip,DK,MCP2515-I/SO-ND,IC CAN CONTROLLER W/SPI 18SOIC,REF30 11 | 1,"D1",PESD1CAN,SOT23,PESD1CAN-215,NXP Semiconductors,DK,568-4032-1-ND,TVS DIODE 24VWM 70VC SOT23,REF2 12 | 6,"U1, JP2, STANDOFF1, STANDOFF2, STANDOFF3, STANDOFF4",STAND-OFF,STAND-OFF,***PART# '*' NOT FOUND***,*,*,*,*,* 13 | 1,"IC2",TJA1049,SO8,TJA1049T-118,NXP Semiconductors,DK,568-8682-1-ND,IC CAN TRANSEIVER HS 8SOIC,REF16 14 | -------------------------------------------------------------------------------- /eagle/CAN-Simulator_v1_OrderUploadDigiKey.csv: -------------------------------------------------------------------------------- 1 | Digi-Key Part No.,Manufacturer Name,Mfr Part No.,Customer Reference,Qty1, 2 | *,*,*,JP2/STANDOFF1/STANDOFF2/STANDOFF3/STANDOFF4/U1,6,*** PART# '*' NOT FOUND : JP2/STANDOFF1/STANDOFF2/STANDOFF3/STANDOFF4/U1 3 | 478-1395-1-ND,AVX,08055C104KAT2A,REF20,2, 4 | AKC10H-ND,TE Connectivity AMP Connectors,1658621-1,REF32,1, 5 | A33159-ND,TE Connectivity AMP Connectors,5103308-1,REF31,1, 6 | 300-8206-2-ND,Abracon LLC,ABM3B-16.000MHZ-10-1-U-T,REF33,1, 7 | 399-1113-1-ND,Kemet,C0805C220J5GACTU,REF29,1, 8 | 490-9951-1-ND,Murata ,GRM219R61A226MEA0D,REF21,1, 9 | MCP2515-I/SO-ND,Microchip,MCP2515-I/SO,REF30,1, 10 | 568-4032-1-ND,NXP Semiconductors,PESD1CAN-215,REF2,1, 11 | 311-120HRCT-ND,Yageo,RC0603FR-07120RL,REF7,1, 12 | 311-47KARCT-ND,Yageo,RC0805JR-0747KL,REF34,1, 13 | 568-8682-1-ND,NXP Semiconductors,TJA1049T-118,REF16,1, 14 | -------------------------------------------------------------------------------- /eagle/CAN-Simulator_v1_UpdatePartNumAttributes.scr: -------------------------------------------------------------------------------- 1 | # 2 | # generated by BOM-EX v1.64 3 | # 4 | SET UNDO_LOG OFF; 5 | CHANGE DISPLAY OFF; 6 | EDIT .s1; 7 | ATTRIBUTE 'C7' 'PARTNO' 'C0805C220J5GACTU'; 8 | EDIT .s1; 9 | SET UNDO_LOG ON; 10 | -------------------------------------------------------------------------------- /simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloop/simulator/03f9f456bc7db1a8a38d4b285fff29964a44dfe3/simulator.png --------------------------------------------------------------------------------