├── .gitignore ├── LICENSE ├── README.md ├── blinkenrocket_cr2032.brd ├── blinkenrocket_cr2032.pdf ├── blinkenrocket_cr2032.sch └── blinkenrocket_cr2032_v2.brd /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore list for Eagle, a PCB layout tool 2 | 3 | # Backup files 4 | *.s#? 5 | *.b#? 6 | *.l#? 7 | 8 | # Eagle project file 9 | # It contains a serial number and references to the file structure 10 | # on your computer. 11 | # comment the following line if you want to have your project file included. 12 | eagle.epf 13 | 14 | # CAM files 15 | *.$$$ 16 | *.cmp 17 | *.ly2 18 | *.l15 19 | *.sol 20 | *.plc 21 | *.stc 22 | *.sts 23 | *.crc 24 | *.crs 25 | 26 | *.dri 27 | *.drl 28 | *.gpi 29 | *.pls 30 | 31 | *.drd 32 | *.drd.* 33 | 34 | *.info 35 | 36 | *.eps 37 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Blinkenrocket Team 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 | # Hardware 2 | This repository contains schematics, board layout and the BOM 3 | ## Expansion Headers 4 | Blinkenrocket features expansion headers which makes un-used pins available for use. Pins are broken out on standard 2.54mm pin headers (need to be soldered on separately). VCC and GND are added for convenience. If you look at the CPU on the back the layout is as follows: 5 | 6 | ``` 7 | VCC                     VCC 8 | E1 [CPU] E3 9 | E2 [CPU] E4 10 | GND                     GND 11 | ``` 12 | 13 | The pins map to the following pins on the microcontroller: 14 | 15 | E1: PC0 (ADC0/PCINT8) 16 | 17 | E2: PC1 (ADC1/PCINT9) 18 | 19 | E3: PC2 (ADC2/PCINT10) 20 | 21 | E4: PA1 (ADC7/PCINT25) 22 | -------------------------------------------------------------------------------- /blinkenrocket_cr2032.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 | 166 | 167 | GND 168 | E2 169 | E1 170 | VCC 171 | GND 172 | E3 173 | E4 174 | VCC 175 | < PIN 1 176 | PIN 1 > 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | Rev 2c 199 | blinkenrocket.de 200 | 201 | 202 | 203 | <h3>SparkFun Electronics' preferred foot prints</h3> 204 | In this library you'll find all manner of digital ICs- microcontrollers, memory chips, logic chips, FPGAs, etc.<br><br> 205 | 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. 206 | <br><br> 207 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 208 | <br><br> 209 | 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. 210 | 211 | 212 | Fits EIAJ packages (wide version of the SOIC-8). 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | >VALUE 227 | >NAME 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | <h3>SparkFun Electronics' preferred foot prints</h3> 241 | In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br> 242 | 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. 243 | <br><br> 244 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 245 | <br><br> 246 | 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. 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | >NAME 270 | >VALUE 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | <b>Resistors, Capacitors, Inductors</b><p> 281 | Based on the previous libraries: 282 | <ul> 283 | <li>r.lbr 284 | <li>cap.lbr 285 | <li>cap-fe.lbr 286 | <li>captant.lbr 287 | <li>polcap.lbr 288 | <li>ipc-smd.lbr 289 | </ul> 290 | All SMD packages are defined according to the IPC specifications and CECC<p> 291 | <author>Created by librarian@cadsoft.de</author><p> 292 | <p> 293 | for Electrolyt Capacitors see also :<p> 294 | www.bccomponents.com <p> 295 | www.panasonic.com<p> 296 | www.kemet.com<p> 297 | <p> 298 | for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p> 299 | 300 | <map name="nav_main"> 301 | <area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""> 302 | <area shape="rect" coords="0,24,140,51" href="../about.asp" title=""> 303 | <area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""> 304 | <area shape="rect" coords="0,78,139,103" href="../products.asp" title=""> 305 | <area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""> 306 | <area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""> 307 | <area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""> 308 | <area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""> 309 | <area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""> 310 | <area shape="default" nohref> 311 | </map> 312 | 313 | <html> 314 | 315 | <title></title> 316 | 317 | <LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"> 318 | 319 | <body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"> 320 | <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"> 321 | <tr valign="top"> 322 | 323 | </td> 324 | <! <td width="10">&nbsp;</td> 325 | <td width="90%"> 326 | 327 | <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b> 328 | <P> 329 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2> 330 | <TR> 331 | <TD COLSPAN=8> 332 | <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT> 333 | </TD> 334 | </TR> 335 | <TR> 336 | <TD ALIGN=CENTER> 337 | <B> 338 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT> 339 | </B> 340 | </TD> 341 | <TD ALIGN=CENTER> 342 | <B> 343 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT> 344 | </B> 345 | </TD> 346 | <TD ALIGN=CENTER> 347 | <B> 348 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT> 349 | </B> 350 | </TD> 351 | <TD ALIGN=CENTER> 352 | <B> 353 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT> 354 | </B> 355 | </TD> 356 | <TD ALIGN=CENTER> 357 | <B> 358 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT> 359 | </B> 360 | </TD> 361 | <TD ALIGN=CENTER> 362 | <B> 363 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT> 364 | </B> 365 | </TD> 366 | <TD ALIGN=CENTER> 367 | <B> 368 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT> 369 | </B> 370 | </TD> 371 | <TD ALIGN=CENTER> 372 | <B> 373 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT> 374 | </B> 375 | </TD><TD>&nbsp;</TD> 376 | </TR> 377 | <TR> 378 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 > 379 | 3005P<BR> 380 | 3006P<BR> 381 | 3006W<BR> 382 | 3006Y<BR> 383 | 3009P<BR> 384 | 3009W<BR> 385 | 3009Y<BR> 386 | 3057J<BR> 387 | 3057L<BR> 388 | 3057P<BR> 389 | 3057Y<BR> 390 | 3059J<BR> 391 | 3059L<BR> 392 | 3059P<BR> 393 | 3059Y<BR></FONT> 394 | </TD> 395 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 396 | -<BR> 397 | 89P<BR> 398 | 89W<BR> 399 | 89X<BR> 400 | 89PH<BR> 401 | 76P<BR> 402 | 89XH<BR> 403 | 78SLT<BR> 404 | 78L&nbsp;ALT<BR> 405 | 56P&nbsp;ALT<BR> 406 | 78P&nbsp;ALT<BR> 407 | T8S<BR> 408 | 78L<BR> 409 | 56P<BR> 410 | 78P<BR></FONT> 411 | </TD> 412 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 413 | -<BR> 414 | T18/784<BR> 415 | 783<BR> 416 | 781<BR> 417 | -<BR> 418 | -<BR> 419 | -<BR> 420 | 2199<BR> 421 | 1697/1897<BR> 422 | 1680/1880<BR> 423 | 2187<BR> 424 | -<BR> 425 | -<BR> 426 | -<BR> 427 | -<BR></FONT> 428 | </TD> 429 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 430 | -<BR> 431 | 8035EKP/CT20/RJ-20P<BR> 432 | -<BR> 433 | RJ-20X<BR> 434 | -<BR> 435 | -<BR> 436 | -<BR> 437 | 1211L<BR> 438 | 8012EKQ&nbsp;ALT<BR> 439 | 8012EKR&nbsp;ALT<BR> 440 | 1211P<BR> 441 | 8012EKJ<BR> 442 | 8012EKL<BR> 443 | 8012EKQ<BR> 444 | 8012EKR<BR></FONT> 445 | </TD> 446 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 447 | -<BR> 448 | 2101P<BR> 449 | 2101W<BR> 450 | 2101Y<BR> 451 | -<BR> 452 | -<BR> 453 | -<BR> 454 | -<BR> 455 | -<BR> 456 | -<BR> 457 | -<BR> 458 | -<BR> 459 | 2102L<BR> 460 | 2102S<BR> 461 | 2102Y<BR></FONT> 462 | </TD> 463 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 464 | -<BR> 465 | EVMCOG<BR> 466 | -<BR> 467 | -<BR> 468 | -<BR> 469 | -<BR> 470 | -<BR> 471 | -<BR> 472 | -<BR> 473 | -<BR> 474 | -<BR> 475 | -<BR> 476 | -<BR> 477 | -<BR> 478 | -<BR></FONT> 479 | </TD> 480 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 481 | -<BR> 482 | 43P<BR> 483 | 43W<BR> 484 | 43Y<BR> 485 | -<BR> 486 | -<BR> 487 | -<BR> 488 | -<BR> 489 | 40L<BR> 490 | 40P<BR> 491 | 40Y<BR> 492 | 70Y-T602<BR> 493 | 70L<BR> 494 | 70P<BR> 495 | 70Y<BR></FONT> 496 | </TD> 497 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 498 | -<BR> 499 | -<BR> 500 | -<BR> 501 | -<BR> 502 | -<BR> 503 | -<BR> 504 | -<BR> 505 | -<BR> 506 | RT/RTR12<BR> 507 | RT/RTR12<BR> 508 | RT/RTR12<BR> 509 | -<BR> 510 | RJ/RJR12<BR> 511 | RJ/RJR12<BR> 512 | RJ/RJR12<BR></FONT> 513 | </TD> 514 | </TR> 515 | <TR> 516 | <TD COLSPAN=8>&nbsp; 517 | </TD> 518 | </TR> 519 | <TR> 520 | <TD COLSPAN=8> 521 | <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT> 522 | </TD> 523 | </TR> 524 | <TR> 525 | <TD ALIGN=CENTER> 526 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 527 | </TD> 528 | <TD ALIGN=CENTER> 529 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 530 | </TD> 531 | <TD ALIGN=CENTER> 532 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 533 | </TD> 534 | <TD ALIGN=CENTER> 535 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 536 | </TD> 537 | <TD ALIGN=CENTER> 538 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 539 | </TD> 540 | <TD ALIGN=CENTER> 541 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 542 | </TD> 543 | <TD ALIGN=CENTER> 544 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 545 | </TD> 546 | <TD ALIGN=CENTER> 547 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 548 | </TD> 549 | </TR> 550 | <TR> 551 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 552 | 3250L<BR> 553 | 3250P<BR> 554 | 3250W<BR> 555 | 3250X<BR> 556 | 3252P<BR> 557 | 3252W<BR> 558 | 3252X<BR> 559 | 3260P<BR> 560 | 3260W<BR> 561 | 3260X<BR> 562 | 3262P<BR> 563 | 3262W<BR> 564 | 3262X<BR> 565 | 3266P<BR> 566 | 3266W<BR> 567 | 3266X<BR> 568 | 3290H<BR> 569 | 3290P<BR> 570 | 3290W<BR> 571 | 3292P<BR> 572 | 3292W<BR> 573 | 3292X<BR> 574 | 3296P<BR> 575 | 3296W<BR> 576 | 3296X<BR> 577 | 3296Y<BR> 578 | 3296Z<BR> 579 | 3299P<BR> 580 | 3299W<BR> 581 | 3299X<BR> 582 | 3299Y<BR> 583 | 3299Z<BR></FONT> 584 | </TD> 585 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 586 | -<BR> 587 | 66P&nbsp;ALT<BR> 588 | 66W&nbsp;ALT<BR> 589 | 66X&nbsp;ALT<BR> 590 | 66P&nbsp;ALT<BR> 591 | 66W&nbsp;ALT<BR> 592 | 66X&nbsp;ALT<BR> 593 | -<BR> 594 | 64W&nbsp;ALT<BR> 595 | -<BR> 596 | 64P&nbsp;ALT<BR> 597 | 64W&nbsp;ALT<BR> 598 | 64X&nbsp;ALT<BR> 599 | 64P<BR> 600 | 64W<BR> 601 | 64X<BR> 602 | 66X&nbsp;ALT<BR> 603 | 66P&nbsp;ALT<BR> 604 | 66W&nbsp;ALT<BR> 605 | 66P<BR> 606 | 66W<BR> 607 | 66X<BR> 608 | 67P<BR> 609 | 67W<BR> 610 | 67X<BR> 611 | 67Y<BR> 612 | 67Z<BR> 613 | 68P<BR> 614 | 68W<BR> 615 | 68X<BR> 616 | 67Y&nbsp;ALT<BR> 617 | 67Z&nbsp;ALT<BR></FONT> 618 | </TD> 619 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 620 | 5050<BR> 621 | 5091<BR> 622 | 5080<BR> 623 | 5087<BR> 624 | -<BR> 625 | -<BR> 626 | -<BR> 627 | -<BR> 628 | -<BR> 629 | -<BR> 630 | -<BR> 631 | T63YB<BR> 632 | T63XB<BR> 633 | -<BR> 634 | -<BR> 635 | -<BR> 636 | 5887<BR> 637 | 5891<BR> 638 | 5880<BR> 639 | -<BR> 640 | -<BR> 641 | -<BR> 642 | T93Z<BR> 643 | T93YA<BR> 644 | T93XA<BR> 645 | T93YB<BR> 646 | T93XB<BR> 647 | -<BR> 648 | -<BR> 649 | -<BR> 650 | -<BR> 651 | -<BR></FONT> 652 | </TD> 653 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 654 | -<BR> 655 | -<BR> 656 | -<BR> 657 | -<BR> 658 | -<BR> 659 | -<BR> 660 | -<BR> 661 | -<BR> 662 | -<BR> 663 | -<BR> 664 | 8026EKP<BR> 665 | 8026EKW<BR> 666 | 8026EKM<BR> 667 | 8026EKP<BR> 668 | 8026EKB<BR> 669 | 8026EKM<BR> 670 | 1309X<BR> 671 | 1309P<BR> 672 | 1309W<BR> 673 | 8024EKP<BR> 674 | 8024EKW<BR> 675 | 8024EKN<BR> 676 | RJ-9P/CT9P<BR> 677 | RJ-9W<BR> 678 | RJ-9X<BR> 679 | -<BR> 680 | -<BR> 681 | -<BR> 682 | -<BR> 683 | -<BR> 684 | -<BR> 685 | -<BR></FONT> 686 | </TD> 687 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 688 | -<BR> 689 | -<BR> 690 | -<BR> 691 | -<BR> 692 | -<BR> 693 | -<BR> 694 | -<BR> 695 | -<BR> 696 | -<BR> 697 | -<BR> 698 | 3103P<BR> 699 | 3103Y<BR> 700 | 3103Z<BR> 701 | 3103P<BR> 702 | 3103Y<BR> 703 | 3103Z<BR> 704 | -<BR> 705 | -<BR> 706 | -<BR> 707 | -<BR> 708 | -<BR> 709 | -<BR> 710 | 3105P/3106P<BR> 711 | 3105W/3106W<BR> 712 | 3105X/3106X<BR> 713 | 3105Y/3106Y<BR> 714 | 3105Z/3105Z<BR> 715 | 3102P<BR> 716 | 3102W<BR> 717 | 3102X<BR> 718 | 3102Y<BR> 719 | 3102Z<BR></FONT> 720 | </TD> 721 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 722 | -<BR> 723 | -<BR> 724 | -<BR> 725 | -<BR> 726 | -<BR> 727 | -<BR> 728 | -<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 | -<BR> 742 | -<BR> 743 | -<BR> 744 | EVMCBG<BR> 745 | EVMCCG<BR> 746 | -<BR> 747 | -<BR> 748 | -<BR> 749 | -<BR> 750 | -<BR> 751 | -<BR> 752 | -<BR> 753 | -<BR></FONT> 754 | </TD> 755 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 756 | 55-1-X<BR> 757 | 55-4-X<BR> 758 | 55-3-X<BR> 759 | 55-2-X<BR> 760 | -<BR> 761 | -<BR> 762 | -<BR> 763 | -<BR> 764 | -<BR> 765 | -<BR> 766 | -<BR> 767 | -<BR> 768 | -<BR> 769 | -<BR> 770 | -<BR> 771 | -<BR> 772 | 50-2-X<BR> 773 | 50-4-X<BR> 774 | 50-3-X<BR> 775 | -<BR> 776 | -<BR> 777 | -<BR> 778 | 64P<BR> 779 | 64W<BR> 780 | 64X<BR> 781 | 64Y<BR> 782 | 64Z<BR> 783 | -<BR> 784 | -<BR> 785 | -<BR> 786 | -<BR> 787 | -<BR></FONT> 788 | </TD> 789 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 790 | RT/RTR22<BR> 791 | RT/RTR22<BR> 792 | RT/RTR22<BR> 793 | RT/RTR22<BR> 794 | RJ/RJR22<BR> 795 | RJ/RJR22<BR> 796 | RJ/RJR22<BR> 797 | RT/RTR26<BR> 798 | RT/RTR26<BR> 799 | RT/RTR26<BR> 800 | RJ/RJR26<BR> 801 | RJ/RJR26<BR> 802 | RJ/RJR26<BR> 803 | RJ/RJR26<BR> 804 | RJ/RJR26<BR> 805 | RJ/RJR26<BR> 806 | RT/RTR24<BR> 807 | RT/RTR24<BR> 808 | RT/RTR24<BR> 809 | RJ/RJR24<BR> 810 | RJ/RJR24<BR> 811 | RJ/RJR24<BR> 812 | RJ/RJR24<BR> 813 | RJ/RJR24<BR> 814 | RJ/RJR24<BR> 815 | -<BR> 816 | -<BR> 817 | -<BR> 818 | -<BR> 819 | -<BR> 820 | -<BR> 821 | -<BR></FONT> 822 | </TD> 823 | </TR> 824 | <TR> 825 | <TD COLSPAN=8>&nbsp; 826 | </TD> 827 | </TR> 828 | <TR> 829 | <TD COLSPAN=8> 830 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 831 | </TD> 832 | </TR> 833 | <TR> 834 | <TD ALIGN=CENTER> 835 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 836 | </TD> 837 | <TD ALIGN=CENTER> 838 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 839 | </TD> 840 | <TD ALIGN=CENTER> 841 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 842 | </TD> 843 | <TD ALIGN=CENTER> 844 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 845 | </TD> 846 | <TD ALIGN=CENTER> 847 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 848 | </TD> 849 | <TD ALIGN=CENTER> 850 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 851 | </TD> 852 | <TD ALIGN=CENTER> 853 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 854 | </TD> 855 | <TD ALIGN=CENTER> 856 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 857 | </TD> 858 | </TR> 859 | <TR> 860 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 861 | 3323P<BR> 862 | 3323S<BR> 863 | 3323W<BR> 864 | 3329H<BR> 865 | 3329P<BR> 866 | 3329W<BR> 867 | 3339H<BR> 868 | 3339P<BR> 869 | 3339W<BR> 870 | 3352E<BR> 871 | 3352H<BR> 872 | 3352K<BR> 873 | 3352P<BR> 874 | 3352T<BR> 875 | 3352V<BR> 876 | 3352W<BR> 877 | 3362H<BR> 878 | 3362M<BR> 879 | 3362P<BR> 880 | 3362R<BR> 881 | 3362S<BR> 882 | 3362U<BR> 883 | 3362W<BR> 884 | 3362X<BR> 885 | 3386B<BR> 886 | 3386C<BR> 887 | 3386F<BR> 888 | 3386H<BR> 889 | 3386K<BR> 890 | 3386M<BR> 891 | 3386P<BR> 892 | 3386S<BR> 893 | 3386W<BR> 894 | 3386X<BR></FONT> 895 | </TD> 896 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 897 | 25P<BR> 898 | 25S<BR> 899 | 25RX<BR> 900 | 82P<BR> 901 | 82M<BR> 902 | 82PA<BR> 903 | -<BR> 904 | -<BR> 905 | -<BR> 906 | 91E<BR> 907 | 91X<BR> 908 | 91T<BR> 909 | 91B<BR> 910 | 91A<BR> 911 | 91V<BR> 912 | 91W<BR> 913 | 25W<BR> 914 | 25V<BR> 915 | 25P<BR> 916 | -<BR> 917 | 25S<BR> 918 | 25U<BR> 919 | 25RX<BR> 920 | 25X<BR> 921 | 72XW<BR> 922 | 72XL<BR> 923 | 72PM<BR> 924 | 72RX<BR> 925 | -<BR> 926 | 72PX<BR> 927 | 72P<BR> 928 | 72RXW<BR> 929 | 72RXL<BR> 930 | 72X<BR></FONT> 931 | </TD> 932 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 933 | -<BR> 934 | -<BR> 935 | -<BR> 936 | T7YB<BR> 937 | T7YA<BR> 938 | -<BR> 939 | -<BR> 940 | -<BR> 941 | -<BR> 942 | -<BR> 943 | -<BR> 944 | -<BR> 945 | -<BR> 946 | -<BR> 947 | -<BR> 948 | -<BR> 949 | -<BR> 950 | TXD<BR> 951 | TYA<BR> 952 | TYP<BR> 953 | -<BR> 954 | TYD<BR> 955 | TX<BR> 956 | -<BR> 957 | 150SX<BR> 958 | 100SX<BR> 959 | 102T<BR> 960 | 101S<BR> 961 | 190T<BR> 962 | 150TX<BR> 963 | 101<BR> 964 | -<BR> 965 | -<BR> 966 | 101SX<BR></FONT> 967 | </TD> 968 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 969 | ET6P<BR> 970 | ET6S<BR> 971 | ET6X<BR> 972 | RJ-6W/8014EMW<BR> 973 | RJ-6P/8014EMP<BR> 974 | RJ-6X/8014EMX<BR> 975 | TM7W<BR> 976 | TM7P<BR> 977 | TM7X<BR> 978 | -<BR> 979 | 8017SMS<BR> 980 | -<BR> 981 | 8017SMB<BR> 982 | 8017SMA<BR> 983 | -<BR> 984 | -<BR> 985 | CT-6W<BR> 986 | CT-6H<BR> 987 | CT-6P<BR> 988 | CT-6R<BR> 989 | -<BR> 990 | CT-6V<BR> 991 | CT-6X<BR> 992 | -<BR> 993 | -<BR> 994 | 8038EKV<BR> 995 | -<BR> 996 | 8038EKX<BR> 997 | -<BR> 998 | -<BR> 999 | 8038EKP<BR> 1000 | 8038EKZ<BR> 1001 | 8038EKW<BR> 1002 | -<BR></FONT> 1003 | </TD> 1004 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1005 | -<BR> 1006 | -<BR> 1007 | -<BR> 1008 | 3321H<BR> 1009 | 3321P<BR> 1010 | 3321N<BR> 1011 | 1102H<BR> 1012 | 1102P<BR> 1013 | 1102T<BR> 1014 | RVA0911V304A<BR> 1015 | -<BR> 1016 | RVA0911H413A<BR> 1017 | RVG0707V100A<BR> 1018 | RVA0607V(H)306A<BR> 1019 | RVA1214H213A<BR> 1020 | -<BR> 1021 | -<BR> 1022 | -<BR> 1023 | -<BR> 1024 | -<BR> 1025 | -<BR> 1026 | -<BR> 1027 | -<BR> 1028 | -<BR> 1029 | 3104B<BR> 1030 | 3104C<BR> 1031 | 3104F<BR> 1032 | 3104H<BR> 1033 | -<BR> 1034 | 3104M<BR> 1035 | 3104P<BR> 1036 | 3104S<BR> 1037 | 3104W<BR> 1038 | 3104X<BR></FONT> 1039 | </TD> 1040 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1041 | EVMQ0G<BR> 1042 | EVMQIG<BR> 1043 | EVMQ3G<BR> 1044 | EVMS0G<BR> 1045 | EVMQ0G<BR> 1046 | EVMG0G<BR> 1047 | -<BR> 1048 | -<BR> 1049 | -<BR> 1050 | EVMK4GA00B<BR> 1051 | EVM30GA00B<BR> 1052 | EVMK0GA00B<BR> 1053 | EVM38GA00B<BR> 1054 | EVMB6<BR> 1055 | EVLQ0<BR> 1056 | -<BR> 1057 | EVMMSG<BR> 1058 | EVMMBG<BR> 1059 | EVMMAG<BR> 1060 | -<BR> 1061 | -<BR> 1062 | EVMMCS<BR> 1063 | -<BR> 1064 | -<BR> 1065 | -<BR> 1066 | -<BR> 1067 | -<BR> 1068 | EVMM1<BR> 1069 | -<BR> 1070 | -<BR> 1071 | EVMM0<BR> 1072 | -<BR> 1073 | -<BR> 1074 | EVMM3<BR></FONT> 1075 | </TD> 1076 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1077 | -<BR> 1078 | -<BR> 1079 | -<BR> 1080 | 62-3-1<BR> 1081 | 62-1-2<BR> 1082 | -<BR> 1083 | -<BR> 1084 | -<BR> 1085 | -<BR> 1086 | -<BR> 1087 | -<BR> 1088 | -<BR> 1089 | -<BR> 1090 | -<BR> 1091 | -<BR> 1092 | -<BR> 1093 | 67R<BR> 1094 | -<BR> 1095 | 67P<BR> 1096 | -<BR> 1097 | -<BR> 1098 | -<BR> 1099 | -<BR> 1100 | 67X<BR> 1101 | 63V<BR> 1102 | 63S<BR> 1103 | 63M<BR> 1104 | -<BR> 1105 | -<BR> 1106 | 63H<BR> 1107 | 63P<BR> 1108 | -<BR> 1109 | -<BR> 1110 | 63X<BR></FONT> 1111 | </TD> 1112 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1113 | -<BR> 1114 | -<BR> 1115 | -<BR> 1116 | RJ/RJR50<BR> 1117 | RJ/RJR50<BR> 1118 | RJ/RJR50<BR> 1119 | -<BR> 1120 | -<BR> 1121 | -<BR> 1122 | -<BR> 1123 | -<BR> 1124 | -<BR> 1125 | -<BR> 1126 | -<BR> 1127 | -<BR> 1128 | -<BR> 1129 | -<BR> 1130 | -<BR> 1131 | -<BR> 1132 | -<BR> 1133 | -<BR> 1134 | -<BR> 1135 | -<BR> 1136 | -<BR> 1137 | -<BR> 1138 | -<BR> 1139 | -<BR> 1140 | -<BR> 1141 | -<BR> 1142 | -<BR> 1143 | -<BR> 1144 | -<BR> 1145 | -<BR> 1146 | -<BR></FONT> 1147 | </TD> 1148 | </TR> 1149 | </TABLE> 1150 | <P>&nbsp;<P> 1151 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3> 1152 | <TR> 1153 | <TD COLSPAN=7> 1154 | <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT> 1155 | <P> 1156 | <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT> 1157 | </TD> 1158 | </TR> 1159 | <TR> 1160 | <TD> 1161 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1162 | </TD> 1163 | <TD> 1164 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1165 | </TD> 1166 | <TD> 1167 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1168 | </TD> 1169 | <TD> 1170 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1171 | </TD> 1172 | <TD> 1173 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1174 | </TD> 1175 | <TD> 1176 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1177 | </TD> 1178 | <TD> 1179 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1180 | </TD> 1181 | </TR> 1182 | <TR> 1183 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1184 | 3224G<BR> 1185 | 3224J<BR> 1186 | 3224W<BR> 1187 | 3269P<BR> 1188 | 3269W<BR> 1189 | 3269X<BR></FONT> 1190 | </TD> 1191 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1192 | 44G<BR> 1193 | 44J<BR> 1194 | 44W<BR> 1195 | 84P<BR> 1196 | 84W<BR> 1197 | 84X<BR></FONT> 1198 | </TD> 1199 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1200 | -<BR> 1201 | -<BR> 1202 | -<BR> 1203 | ST63Z<BR> 1204 | ST63Y<BR> 1205 | -<BR></FONT> 1206 | </TD> 1207 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1208 | -<BR> 1209 | -<BR> 1210 | -<BR> 1211 | ST5P<BR> 1212 | ST5W<BR> 1213 | ST5X<BR></FONT> 1214 | </TD> 1215 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1216 | -<BR> 1217 | -<BR> 1218 | -<BR> 1219 | -<BR> 1220 | -<BR> 1221 | -<BR></FONT> 1222 | </TD> 1223 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1224 | -<BR> 1225 | -<BR> 1226 | -<BR> 1227 | -<BR> 1228 | -<BR> 1229 | -<BR></FONT> 1230 | </TD> 1231 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1232 | -<BR> 1233 | -<BR> 1234 | -<BR> 1235 | -<BR> 1236 | -<BR> 1237 | -<BR></FONT> 1238 | </TD> 1239 | </TR> 1240 | <TR> 1241 | <TD COLSPAN=7>&nbsp; 1242 | </TD> 1243 | </TR> 1244 | <TR> 1245 | <TD COLSPAN=7> 1246 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 1247 | </TD> 1248 | </TR> 1249 | <TR> 1250 | <TD> 1251 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1252 | </TD> 1253 | <TD> 1254 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1255 | </TD> 1256 | <TD> 1257 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1258 | </TD> 1259 | <TD> 1260 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1261 | </TD> 1262 | <TD> 1263 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1264 | </TD> 1265 | <TD> 1266 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1267 | </TD> 1268 | <TD> 1269 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1270 | </TD> 1271 | </TR> 1272 | <TR> 1273 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1274 | 3314G<BR> 1275 | 3314J<BR> 1276 | 3364A/B<BR> 1277 | 3364C/D<BR> 1278 | 3364W/X<BR> 1279 | 3313G<BR> 1280 | 3313J<BR></FONT> 1281 | </TD> 1282 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1283 | 23B<BR> 1284 | 23A<BR> 1285 | 21X<BR> 1286 | 21W<BR> 1287 | -<BR> 1288 | 22B<BR> 1289 | 22A<BR></FONT> 1290 | </TD> 1291 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1292 | ST5YL/ST53YL<BR> 1293 | ST5YJ/5T53YJ<BR> 1294 | ST-23A<BR> 1295 | ST-22B<BR> 1296 | ST-22<BR> 1297 | -<BR> 1298 | -<BR></FONT> 1299 | </TD> 1300 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1301 | ST-4B<BR> 1302 | ST-4A<BR> 1303 | -<BR> 1304 | -<BR> 1305 | -<BR> 1306 | ST-3B<BR> 1307 | ST-3A<BR></FONT> 1308 | </TD> 1309 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1310 | -<BR> 1311 | EVM-6YS<BR> 1312 | EVM-1E<BR> 1313 | EVM-1G<BR> 1314 | EVM-1D<BR> 1315 | -<BR> 1316 | -<BR></FONT> 1317 | </TD> 1318 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1319 | G4B<BR> 1320 | G4A<BR> 1321 | TR04-3S1<BR> 1322 | TRG04-2S1<BR> 1323 | -<BR> 1324 | -<BR> 1325 | -<BR></FONT> 1326 | </TD> 1327 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1328 | -<BR> 1329 | -<BR> 1330 | DVR-43A<BR> 1331 | CVR-42C<BR> 1332 | CVR-42A/C<BR> 1333 | -<BR> 1334 | -<BR></FONT> 1335 | </TD> 1336 | </TR> 1337 | </TABLE> 1338 | <P> 1339 | <FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT> 1340 | <P> 1341 | 1342 | &nbsp; 1343 | <P> 1344 | </td> 1345 | </tr> 1346 | </table> 1347 | </BODY></HTML> 1348 | 1349 | 1350 | <b>CAPACITOR</b><p> 1351 | chip 1352 | 1353 | 1354 | 1355 | 1356 | 1357 | 1358 | 1359 | 1360 | >NAME 1361 | >VALUE 1362 | 1363 | 1364 | 1365 | 1366 | 1367 | <b>RESISTOR</b><p> 1368 | chip 1369 | 1370 | 1371 | 1372 | 1373 | 1374 | 1375 | 1376 | 1377 | >NAME 1378 | >VALUE 1379 | 1380 | 1381 | 1382 | 1383 | 1384 | 1385 | 1386 | 1387 | 1388 | <b>Source:</b> http://www.betlux.com/product/LED_dot_matrix/BL-M12A881.PDF 1389 | 1390 | 1391 | 1392 | 1393 | 1394 | 1395 | 1396 | 1397 | 1398 | 1399 | 1400 | 1401 | 1402 | 1403 | 1404 | 1405 | 1406 | 1407 | 1408 | 1409 | 1410 | 1411 | 1412 | 1413 | 1414 | 1415 | 1416 | 1417 | 1418 | 1419 | 1420 | 1421 | 1422 | 1423 | 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 | 1475 | 1476 | 1477 | 1478 | >NAME 1479 | >VALUE 1480 | 1481 | 1482 | 1483 | 1484 | 1485 | 1486 | 1487 | 1488 | 1489 | 1490 | 1491 | 1492 | 1493 | 1494 | 1495 | >NAME 1496 | >VALUE 1497 | 1498 | 1499 | 1500 | 1501 | Lithium Battery Holder for CR2032 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 | >NAME 1531 | >VALUE 1532 | 1533 | 1534 | 1535 | 1536 | 1537 | <b>AVR Devices</b><p> 1538 | Version 7 - August 1, 2011.<br><br> 1539 | Added ATmega164P/324P/644P devices for DIP and TQFP. 1540 | <p> 1541 | Version 4 - March 11, 2008.<br><br> 1542 | This library now includes ONLY ATMEL AVR microcontrollers. It is the result of merging all other available device libraries available at http://www.cadsoft.de/download as of the time it was made. In addition to the legacy AT90* devices, it includes most ATMEGA devices including the new 48/88/168, most ATTiny devices and a set of ISP and JTAG pin headers.<p> 1543 | Based on the following sources:<p> 1544 | <ul> 1545 | <li>www.atmel.com 1546 | <li> file at90smcu_v400.zip 1547 | <li>avr.lbr and atmel.lbr as provided by CadSoft 1548 | <li>avr-1.lbr by David Blundell 1549 | <li>avr-2.lbr by Boris Zalokar 1550 | <li>avr-3.lbr by Carson Reynolds 1551 | <li>attiny24_44_84.lbr by Pawel Szramowski (ATTiny24/44/84 devices) 1552 | <li>atmel.lbr by Bob Starr (ISP headers) 1553 | <li>moates_custom_parts.lbr (edge ISP) 1554 | <li>other misc sources 1555 | </ul> 1556 | <author>Revised by David Blundell (blundar at gmail dot com) and others.</author> 1557 | <p> 1558 | <author>Added Mega162, Tiny2313 John Lussmyer (cougar at casadelgato.com)</author> 1559 | <p> 1560 | <author>Added XMega A1,A3,A4,D3,D4 John Lussmyer Aug 1, 2011(cougar at casadelgato.com)</author> 1561 | 1562 | 1563 | <b>PIN HEADER</b><p> JTAG 6 Pin, 0.1" Straight 1564 | 1565 | 1566 | 1567 | 1568 | 1569 | 1570 | 1571 | 1572 | 1573 | 1574 | >NAME 1575 | >VALUE 1576 | 1577 | 1578 | 1579 | 1580 | 1581 | 1582 | 1583 | 1584 | 1585 | 1586 | <b>AVR Devices</b><p> 1587 | Version 5 - November 25, 2008.<br><br> 1588 | Added ATmega164P/324P/644P devices for DIP and TQFP. 1589 | <p> 1590 | Version 4 - March 11, 2008.<br><br> 1591 | This library now includes ONLY ATMEL AVR microcontrollers. It is the result of merging all other available device libraries available at http://www.cadsoft.de/download as of the time it was made. In addition to the legacy AT90* devices, it includes most ATMEGA devices including the new 48/88/168, most ATTiny devices and a set of ISP and JTAG pin headers.<p> 1592 | Based on the following sources:<p> 1593 | <ul> 1594 | <li>www.atmel.com 1595 | <li> file at90smcu_v400.zip 1596 | <li>avr.lbr and atmel.lbr as provided by CadSoft 1597 | <li>avr-1.lbr by David Blundell 1598 | <li>avr-2.lbr by Boris Zalokar 1599 | <li>avr-3.lbr by Carson Reynolds 1600 | <li>attiny24_44_84.lbr by Pawel Szramowski (ATTiny24/44/84 devices) 1601 | <li>atmel.lbr by Bob Starr (ISP headers) 1602 | <li>moates_custom_parts.lbr (edge ISP) 1603 | <li>other misc sources 1604 | </ul> 1605 | <author>Revised by David Blundell (blundar at gmail dot com) and others.</author> 1606 | <p> 1607 | <author>Added Mega162, Tiny2313 John Lussmyer (cougar at casadelgato.com)</author> 1608 | 1609 | 1610 | <B>Thin Plasic Quad Flat Package</B> Grid 0.8 mm 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 | >NAME 1650 | >VALUE 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 | <b>Pin Header Connectors</b><p> 1688 | <author>Created by librarian@cadsoft.de, Modified by Cougar@CasaDelGato.Com</author> 1689 | 1690 | 1691 | <b>PIN HEADER</b> - 2.54 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 | >NAME 1726 | >VALUE 1727 | 1728 | 1729 | 1730 | 1731 | 1732 | 1733 | 1734 | 1735 | Components from http://computronics.com.au/tools/ 1736 | ©Computronics Corporation Ltd, 2004 1737 | May be freely used, modified & redistributed providing this copyright notice & web address is retained (including derived libraries). 1738 | 1739 | 1740 | Pads to connect battery 1741 | 1742 | 1743 | + 1744 | - 1745 | 1746 | 1747 | 1748 | 1749 | <b>IPC-7351 compliant SMT diodes</b><br> 1750 | <br> 1751 | Symbols copied from CadSoft diode.lbr.<br> 1752 | Packages generated using genpkg_sod.ulp, genpkg_sot.ulp and genpkg_mld.ulp.<br> 1753 | Devices are Fairchild Semiconductor types.<br> 1754 | <br> 1755 | Weartronics 2006<br> 1756 | http://www.weartronics.com/ 1757 | 1758 | 1759 | 1760 | 1761 | 1762 | 1763 | 1764 | 1765 | 1766 | 1767 | 1768 | 1769 | 1770 | 1771 | 1772 | 1773 | 1774 | 1775 | 1776 | >NAME 1777 | >VALUE 1778 | 1779 | 1780 | 1781 | 1782 | 1783 | 1784 | 1785 | 1786 | 1787 | 1788 | 1789 | 1790 | 1791 | 1792 | 1793 | 1794 | <b>Multi-CB EAGLE Design Rules für 2 Lagen Standard (ohne Aufpreis)</b> 1795 | <br> 1796 | 125µm Leiter, 0.2mm Drill, ca. 35µm End-Kupfer (18µm Startkupfer) 1797 | <p> 1798 | <b>Bitte beachten:</b> 1799 | <ul type="square"> 1800 | <li>Vias kleiner/gleich 0.45mm werden mit Lötstopp abgedeckt. Eine Freistellung der Vias kann unter Masks/Limit gesetzt werden.</li> 1801 | <li>Bitte nur Vektorschrift verwenden! Im Control-Panel unter Optionen/Benutzeroberfläche: Immer Vektor-Schrift.</li> 1802 | <li>Langlöcher im Layer 46 werden als durchkontaktierte Schlitze (DK) gefertigt, falls von Kupfer umgeben. NDK-Langlöcher müssen im Layer 20 definiert sein (Preisvorteil).</li> 1803 | <li>Dieses .dru-File ist für Boards mit Fräskontur. Geritzte Kontur erfordert Distance/Copper/Dimension: 0.5mm.</li> 1804 | <li>Falls Lötstopp-Brücken im gleichen Netz erwünscht: Clearance/Same Signals anpassen (empfohlen: 8mil)</li> 1805 | <li>Supply/ Generate thermals ist standardmäßig aktiviert; kann auch deaktiviert werden.</li> 1806 | <li>Zum Reduzieren der Pad-Größe für SMD-Schablonen kann Masks/Cream angepasst werden.</li> 1807 | </ul> 1808 | Für kleinere Werte (Leiterbahn, Drill) verwenden Sie bitte ein Advanced .dru-File von Multi-CB.<br> 1809 | Weitere Hinweise finden Sie unter <b>Design-Hilfe</b> auf unserer Webseite <a href="http://www.multi-circuit-boards.eu/leiterplatten-design-hilfe/einfuehrung.html">www.multi-cb.de</a>. 1810 | </p> 1811 | <p> 1812 | Ihr Multi-CB Team 1813 | <br><br> 1814 | <em>Alle Angaben ohne Gewähr! Eine perfekte Einstellung der Design-Rules kann verständlicherweise nur durch den Anwender erfolgen.</em> 1815 | </p> 1816 | <b>Multi-CB EAGLE Design Rules for 2 layers standard (w/o surcharge)</b> 1817 | <br> 1818 | 125µm tracks, 0.2mm drills, ca. 35µm final copper (18µm start copper) 1819 | <p> 1820 | <b>Please note:</b> 1821 | <ul type="square"> 1822 | <li>Vias less/equal 0.45mm will be covered with solder mask. An exemption of the vias can be placed under Masks / Limit.</li> 1823 | <li>Please only use vector fonts! In Control Panel under Options / User Interface: Always vector font.</li> 1824 | <li>Oblong holes in the layer 46 are manufactured as plated-through slots (PTH), if surrounded by copper. NPTH-slots must be defined in the layer 20 (price advantage).</li> 1825 | <li>This .dru-File is for boards with milling contour. V-scoring contour requires Distance / Copper / Dimension: 0.5mm.</li> 1826 | <li>If solder-stop bridges on the same network are desired: Adjust Clearance / Same signal (recommended 8mil)</li> 1827 | <li>Supply / Generate thermals is enabled by default; can also be deactivated.</li> 1828 | <li>To reduce the pad size for SMD-Stencils: Masks/Cream can be customized.</li> 1829 | </ul> 1830 | For smaller values (conductors, drill) please use an Advanced .dru file of Multi-CB.<br> 1831 | For more information, see <b>Design-Aid</b> on our website <a href="http://www.multi-circuit-boards.eu/en/pcb-design-aid/introduction.html">www.multi-cb.de</a>. 1832 | </p> 1833 | <p> 1834 | Your Multi-CB Team 1835 | <br><br> 1836 | <em>All statements without guarantee! A perfect setting of design rules can understandably only be performed by the user.</em> 1837 | </p> 1838 | 1839 | 1840 | 1841 | 1842 | 1843 | 1844 | 1845 | 1846 | 1847 | 1848 | 1849 | 1850 | 1851 | 1852 | 1853 | 1854 | 1855 | 1856 | 1857 | 1858 | 1859 | 1860 | 1861 | 1862 | 1863 | 1864 | 1865 | 1866 | 1867 | 1868 | 1869 | 1870 | 1871 | 1872 | 1873 | 1874 | 1875 | 1876 | 1877 | 1878 | 1879 | 1880 | 1881 | 1882 | 1883 | 1884 | 1885 | 1886 | 1887 | 1888 | 1889 | 1890 | 1891 | 1892 | 1893 | 1894 | 1895 | 1896 | 1897 | 1898 | 1899 | 1900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1980 | 1981 | 1982 | 1983 | 1984 | 1985 | 1986 | 1987 | 1988 | 1989 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 | 2026 | 2027 | 2028 | 2029 | 2030 | 2031 | 2032 | 2033 | 2034 | 2035 | 2036 | 2037 | 2038 | 2039 | 2040 | 2041 | 2042 | 2043 | 2044 | 2045 | 2046 | 2047 | 2048 | 2049 | 2050 | 2051 | 2052 | 2053 | 2054 | 2055 | 2056 | 2057 | 2058 | 2059 | 2060 | 2061 | 2062 | 2063 | 2064 | 2065 | 2066 | 2067 | 2068 | 2069 | 2070 | 2071 | 2072 | 2073 | 2074 | 2075 | 2076 | 2077 | 2078 | 2079 | 2080 | 2081 | 2082 | 2083 | 2084 | 2085 | 2086 | 2087 | 2088 | 2089 | 2090 | 2091 | 2092 | 2093 | 2094 | 2095 | 2096 | 2097 | 2098 | 2099 | 2100 | 2101 | 2102 | 2103 | 2104 | 2105 | 2106 | 2107 | 2108 | 2109 | 2110 | 2111 | 2112 | 2113 | 2114 | 2115 | 2116 | 2117 | 2118 | 2119 | 2120 | 2121 | 2122 | 2123 | 2124 | 2125 | 2126 | 2127 | 2128 | 2129 | 2130 | 2131 | 2132 | 2133 | 2134 | 2135 | 2136 | 2137 | 2138 | 2139 | 2140 | 2141 | 2142 | 2143 | 2144 | 2145 | 2146 | 2147 | 2148 | 2149 | 2150 | 2151 | 2152 | 2153 | 2154 | 2155 | 2156 | 2157 | 2158 | 2159 | 2160 | 2161 | 2162 | 2163 | 2164 | 2165 | 2166 | 2167 | 2168 | 2169 | 2170 | 2171 | 2172 | 2173 | 2174 | 2175 | 2176 | 2177 | 2178 | 2179 | 2180 | 2181 | 2182 | 2183 | 2184 | 2185 | 2186 | 2187 | 2188 | 2189 | 2190 | 2191 | 2192 | 2193 | 2194 | 2195 | 2196 | 2197 | 2198 | 2199 | 2200 | 2201 | 2202 | 2203 | 2204 | 2205 | 2206 | 2207 | 2208 | 2209 | 2210 | 2211 | 2212 | 2213 | 2214 | 2215 | 2216 | 2217 | 2218 | 2219 | 2220 | 2221 | 2222 | 2223 | 2224 | 2225 | 2226 | 2227 | 2228 | 2229 | 2230 | 2231 | 2232 | 2233 | 2234 | 2235 | 2236 | 2237 | 2238 | 2239 | 2240 | 2241 | 2242 | 2243 | 2244 | 2245 | 2246 | 2247 | 2248 | 2249 | 2250 | 2251 | 2252 | 2253 | 2254 | 2255 | 2256 | 2257 | 2258 | 2259 | 2260 | 2261 | 2262 | 2263 | 2264 | 2265 | 2266 | 2267 | 2268 | 2269 | 2270 | 2271 | 2272 | 2273 | 2274 | 2275 | 2276 | 2277 | 2278 | 2279 | 2280 | 2281 | 2282 | 2283 | 2284 | 2285 | 2286 | 2287 | 2288 | 2289 | 2290 | 2291 | 2292 | 2293 | 2294 | 2295 | 2296 | 2297 | 2298 | 2299 | 2300 | 2301 | 2302 | 2303 | 2304 | 2305 | 2306 | 2307 | 2308 | 2309 | 2310 | 2311 | 2312 | 2313 | 2314 | 2315 | 2316 | 2317 | 2318 | 2319 | 2320 | 2321 | 2322 | 2323 | 2324 | 2325 | 2326 | 2327 | 2328 | 2329 | 2330 | 2331 | 2332 | 2333 | 2334 | 2335 | 2336 | 2337 | 2338 | 2339 | 2340 | 2341 | 2342 | 2343 | 2344 | 2345 | 2346 | 2347 | 2348 | 2349 | 2350 | 2351 | 2352 | 2353 | 2354 | 2355 | 2356 | 2357 | 2358 | 2359 | 2360 | 2361 | 2362 | 2363 | 2364 | 2365 | 2366 | 2367 | 2368 | 2369 | 2370 | 2371 | 2372 | 2373 | 2374 | 2375 | 2376 | 2377 | 2378 | 2379 | 2380 | 2381 | 2382 | 2383 | 2384 | 2385 | 2386 | 2387 | 2388 | 2389 | 2390 | 2391 | 2392 | 2393 | 2394 | 2395 | 2396 | 2397 | 2398 | 2399 | 2400 | 2401 | 2402 | 2403 | 2404 | 2405 | 2406 | 2407 | 2408 | 2409 | 2410 | 2411 | 2412 | 2413 | 2414 | 2415 | 2416 | 2417 | 2418 | 2419 | 2420 | 2421 | 2422 | 2423 | 2424 | 2425 | 2426 | 2427 | 2428 | 2429 | 2430 | 2431 | 2432 | 2433 | 2434 | 2435 | 2436 | 2437 | 2438 | 2439 | 2440 | 2441 | 2442 | 2443 | 2444 | 2445 | 2446 | 2447 | 2448 | 2449 | 2450 | 2451 | 2452 | 2453 | 2454 | 2455 | 2456 | 2457 | 2458 | 2459 | 2460 | 2461 | 2462 | 2463 | 2464 | 2465 | 2466 | 2467 | 2468 | 2469 | 2470 | 2471 | 2472 | 2473 | 2474 | 2475 | 2476 | 2477 | 2478 | 2479 | 2480 | 2481 | 2482 | 2483 | 2484 | 2485 | 2486 | 2487 | 2488 | 2489 | 2490 | 2491 | 2492 | 2493 | 2494 | 2495 | 2496 | 2497 | 2498 | 2499 | 2500 | 2501 | 2502 | 2503 | 2504 | 2505 | 2506 | 2507 | 2508 | 2509 | 2510 | 2511 | 2512 | 2513 | 2514 | 2515 | 2516 | 2517 | 2518 | 2519 | 2520 | 2521 | 2522 | 2523 | 2524 | 2525 | 2526 | 2527 | 2528 | 2529 | 2530 | 2531 | 2532 | 2533 | 2534 | 2535 | 2536 | 2537 | 2538 | 2539 | 2540 | 2541 | 2542 | 2543 | 2544 | 2545 | 2546 | 2547 | 2548 | 2549 | 2550 | 2551 | 2552 | 2553 | 2554 | 2555 | 2556 | 2557 | 2558 | 2559 | 2560 | 2561 | 2562 | 2563 | 2564 | 2565 | 2566 | 2567 | 2568 | 2569 | 2570 | 2571 | 2572 | 2573 | 2574 | 2575 | 2576 | 2577 | 2578 | 2579 | 2580 | 2581 | 2582 | 2583 | 2584 | 2585 | 2586 | 2587 | 2588 | 2589 | 2590 | 2591 | 2592 | 2593 | 2594 | 2595 | 2596 | 2597 | 2598 | 2599 | 2600 | 2601 | 2602 | 2603 | 2604 | 2605 | 2606 | 2607 | 2608 | 2609 | 2610 | 2611 | 2612 | 2613 | 2614 | 2615 | 2616 | 2617 | 2618 | 2619 | 2620 | 2621 | 2622 | 2623 | 2624 | 2625 | 2626 | 2627 | 2628 | 2629 | 2630 | 2631 | 2632 | 2633 | 2634 | 2635 | 2636 | 2637 | 2638 | 2639 | 2640 | 2641 | 2642 | 2643 | 2644 | 2645 | 2646 | 2647 | 2648 | 2649 | -------------------------------------------------------------------------------- /blinkenrocket_cr2032.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinkenrocket/hardware/e394968b03b38423c1da874cab6c94c9487cc54e/blinkenrocket_cr2032.pdf --------------------------------------------------------------------------------