├── .gitattributes ├── .gitignore ├── watch10r3 └── watch10r3.ino ├── LICENSE └── eagle └── Chronio REV3.brd /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /watch10r3/watch10r3.ino: -------------------------------------------------------------------------------- 1 | /* 2 | Created in 2016 by Maximilian Kern 3 | https://hackaday.io/project/12876-chronio 4 | Low power Arduino based (smart)watch code 5 | 6 | License: GNU GPLv3 7 | 8 | This program is free software: you can redistribute it and/or modify 9 | it under the terms of the GNU General Public License as published by 10 | the Free Software Foundation, either version 3 of the License, or 11 | (at your option) any later version. 12 | 13 | This program is distributed in the hope that it will be useful, 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | GNU General Public License for more details. 17 | 18 | You should have received a copy of the GNU General Public License 19 | along with this program. If not, see . 20 | */ 21 | 22 | #include //https://github.com/adafruit/Adafruit-GFX-Library 23 | #include //https://github.com/adafruit/Adafruit_SHARP_Memory_Display 24 | #include 25 | #include "ds3231.h" 26 | #include // https://github.com/rocketscream/Low-Power 27 | #include // https://github.com/JChristensen/Button 28 | 29 | #define SCK 13 30 | #define MOSI 11 31 | #define SS 10 32 | #define LED 9 33 | #define EXTMODE 16 34 | 35 | #define MBUT 3 36 | #define UBUT 4 37 | #define DBUT 5 38 | Button buttonMid(MBUT, true, true, 20); 39 | Button buttonUp(UBUT, true, true, 20); 40 | Button buttonDown(DBUT, true, true, 20); 41 | 42 | Adafruit_SharpMem display(SCK, MOSI, SS); 43 | 44 | #define BLACK 0 45 | #define WHITE 1 46 | 47 | #define CONFIG_UNIXTIME 1 48 | 49 | struct ts t; 50 | struct ts cfg; //configuration time values 51 | float temperature; 52 | const String gday[7] = {"Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"}; 53 | //const String gday[7] = {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"}; 54 | unsigned long standbyTimer; 55 | byte activeTime = 15; //how many sec until entering standby 56 | boolean active = false; 57 | byte currentPage = 0; // start page 58 | byte menuVal = 0; 59 | byte configVal = 0; 60 | boolean flicker = false; 61 | boolean showVoltage = true; 62 | unsigned long stopwatchTimer = 0; 63 | boolean stopwatchActive = false; 64 | unsigned long stopwatchMs = 0; 65 | 66 | void setup(void) { 67 | 68 | //Serial.begin(9600); 69 | Wire.begin(); 70 | DS3231_init(DS3231_INTCN); 71 | //setTime(20, 56, 00, 19, 4, 2016, 4); //hour, min, sec, day, month, year 72 | DS3231_clear_a2f(); 73 | uint8_t flags[4] = { 1, 1, 1, 1 }; //A2M2, A2M3, A2M4, DY/DT 74 | DS3231_set_a2(0, 0, 0, flags); //min, hour, day 75 | DS3231_set_creg(DS3231_INTCN | DS3231_A2IE); //set 1 min alarm 76 | 77 | Wire.beginTransmission(0x6F); 78 | Wire.write(0x07); 79 | Wire.write(B01000000); // enable MFP for 1Hz 80 | Wire.endTransmission(); 81 | 82 | Wire.beginTransmission(0x6F); 83 | Wire.write(0x00); 84 | Wire.write(0x80); //start oscillator 85 | Wire.endTransmission(); 86 | 87 | display.begin(); 88 | display.setRotation(0); //Rotate 180° 89 | display.clearDisplay(); 90 | 91 | pinMode(2, INPUT_PULLUP); // RTC Interrupt Pullup 92 | pinMode(MBUT, INPUT_PULLUP); // Middle Button Pullup 93 | pinMode(UBUT, INPUT_PULLUP); // Up Button Pullup 94 | pinMode(DBUT, INPUT_PULLUP); // Down Button Pullup 95 | pinMode(EXTMODE, OUTPUT); //VCOM Mode (h=ext l=sw) 96 | digitalWrite(EXTMODE, HIGH); // switch VCOM to external 97 | 98 | attachInterrupt(0, quickWake, FALLING); // RTC Interrupt 99 | attachInterrupt(1, wake, FALLING); // Middle Button Interrupt 100 | 101 | standbyTimer = millis()+activeTime*1000; 102 | 103 | buttonMid.read(); 104 | buttonUp.read(); 105 | buttonDown.read(); 106 | } 107 | 108 | void loop(void){ 109 | active = (millis()<=standbyTimer); //check if active 110 | buttonMid.read(); //read Button 111 | if(active && (buttonUp.read() || buttonDown.read())) 112 | standbyTimer = millis()+activeTime*1000; //buttons reset Standby Timer 113 | if(currentPage == 0 && buttonMid.wasPressed()){ //read Buttons 114 | currentPage = 9; //switch to menu 115 | menuVal = 0; 116 | buttonMid.read(); //make sure wasPressed is not activated again 117 | } 118 | 119 | DS3231_get(&t); //Get time 120 | temperature = DS3231_get_treg(); //Get temperature 121 | if (DS3231_triggered_a2()) DS3231_clear_a2f(); //clear alarm 2 flag 122 | 123 | if(currentPage == 0 || !active) drawWatchface(); 124 | else if(currentPage == 9) drawMainMenu(); 125 | else if(currentPage == 1) drawStopwatch(); 126 | else if(currentPage == 2) drawTimer(); 127 | else if(currentPage == 3) drawTimeConfig(); 128 | else if(currentPage == 4) drawGames(); 129 | else if(currentPage == 5) drawSettings(); 130 | else if(currentPage == 6) drawDebug(); 131 | else display.clearDisplay(); 132 | 133 | //if(digitalRead(UBUT) == LOW) display.fillRect(0, 0, 30, 8, 0); // visualize button presses 134 | //if(digitalRead(MBUT) == LOW) display.fillRect(33, 0, 30, 8, 0); 135 | //if(digitalRead(DBUT) == LOW) display.fillRect(66, 0, 30, 8, 0); 136 | 137 | display.refresh(); 138 | 139 | //digitalWrite(LED, millis()/500%2); // blink LED 140 | 141 | if(!active) { //switch to watchface and sleep 142 | currentPage = 0; 143 | digitalWrite(EXTMODE, HIGH); // switch VCOM to external 144 | LowPower.powerDown(SLEEP_FOREVER, ADC_OFF, BOD_OFF); 145 | } 146 | else if(!flicker) digitalWrite(SCK, HIGH); // this somehow removes flickering 147 | } 148 | 149 | 150 | void quickWake() { // Wake from RTC 151 | } 152 | 153 | void wake() { //Wake from Middle Button 154 | noInterrupts(); 155 | standbyTimer = millis()+activeTime*1000; // reset Standby Timer 156 | digitalWrite(EXTMODE, LOW); // switch VCOM to software 157 | interrupts(); 158 | } 159 | 160 | void drawWatchface(){ 161 | display.clearDisplay(); 162 | drawDigit( 2, 20, t.hour/10, 0); 163 | drawDigit(24, 20, t.hour%10, 0); 164 | drawDigit(52, 20, t.min/10, 0); 165 | drawDigit(74, 20, t.min%10, 0); 166 | display.setCursor(4, 62); 167 | display.setTextColor(BLACK, WHITE); 168 | display.setTextSize(1); 169 | display.print(gday[t.wday-1]); 170 | display.setCursor(4, 72); 171 | display.print(t.mday); display.print("."); 172 | display.print(t.mon); display.print("."); 173 | display.println(t.year); 174 | display.setCursor(4, 82); 175 | display.print((int) temperature); display.print(","); 176 | display.print((int) (temperature*10)%10); 177 | display.print("C "); 178 | if(showVoltage){ 179 | unsigned int batVoltage = readVcc(); 180 | display.print((int) batVoltage/1000); display.print(","); 181 | display.print((int) (batVoltage/10)%100); 182 | display.print("V"); 183 | } 184 | //Second-Blinking 185 | if(t.sec%2 || !active){ 186 | display.fillRect(46, 30, 4, 4, 0); 187 | display.fillRect(46, 46, 4, 4, 0); 188 | } 189 | standbyTimer = millis(); //force Standby to save power 190 | } 191 | 192 | 193 | void drawMainMenu(){ 194 | 195 | if(buttonUp.wasPressed()) menuVal--; 196 | if(buttonDown.wasPressed()) menuVal++; 197 | 198 | if(menuVal>6 && menuVal<99) menuVal = 0; //circle navigation 199 | else if(menuVal>99) menuVal = 6; 200 | 201 | if(buttonMid.wasPressed()){ 202 | currentPage = menuVal; 203 | buttonMid.read(); //make sure wasPressed is not activated again 204 | } 205 | 206 | display.setCursor(0, 5); 207 | display.clearDisplay(); 208 | display.setTextSize(1); 209 | 210 | display.setTextColor((menuVal == 0), (menuVal != 0)); 211 | display.println(F("Uhr")); 212 | 213 | display.setTextColor((menuVal == 1), (menuVal != 1)); 214 | display.println(F("Stoppuhr")); 215 | 216 | display.setTextColor((menuVal == 2), (menuVal != 2)); 217 | display.println(F("Timer")); 218 | 219 | display.setTextColor((menuVal == 3), (menuVal != 3)); 220 | display.println(F("Zeit einstellen")); 221 | 222 | display.setTextColor((menuVal == 4), (menuVal != 4)); 223 | display.println(F("Spiele")); 224 | 225 | display.setTextColor((menuVal == 5), (menuVal != 5)); 226 | display.println(F("Einstellungen")); 227 | 228 | display.setTextColor((menuVal == 6), (menuVal != 6)); 229 | display.println(F("Debugging")); 230 | 231 | 232 | } 233 | 234 | void drawStopwatch(){ 235 | standbyTimer = millis()+activeTime*1000; //force reset Standby Timer 236 | 237 | if(buttonUp.wasPressed()) stopwatchActive = !stopwatchActive; 238 | if(buttonDown.wasPressed()){ 239 | stopwatchTimer = millis(); 240 | stopwatchMs = 0; 241 | } 242 | 243 | if(!stopwatchActive) stopwatchTimer = millis() - stopwatchMs; 244 | stopwatchMs = millis()-stopwatchTimer; 245 | 246 | display.clearDisplay(); 247 | drawDigit( 2, 20, ((stopwatchMs/60000)/10), 0); 248 | drawDigit(24, 20, ((stopwatchMs/60000)%10), 0); 249 | drawDigit(52, 20, (stopwatchMs/1000%60)/10, 0); 250 | drawDigit(74, 20, (stopwatchMs/1000%60)%10, 0); 251 | display.setCursor(4, 63); 252 | display.setTextColor(BLACK, WHITE); 253 | display.setTextSize(2); 254 | if(stopwatchMs%1000 < 10) display.print(0); 255 | if(stopwatchMs%1000 < 100) display.print(0); 256 | display.print(stopwatchMs%1000); display.print("ms"); 257 | display.fillRect(46, 30, 4, 4, 0); 258 | display.fillRect(46, 46, 4, 4, 0); 259 | 260 | if(buttonMid.wasPressed()){ 261 | stopwatchActive = false; 262 | stopwatchMs = 0; 263 | currentPage = 9; //switch back to menu 264 | buttonMid.read(); //make sure wasPressed is not activated again 265 | } 266 | } 267 | 268 | void drawTimer(){ 269 | display.clearDisplay(); 270 | display.setTextColor(BLACK, WHITE); 271 | display.setCursor(0, 0); 272 | display.println(F("Hier ist\nnoch nichts")); 273 | 274 | if(buttonMid.wasPressed()){ 275 | currentPage = 9; //switch back to menu 276 | buttonMid.read(); //make sure wasPressed is not activated again 277 | } 278 | } 279 | 280 | 281 | void drawTimeConfig(){ 282 | standbyTimer = millis()+activeTime*1000; //force reset Standby Timer 283 | static boolean firstRunConfig = true; 284 | if(firstRunConfig){ 285 | cfg = t; //get time for initial values 286 | configVal = 0; 287 | } 288 | firstRunConfig = false; 289 | 290 | if(buttonMid.wasPressed()) configVal++; 291 | 292 | display.clearDisplay(); 293 | display.setCursor(0, 25); 294 | 295 | if(configVal == 0){ 296 | if(buttonUp.wasPressed() || buttonUp.pressedFor(500)) cfg.hour++; 297 | if(buttonDown.wasPressed() || buttonDown.pressedFor(500)) cfg.hour--; 298 | display.setTextColor(WHITE, BLACK); 299 | if(cfg.hour>23 && cfg.hour<99) cfg.hour = 0; //circle navigation 300 | else if(cfg.hour>99) cfg.hour = 23; 301 | } 302 | else display.setTextColor(BLACK, WHITE); 303 | if(cfg.hour<10) display.print("0"); 304 | display.print(cfg.hour); 305 | 306 | display.setTextColor(BLACK, WHITE); 307 | display.print(":"); 308 | if(configVal == 1){ 309 | if(buttonUp.wasPressed() || buttonUp.pressedFor(500)) cfg.min++; 310 | if(buttonDown.wasPressed() || buttonDown.pressedFor(500)) cfg.min--; 311 | display.setTextColor(WHITE, BLACK); 312 | if(cfg.min>59 && cfg.min<99) cfg.min = 0; //circle navigation 313 | else if(cfg.min>99) cfg.min = 59; 314 | } 315 | else display.setTextColor(BLACK, WHITE); 316 | if(cfg.min<10) display.print("0"); 317 | display.println(cfg.min); 318 | 319 | if(configVal == 2){ 320 | if(buttonUp.wasPressed() || buttonUp.pressedFor(500)) cfg.wday++; 321 | if(buttonDown.wasPressed() || buttonDown.pressedFor(500)) cfg.wday--; 322 | display.setTextColor(WHITE, BLACK); 323 | if(cfg.wday>7 && cfg.wday<15) cfg.wday = 1; //circle navigation 324 | else if(cfg.wday<1 || cfg.wday>15) cfg.wday = 7; 325 | } 326 | else display.setTextColor(BLACK, WHITE); 327 | display.println(gday[cfg.wday-1]); 328 | 329 | if(configVal == 3){ 330 | if(buttonUp.wasPressed() || buttonUp.pressedFor(500)) cfg.mday++; 331 | if(buttonDown.wasPressed() || buttonDown.pressedFor(500)) cfg.mday--; 332 | display.setTextColor(WHITE, BLACK); 333 | if(cfg.mday>31 && cfg.mday<99) cfg.mday = 1; //circle navigation 334 | else if(cfg.mday<1 || cfg.mday>99) cfg.mday = 31; 335 | } 336 | else display.setTextColor(BLACK, WHITE); 337 | display.print(cfg.mday); 338 | display.setTextColor(BLACK, WHITE); 339 | display.print("."); 340 | 341 | if(configVal == 4){ 342 | if(buttonUp.wasPressed() || buttonUp.pressedFor(500)) cfg.mon++; 343 | if(buttonDown.wasPressed() || buttonDown.pressedFor(500)) cfg.mon--; 344 | display.setTextColor(WHITE, BLACK); 345 | if(cfg.mon>12 && cfg.mon<15) cfg.mon = 1; //circle navigation 346 | else if(cfg.mon<1 || cfg.mon>15) cfg.mon = 12; 347 | } 348 | else display.setTextColor(BLACK, WHITE); 349 | display.print(cfg.mon); 350 | display.setTextColor(BLACK, WHITE); 351 | display.print("."); 352 | 353 | if(configVal == 5){ 354 | if(buttonUp.wasPressed() || buttonUp.pressedFor(500)) cfg.year++; 355 | if(buttonDown.wasPressed() || buttonDown.pressedFor(500)) cfg.year--; 356 | display.setTextColor(WHITE, BLACK); 357 | if(cfg.year>2060) cfg.year = 2000; //circle navigation 358 | else if(cfg.year<2000) cfg.year = 2060; 359 | } 360 | else display.setTextColor(BLACK, WHITE); 361 | display.print(cfg.year); 362 | display.setTextColor(BLACK, WHITE); 363 | display.println(); display.println(); 364 | 365 | display.setTextColor((configVal == 6), (configVal != 6)); 366 | display.println(F("OK")); 367 | 368 | if(buttonMid.wasPressed() && configVal == 7){ 369 | setTime(cfg.hour, cfg.min, 0, cfg.mday, cfg.mon, cfg.year, cfg.wday); 370 | currentPage = 0; 371 | firstRunConfig = true; 372 | } 373 | } 374 | 375 | void drawGames(){ 376 | standbyTimer = millis()+activeTime*1000; //force reset Standby Timer 377 | display.clearDisplay(); 378 | static boolean firstRunGames = true; 379 | static float ySpeed = 0; 380 | static int py = 0; 381 | static boolean gameOver = false; 382 | static byte score = 0; 383 | static int wallPos[3] = {100, 143, 186}; 384 | static int wallGap[3] = {40, 60, 0}; 385 | static unsigned long lastTime = millis(); 386 | 387 | if(firstRunGames){ 388 | ySpeed = py = score = 0; 389 | wallPos[0] = 100; 390 | wallPos[1] = 143; 391 | wallPos[2] = 186; 392 | lastTime = millis(); 393 | gameOver = false; 394 | } 395 | 396 | float deltaTime = float(millis()-lastTime); 397 | 398 | ySpeed += deltaTime/80; 399 | py += ySpeed; 400 | for(int i = 0; i<3; i++) { // draw walls 401 | display.fillRect(wallPos[i]-10, 0, 10, wallGap[i], 0); 402 | display.fillRect(wallPos[i]-10, wallGap[i]+30, 10, 96, 0); 403 | if(wallPos[i] > 5 && wallPos[i] < 25){ // detect wall 404 | if(wallGap[i] > py-5 || wallGap[i] < py-25) gameOver = true; //detect gap 405 | } 406 | if(wallPos[i]<=0){ // reset wall 407 | wallPos[i] += 129; 408 | wallGap[i] = random(5, 70); 409 | score++; 410 | } 411 | wallPos[i] -= deltaTime/80; // move walls 412 | } 413 | 414 | py = constrain(py, 5, 91); 415 | display.fillCircle(10, py, 5, 0); // draw bird 416 | 417 | display.setTextColor(BLACK, WHITE); 418 | display.setCursor(40, 2); 419 | display.print(F("SCORE: ")); 420 | display.println(score); 421 | 422 | if(buttonUp.isPressed()) ySpeed = -3; 423 | lastTime = millis(); 424 | 425 | if(gameOver) { 426 | firstRunGames = true; 427 | display.clearDisplay(); 428 | display.setCursor(20, 30); 429 | display.println(F("GAME OVER")); 430 | display.setCursor(20, 40); 431 | display.print(F("SCORE:")); 432 | display.println(score); 433 | display.refresh(); 434 | delay(3000); 435 | } 436 | else firstRunGames = false; 437 | 438 | if(buttonMid.wasPressed()){ 439 | firstRunGames = true; 440 | currentPage = 9; //switch back to menu 441 | buttonMid.read(); //make sure wasPressed is not activated again 442 | } 443 | } 444 | 445 | void drawSettings(){ 446 | standbyTimer = millis()+activeTime*1000; //force reset Standby Timer 447 | static int settingsVal = 0; 448 | 449 | if(buttonMid.wasPressed()) settingsVal++; 450 | 451 | display.clearDisplay(); 452 | display.setCursor(0, 2); 453 | 454 | if(settingsVal == 0){ 455 | if(buttonUp.wasPressed() || buttonUp.pressedFor(500)) activeTime++; 456 | if(buttonDown.wasPressed() || buttonDown.pressedFor(500)) activeTime--; 457 | display.setTextColor(WHITE, BLACK); 458 | if(activeTime>60) activeTime = 30; 459 | else if(activeTime<5) activeTime = 5; 460 | } 461 | else display.setTextColor(BLACK, WHITE); 462 | display.print(F("Standby: ")); 463 | display.print(activeTime); 464 | display.println("s"); 465 | 466 | if(settingsVal == 1){ 467 | if(buttonUp.wasPressed() || buttonDown.wasPressed()) flicker = !flicker; 468 | display.setTextColor(WHITE, BLACK); 469 | } 470 | else display.setTextColor(BLACK, WHITE); 471 | display.print(F("Flicker: ")); 472 | display.println(flicker); 473 | 474 | if(settingsVal == 2){ 475 | if(buttonUp.wasPressed() || buttonDown.wasPressed()) showVoltage = !showVoltage; 476 | display.setTextColor(WHITE, BLACK); 477 | } 478 | else display.setTextColor(BLACK, WHITE); 479 | display.print(F("V anzeigen: ")); 480 | display.println(showVoltage); 481 | 482 | display.setTextColor((settingsVal == 3), (settingsVal != 3)); 483 | display.println(F("OK")); 484 | 485 | if(buttonMid.wasPressed() && settingsVal == 4){ 486 | settingsVal = 0; 487 | currentPage = 9; //switch back to menu 488 | menuVal = 5; 489 | buttonMid.read(); //make sure wasPressed is not activated again 490 | } 491 | } 492 | 493 | void drawDebug(){ 494 | display.clearDisplay(); 495 | display.setTextColor(BLACK, WHITE); 496 | display.setCursor(0, 0); 497 | display.println(F("Hier ist\nnoch nichts")); 498 | 499 | if(buttonMid.wasPressed()){ 500 | currentPage = 9; //switch back to menu 501 | buttonMid.read(); //make sure wasPressed is not activated again 502 | } 503 | } 504 | 505 | void drawDigit(int posX, int posY, int digit, boolean col){ 506 | switch (digit){ 507 | case 0: 508 | display.fillRect(posX, posY, 20, 8, col); 509 | display.fillRect(posX, posY, 7, 40, col); 510 | display.fillRect(posX+13, posY, 7, 40, col); 511 | display.fillRect(posX, posY+32, 20, 8, col); 512 | break; 513 | case 1: 514 | display.fillRect(posX+13, posY, 7, 40, col); 515 | break; 516 | case 2: 517 | display.fillRect(posX, posY, 20, 8, col); 518 | display.fillRect(posX, posY+16, 20, 8, col); 519 | display.fillRect(posX, posY+24, 7, 8, col); 520 | display.fillRect(posX+13, posY, 7, 16, col); 521 | display.fillRect(posX, posY+32, 20, 8, col); 522 | break; 523 | case 3: 524 | display.fillRect(posX, posY, 20, 8, col); 525 | display.fillRect(posX, posY+16, 20, 8, col); 526 | display.fillRect(posX+13, posY, 7, 40, col); 527 | display.fillRect(posX, posY+32, 20, 8, col); 528 | break; 529 | case 4: 530 | display.fillRect(posX, posY, 7, 16, col); 531 | display.fillRect(posX, posY+16, 20, 8, col); 532 | display.fillRect(posX+13, posY, 7, 40, col); 533 | break; 534 | case 5: 535 | display.fillRect(posX, posY, 20, 8, col); 536 | display.fillRect(posX, posY+16, 20, 8, col); 537 | display.fillRect(posX+13, posY+24, 7, 8, col); 538 | display.fillRect(posX, posY, 7, 16, col); 539 | display.fillRect(posX, posY+32, 20, 8, col); 540 | break; 541 | case 6: 542 | display.fillRect(posX, posY, 20, 8, col); 543 | display.fillRect(posX, posY+16, 20, 8, col); 544 | display.fillRect(posX+13, posY+24, 7, 8, col); 545 | display.fillRect(posX, posY, 7, 40, col); 546 | display.fillRect(posX, posY+32, 20, 8, col); 547 | break; 548 | case 7: 549 | display.fillRect(posX, posY, 20, 8, col); 550 | display.fillRect(posX+13, posY, 7, 40, col); 551 | break; 552 | case 8: 553 | display.fillRect(posX, posY, 20, 8, col); 554 | display.fillRect(posX, posY, 7, 40, col); 555 | display.fillRect(posX, posY+16, 20, 8, col); 556 | display.fillRect(posX+13, posY, 7, 40, col); 557 | display.fillRect(posX, posY+32, 20, 8, col); 558 | break; 559 | case 9: 560 | display.fillRect(posX, posY, 20, 8, col); 561 | display.fillRect(posX, posY, 7, 16, col); 562 | display.fillRect(posX, posY+16, 20, 8, col); 563 | display.fillRect(posX+13, posY, 7, 40, col); 564 | display.fillRect(posX, posY+32, 20, 8, col); 565 | break; 566 | } 567 | } 568 | 569 | void setTime(int h, int m, int s, int d, int mn, int y, int wd){ 570 | t.hour = h; 571 | t.min = m; 572 | t.sec = s; 573 | t.mday = d; 574 | t.mon = mn; 575 | t.year = y; 576 | t.wday = wd; 577 | DS3231_set(t); 578 | } 579 | 580 | long readVcc(){ 581 | // http://provideyourown.com/2012/secret-arduino-voltmeter-measure-battery-voltage/ 582 | // Read 1.1V reference against AVcc 583 | // set the reference to Vcc and the measurement to the internal 1.1V reference 584 | ADMUX = _BV(REFS0) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1); 585 | 586 | delay(2); // Wait for Vref to settle 587 | ADCSRA |= _BV(ADSC); // Start conversion 588 | while (bit_is_set(ADCSRA,ADSC)); // measuring 589 | 590 | uint8_t low = ADCL; // must read ADCL first - it then locks ADCH 591 | uint8_t high = ADCH; // unlocks both 592 | 593 | long result = (high<<8) | low; 594 | 595 | result = 1125300L / result; // Calculate Vcc (in mV); 1125300 = 1.1*1023*1000 596 | return result; // Vcc in millivolts 597 | } 598 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /eagle/Chronio REV3.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 | MK 2016 162 | coretechrobotics.blogspot.com 163 | CHRONIO 164 | REV3 165 | 79410 166 | DS3231 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 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 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | >NAME 332 | >VALUE 333 | 334 | 335 | 336 | 337 | 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 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | * 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | * 521 | >NAME 522 | >VALUE 523 | 524 | 525 | 526 | 527 | <BR>Wurth Elektronik FPC Connector and FFC Cable<br><Hr> 528 | <BR><BR> 529 | <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0> 530 | <TR> 531 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><BR><br> 532 | &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<BR> 533 | <BR> 534 | <BR> 535 | <BR><BR></FONT> 536 | </TD> 537 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><br> 538 | -----<BR> 539 | -----<BR> 540 | -----<BR> 541 | -----<BR> 542 | -----<BR><BR></FONT> 543 | </TD> 544 | <TD BGCOLOR="#cccccc" ALIGN=CENTER> <FONT FACE=ARIAL SIZE=3><br> 545 | ---------------------------<BR> 546 | <B><I><span style='font-size:26pt; 547 | color:#FF6600;'>WE </span></i></b> 548 | <BR> 549 | ---------------------------<BR><b>Würth Elektronik</b></FONT> 550 | </TD> 551 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><br> 552 | ---------O---<BR> 553 | ----O--------<BR> 554 | ---------O---<BR> 555 | ----O--------<BR> 556 | ---------O---<BR><BR></FONT> 557 | </TD> 558 | 559 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><BR> 560 | &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<BR> 561 | <BR> 562 | <BR> 563 | <BR> 564 | <BR><BR></FONT> 565 | </TD> 566 | </TR> 567 | 568 | <TR> 569 | <TD COLSPAN=7>&nbsp; 570 | </TD> 571 | </TR> 572 | 573 | </TABLE> 574 | <B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;More than you expect<BR><BR><BR></B> 575 | 576 | <HR><BR> 577 | <b>Würth Elektronik eiSos GmbH & Co. KG</b><br> 578 | EMC & Inductive Solutions<br> 579 | 580 | Max-Eyth-Str.1<br> 581 | D-74638 Waldenburg<br> 582 | <br> 583 | Tel: +49 (0)7942-945-0<br> 584 | Fax:+49 (0)7942-945-405<br> 585 | <br> 586 | <a href="http://www.we-online.com/eagle">http://www.we-online.com/eagle</a><br> 587 | <a href="mailto:libraries@we-online.com">libraries@we-online.com</a> <BR><BR> 588 | <br><HR><BR> 589 | Neither CadSoft nor WE-eiSos does warrant that this library is error-free or <br> 590 | that it meets your specific requirements.<br><BR> 591 | Please contact us for more information.<br><BR><br> 592 | <hr> 593 | Eagle Version 6, Library Revision 2015b, 08.04.2015<br> 594 | <HR> 595 | Copyright: Würth Elektronik 596 | 597 | 598 | <b>WR-FPC 0.5mm SMT ZIF Horizontal Bottom Contact, 10 Pins 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | >NAME 620 | 1 621 | >VALUE 622 | 623 | 624 | 625 | 626 | <b>Resistors, Capacitors, Inductors</b><p> 627 | Based on the previous libraries: 628 | <ul> 629 | <li>r.lbr 630 | <li>cap.lbr 631 | <li>cap-fe.lbr 632 | <li>captant.lbr 633 | <li>polcap.lbr 634 | <li>ipc-smd.lbr 635 | </ul> 636 | All SMD packages are defined according to the IPC specifications and CECC<p> 637 | <author>Created by librarian@cadsoft.de</author><p> 638 | <p> 639 | for Electrolyt Capacitors see also :<p> 640 | www.bccomponents.com <p> 641 | www.panasonic.com<p> 642 | www.kemet.com<p> 643 | <p> 644 | for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p> 645 | 646 | <map name="nav_main"> 647 | <area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""> 648 | <area shape="rect" coords="0,24,140,51" href="../about.asp" title=""> 649 | <area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""> 650 | <area shape="rect" coords="0,78,139,103" href="../products.asp" title=""> 651 | <area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""> 652 | <area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""> 653 | <area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""> 654 | <area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""> 655 | <area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""> 656 | <area shape="default" nohref> 657 | </map> 658 | 659 | <html> 660 | 661 | <title></title> 662 | 663 | <LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"> 664 | 665 | <body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"> 666 | <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"> 667 | <tr valign="top"> 668 | 669 | </td> 670 | <! <td width="10">&nbsp;</td> 671 | <td width="90%"> 672 | 673 | <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b> 674 | <P> 675 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2> 676 | <TR> 677 | <TD COLSPAN=8> 678 | <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT> 679 | </TD> 680 | </TR> 681 | <TR> 682 | <TD ALIGN=CENTER> 683 | <B> 684 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT> 685 | </B> 686 | </TD> 687 | <TD ALIGN=CENTER> 688 | <B> 689 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT> 690 | </B> 691 | </TD> 692 | <TD ALIGN=CENTER> 693 | <B> 694 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT> 695 | </B> 696 | </TD> 697 | <TD ALIGN=CENTER> 698 | <B> 699 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT> 700 | </B> 701 | </TD> 702 | <TD ALIGN=CENTER> 703 | <B> 704 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT> 705 | </B> 706 | </TD> 707 | <TD ALIGN=CENTER> 708 | <B> 709 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT> 710 | </B> 711 | </TD> 712 | <TD ALIGN=CENTER> 713 | <B> 714 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT> 715 | </B> 716 | </TD> 717 | <TD ALIGN=CENTER> 718 | <B> 719 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT> 720 | </B> 721 | </TD><TD>&nbsp;</TD> 722 | </TR> 723 | <TR> 724 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 > 725 | 3005P<BR> 726 | 3006P<BR> 727 | 3006W<BR> 728 | 3006Y<BR> 729 | 3009P<BR> 730 | 3009W<BR> 731 | 3009Y<BR> 732 | 3057J<BR> 733 | 3057L<BR> 734 | 3057P<BR> 735 | 3057Y<BR> 736 | 3059J<BR> 737 | 3059L<BR> 738 | 3059P<BR> 739 | 3059Y<BR></FONT> 740 | </TD> 741 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 742 | -<BR> 743 | 89P<BR> 744 | 89W<BR> 745 | 89X<BR> 746 | 89PH<BR> 747 | 76P<BR> 748 | 89XH<BR> 749 | 78SLT<BR> 750 | 78L&nbsp;ALT<BR> 751 | 56P&nbsp;ALT<BR> 752 | 78P&nbsp;ALT<BR> 753 | T8S<BR> 754 | 78L<BR> 755 | 56P<BR> 756 | 78P<BR></FONT> 757 | </TD> 758 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 759 | -<BR> 760 | T18/784<BR> 761 | 783<BR> 762 | 781<BR> 763 | -<BR> 764 | -<BR> 765 | -<BR> 766 | 2199<BR> 767 | 1697/1897<BR> 768 | 1680/1880<BR> 769 | 2187<BR> 770 | -<BR> 771 | -<BR> 772 | -<BR> 773 | -<BR></FONT> 774 | </TD> 775 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 776 | -<BR> 777 | 8035EKP/CT20/RJ-20P<BR> 778 | -<BR> 779 | RJ-20X<BR> 780 | -<BR> 781 | -<BR> 782 | -<BR> 783 | 1211L<BR> 784 | 8012EKQ&nbsp;ALT<BR> 785 | 8012EKR&nbsp;ALT<BR> 786 | 1211P<BR> 787 | 8012EKJ<BR> 788 | 8012EKL<BR> 789 | 8012EKQ<BR> 790 | 8012EKR<BR></FONT> 791 | </TD> 792 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 793 | -<BR> 794 | 2101P<BR> 795 | 2101W<BR> 796 | 2101Y<BR> 797 | -<BR> 798 | -<BR> 799 | -<BR> 800 | -<BR> 801 | -<BR> 802 | -<BR> 803 | -<BR> 804 | -<BR> 805 | 2102L<BR> 806 | 2102S<BR> 807 | 2102Y<BR></FONT> 808 | </TD> 809 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 810 | -<BR> 811 | EVMCOG<BR> 812 | -<BR> 813 | -<BR> 814 | -<BR> 815 | -<BR> 816 | -<BR> 817 | -<BR> 818 | -<BR> 819 | -<BR> 820 | -<BR> 821 | -<BR> 822 | -<BR> 823 | -<BR> 824 | -<BR></FONT> 825 | </TD> 826 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 827 | -<BR> 828 | 43P<BR> 829 | 43W<BR> 830 | 43Y<BR> 831 | -<BR> 832 | -<BR> 833 | -<BR> 834 | -<BR> 835 | 40L<BR> 836 | 40P<BR> 837 | 40Y<BR> 838 | 70Y-T602<BR> 839 | 70L<BR> 840 | 70P<BR> 841 | 70Y<BR></FONT> 842 | </TD> 843 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 844 | -<BR> 845 | -<BR> 846 | -<BR> 847 | -<BR> 848 | -<BR> 849 | -<BR> 850 | -<BR> 851 | -<BR> 852 | RT/RTR12<BR> 853 | RT/RTR12<BR> 854 | RT/RTR12<BR> 855 | -<BR> 856 | RJ/RJR12<BR> 857 | RJ/RJR12<BR> 858 | RJ/RJR12<BR></FONT> 859 | </TD> 860 | </TR> 861 | <TR> 862 | <TD COLSPAN=8>&nbsp; 863 | </TD> 864 | </TR> 865 | <TR> 866 | <TD COLSPAN=8> 867 | <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT> 868 | </TD> 869 | </TR> 870 | <TR> 871 | <TD ALIGN=CENTER> 872 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 873 | </TD> 874 | <TD ALIGN=CENTER> 875 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 876 | </TD> 877 | <TD ALIGN=CENTER> 878 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 879 | </TD> 880 | <TD ALIGN=CENTER> 881 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 882 | </TD> 883 | <TD ALIGN=CENTER> 884 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 885 | </TD> 886 | <TD ALIGN=CENTER> 887 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 888 | </TD> 889 | <TD ALIGN=CENTER> 890 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 891 | </TD> 892 | <TD ALIGN=CENTER> 893 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 894 | </TD> 895 | </TR> 896 | <TR> 897 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 898 | 3250L<BR> 899 | 3250P<BR> 900 | 3250W<BR> 901 | 3250X<BR> 902 | 3252P<BR> 903 | 3252W<BR> 904 | 3252X<BR> 905 | 3260P<BR> 906 | 3260W<BR> 907 | 3260X<BR> 908 | 3262P<BR> 909 | 3262W<BR> 910 | 3262X<BR> 911 | 3266P<BR> 912 | 3266W<BR> 913 | 3266X<BR> 914 | 3290H<BR> 915 | 3290P<BR> 916 | 3290W<BR> 917 | 3292P<BR> 918 | 3292W<BR> 919 | 3292X<BR> 920 | 3296P<BR> 921 | 3296W<BR> 922 | 3296X<BR> 923 | 3296Y<BR> 924 | 3296Z<BR> 925 | 3299P<BR> 926 | 3299W<BR> 927 | 3299X<BR> 928 | 3299Y<BR> 929 | 3299Z<BR></FONT> 930 | </TD> 931 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 932 | -<BR> 933 | 66P&nbsp;ALT<BR> 934 | 66W&nbsp;ALT<BR> 935 | 66X&nbsp;ALT<BR> 936 | 66P&nbsp;ALT<BR> 937 | 66W&nbsp;ALT<BR> 938 | 66X&nbsp;ALT<BR> 939 | -<BR> 940 | 64W&nbsp;ALT<BR> 941 | -<BR> 942 | 64P&nbsp;ALT<BR> 943 | 64W&nbsp;ALT<BR> 944 | 64X&nbsp;ALT<BR> 945 | 64P<BR> 946 | 64W<BR> 947 | 64X<BR> 948 | 66X&nbsp;ALT<BR> 949 | 66P&nbsp;ALT<BR> 950 | 66W&nbsp;ALT<BR> 951 | 66P<BR> 952 | 66W<BR> 953 | 66X<BR> 954 | 67P<BR> 955 | 67W<BR> 956 | 67X<BR> 957 | 67Y<BR> 958 | 67Z<BR> 959 | 68P<BR> 960 | 68W<BR> 961 | 68X<BR> 962 | 67Y&nbsp;ALT<BR> 963 | 67Z&nbsp;ALT<BR></FONT> 964 | </TD> 965 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 966 | 5050<BR> 967 | 5091<BR> 968 | 5080<BR> 969 | 5087<BR> 970 | -<BR> 971 | -<BR> 972 | -<BR> 973 | -<BR> 974 | -<BR> 975 | -<BR> 976 | -<BR> 977 | T63YB<BR> 978 | T63XB<BR> 979 | -<BR> 980 | -<BR> 981 | -<BR> 982 | 5887<BR> 983 | 5891<BR> 984 | 5880<BR> 985 | -<BR> 986 | -<BR> 987 | -<BR> 988 | T93Z<BR> 989 | T93YA<BR> 990 | T93XA<BR> 991 | T93YB<BR> 992 | T93XB<BR> 993 | -<BR> 994 | -<BR> 995 | -<BR> 996 | -<BR> 997 | -<BR></FONT> 998 | </TD> 999 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1000 | -<BR> 1001 | -<BR> 1002 | -<BR> 1003 | -<BR> 1004 | -<BR> 1005 | -<BR> 1006 | -<BR> 1007 | -<BR> 1008 | -<BR> 1009 | -<BR> 1010 | 8026EKP<BR> 1011 | 8026EKW<BR> 1012 | 8026EKM<BR> 1013 | 8026EKP<BR> 1014 | 8026EKB<BR> 1015 | 8026EKM<BR> 1016 | 1309X<BR> 1017 | 1309P<BR> 1018 | 1309W<BR> 1019 | 8024EKP<BR> 1020 | 8024EKW<BR> 1021 | 8024EKN<BR> 1022 | RJ-9P/CT9P<BR> 1023 | RJ-9W<BR> 1024 | RJ-9X<BR> 1025 | -<BR> 1026 | -<BR> 1027 | -<BR> 1028 | -<BR> 1029 | -<BR> 1030 | -<BR> 1031 | -<BR></FONT> 1032 | </TD> 1033 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1034 | -<BR> 1035 | -<BR> 1036 | -<BR> 1037 | -<BR> 1038 | -<BR> 1039 | -<BR> 1040 | -<BR> 1041 | -<BR> 1042 | -<BR> 1043 | -<BR> 1044 | 3103P<BR> 1045 | 3103Y<BR> 1046 | 3103Z<BR> 1047 | 3103P<BR> 1048 | 3103Y<BR> 1049 | 3103Z<BR> 1050 | -<BR> 1051 | -<BR> 1052 | -<BR> 1053 | -<BR> 1054 | -<BR> 1055 | -<BR> 1056 | 3105P/3106P<BR> 1057 | 3105W/3106W<BR> 1058 | 3105X/3106X<BR> 1059 | 3105Y/3106Y<BR> 1060 | 3105Z/3105Z<BR> 1061 | 3102P<BR> 1062 | 3102W<BR> 1063 | 3102X<BR> 1064 | 3102Y<BR> 1065 | 3102Z<BR></FONT> 1066 | </TD> 1067 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1068 | -<BR> 1069 | -<BR> 1070 | -<BR> 1071 | -<BR> 1072 | -<BR> 1073 | -<BR> 1074 | -<BR> 1075 | -<BR> 1076 | -<BR> 1077 | -<BR> 1078 | -<BR> 1079 | -<BR> 1080 | -<BR> 1081 | -<BR> 1082 | -<BR> 1083 | -<BR> 1084 | -<BR> 1085 | -<BR> 1086 | -<BR> 1087 | -<BR> 1088 | -<BR> 1089 | -<BR> 1090 | EVMCBG<BR> 1091 | EVMCCG<BR> 1092 | -<BR> 1093 | -<BR> 1094 | -<BR> 1095 | -<BR> 1096 | -<BR> 1097 | -<BR> 1098 | -<BR> 1099 | -<BR></FONT> 1100 | </TD> 1101 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1102 | 55-1-X<BR> 1103 | 55-4-X<BR> 1104 | 55-3-X<BR> 1105 | 55-2-X<BR> 1106 | -<BR> 1107 | -<BR> 1108 | -<BR> 1109 | -<BR> 1110 | -<BR> 1111 | -<BR> 1112 | -<BR> 1113 | -<BR> 1114 | -<BR> 1115 | -<BR> 1116 | -<BR> 1117 | -<BR> 1118 | 50-2-X<BR> 1119 | 50-4-X<BR> 1120 | 50-3-X<BR> 1121 | -<BR> 1122 | -<BR> 1123 | -<BR> 1124 | 64P<BR> 1125 | 64W<BR> 1126 | 64X<BR> 1127 | 64Y<BR> 1128 | 64Z<BR> 1129 | -<BR> 1130 | -<BR> 1131 | -<BR> 1132 | -<BR> 1133 | -<BR></FONT> 1134 | </TD> 1135 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1136 | RT/RTR22<BR> 1137 | RT/RTR22<BR> 1138 | RT/RTR22<BR> 1139 | RT/RTR22<BR> 1140 | RJ/RJR22<BR> 1141 | RJ/RJR22<BR> 1142 | RJ/RJR22<BR> 1143 | RT/RTR26<BR> 1144 | RT/RTR26<BR> 1145 | RT/RTR26<BR> 1146 | RJ/RJR26<BR> 1147 | RJ/RJR26<BR> 1148 | RJ/RJR26<BR> 1149 | RJ/RJR26<BR> 1150 | RJ/RJR26<BR> 1151 | RJ/RJR26<BR> 1152 | RT/RTR24<BR> 1153 | RT/RTR24<BR> 1154 | RT/RTR24<BR> 1155 | RJ/RJR24<BR> 1156 | RJ/RJR24<BR> 1157 | RJ/RJR24<BR> 1158 | RJ/RJR24<BR> 1159 | RJ/RJR24<BR> 1160 | RJ/RJR24<BR> 1161 | -<BR> 1162 | -<BR> 1163 | -<BR> 1164 | -<BR> 1165 | -<BR> 1166 | -<BR> 1167 | -<BR></FONT> 1168 | </TD> 1169 | </TR> 1170 | <TR> 1171 | <TD COLSPAN=8>&nbsp; 1172 | </TD> 1173 | </TR> 1174 | <TR> 1175 | <TD COLSPAN=8> 1176 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 1177 | </TD> 1178 | </TR> 1179 | <TR> 1180 | <TD ALIGN=CENTER> 1181 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 1182 | </TD> 1183 | <TD ALIGN=CENTER> 1184 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1185 | </TD> 1186 | <TD ALIGN=CENTER> 1187 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1188 | </TD> 1189 | <TD ALIGN=CENTER> 1190 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1191 | </TD> 1192 | <TD ALIGN=CENTER> 1193 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 1194 | </TD> 1195 | <TD ALIGN=CENTER> 1196 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1197 | </TD> 1198 | <TD ALIGN=CENTER> 1199 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 1200 | </TD> 1201 | <TD ALIGN=CENTER> 1202 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 1203 | </TD> 1204 | </TR> 1205 | <TR> 1206 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1207 | 3323P<BR> 1208 | 3323S<BR> 1209 | 3323W<BR> 1210 | 3329H<BR> 1211 | 3329P<BR> 1212 | 3329W<BR> 1213 | 3339H<BR> 1214 | 3339P<BR> 1215 | 3339W<BR> 1216 | 3352E<BR> 1217 | 3352H<BR> 1218 | 3352K<BR> 1219 | 3352P<BR> 1220 | 3352T<BR> 1221 | 3352V<BR> 1222 | 3352W<BR> 1223 | 3362H<BR> 1224 | 3362M<BR> 1225 | 3362P<BR> 1226 | 3362R<BR> 1227 | 3362S<BR> 1228 | 3362U<BR> 1229 | 3362W<BR> 1230 | 3362X<BR> 1231 | 3386B<BR> 1232 | 3386C<BR> 1233 | 3386F<BR> 1234 | 3386H<BR> 1235 | 3386K<BR> 1236 | 3386M<BR> 1237 | 3386P<BR> 1238 | 3386S<BR> 1239 | 3386W<BR> 1240 | 3386X<BR></FONT> 1241 | </TD> 1242 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1243 | 25P<BR> 1244 | 25S<BR> 1245 | 25RX<BR> 1246 | 82P<BR> 1247 | 82M<BR> 1248 | 82PA<BR> 1249 | -<BR> 1250 | -<BR> 1251 | -<BR> 1252 | 91E<BR> 1253 | 91X<BR> 1254 | 91T<BR> 1255 | 91B<BR> 1256 | 91A<BR> 1257 | 91V<BR> 1258 | 91W<BR> 1259 | 25W<BR> 1260 | 25V<BR> 1261 | 25P<BR> 1262 | -<BR> 1263 | 25S<BR> 1264 | 25U<BR> 1265 | 25RX<BR> 1266 | 25X<BR> 1267 | 72XW<BR> 1268 | 72XL<BR> 1269 | 72PM<BR> 1270 | 72RX<BR> 1271 | -<BR> 1272 | 72PX<BR> 1273 | 72P<BR> 1274 | 72RXW<BR> 1275 | 72RXL<BR> 1276 | 72X<BR></FONT> 1277 | </TD> 1278 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1279 | -<BR> 1280 | -<BR> 1281 | -<BR> 1282 | T7YB<BR> 1283 | T7YA<BR> 1284 | -<BR> 1285 | -<BR> 1286 | -<BR> 1287 | -<BR> 1288 | -<BR> 1289 | -<BR> 1290 | -<BR> 1291 | -<BR> 1292 | -<BR> 1293 | -<BR> 1294 | -<BR> 1295 | -<BR> 1296 | TXD<BR> 1297 | TYA<BR> 1298 | TYP<BR> 1299 | -<BR> 1300 | TYD<BR> 1301 | TX<BR> 1302 | -<BR> 1303 | 150SX<BR> 1304 | 100SX<BR> 1305 | 102T<BR> 1306 | 101S<BR> 1307 | 190T<BR> 1308 | 150TX<BR> 1309 | 101<BR> 1310 | -<BR> 1311 | -<BR> 1312 | 101SX<BR></FONT> 1313 | </TD> 1314 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1315 | ET6P<BR> 1316 | ET6S<BR> 1317 | ET6X<BR> 1318 | RJ-6W/8014EMW<BR> 1319 | RJ-6P/8014EMP<BR> 1320 | RJ-6X/8014EMX<BR> 1321 | TM7W<BR> 1322 | TM7P<BR> 1323 | TM7X<BR> 1324 | -<BR> 1325 | 8017SMS<BR> 1326 | -<BR> 1327 | 8017SMB<BR> 1328 | 8017SMA<BR> 1329 | -<BR> 1330 | -<BR> 1331 | CT-6W<BR> 1332 | CT-6H<BR> 1333 | CT-6P<BR> 1334 | CT-6R<BR> 1335 | -<BR> 1336 | CT-6V<BR> 1337 | CT-6X<BR> 1338 | -<BR> 1339 | -<BR> 1340 | 8038EKV<BR> 1341 | -<BR> 1342 | 8038EKX<BR> 1343 | -<BR> 1344 | -<BR> 1345 | 8038EKP<BR> 1346 | 8038EKZ<BR> 1347 | 8038EKW<BR> 1348 | -<BR></FONT> 1349 | </TD> 1350 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1351 | -<BR> 1352 | -<BR> 1353 | -<BR> 1354 | 3321H<BR> 1355 | 3321P<BR> 1356 | 3321N<BR> 1357 | 1102H<BR> 1358 | 1102P<BR> 1359 | 1102T<BR> 1360 | RVA0911V304A<BR> 1361 | -<BR> 1362 | RVA0911H413A<BR> 1363 | RVG0707V100A<BR> 1364 | RVA0607V(H)306A<BR> 1365 | RVA1214H213A<BR> 1366 | -<BR> 1367 | -<BR> 1368 | -<BR> 1369 | -<BR> 1370 | -<BR> 1371 | -<BR> 1372 | -<BR> 1373 | -<BR> 1374 | -<BR> 1375 | 3104B<BR> 1376 | 3104C<BR> 1377 | 3104F<BR> 1378 | 3104H<BR> 1379 | -<BR> 1380 | 3104M<BR> 1381 | 3104P<BR> 1382 | 3104S<BR> 1383 | 3104W<BR> 1384 | 3104X<BR></FONT> 1385 | </TD> 1386 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1387 | EVMQ0G<BR> 1388 | EVMQIG<BR> 1389 | EVMQ3G<BR> 1390 | EVMS0G<BR> 1391 | EVMQ0G<BR> 1392 | EVMG0G<BR> 1393 | -<BR> 1394 | -<BR> 1395 | -<BR> 1396 | EVMK4GA00B<BR> 1397 | EVM30GA00B<BR> 1398 | EVMK0GA00B<BR> 1399 | EVM38GA00B<BR> 1400 | EVMB6<BR> 1401 | EVLQ0<BR> 1402 | -<BR> 1403 | EVMMSG<BR> 1404 | EVMMBG<BR> 1405 | EVMMAG<BR> 1406 | -<BR> 1407 | -<BR> 1408 | EVMMCS<BR> 1409 | -<BR> 1410 | -<BR> 1411 | -<BR> 1412 | -<BR> 1413 | -<BR> 1414 | EVMM1<BR> 1415 | -<BR> 1416 | -<BR> 1417 | EVMM0<BR> 1418 | -<BR> 1419 | -<BR> 1420 | EVMM3<BR></FONT> 1421 | </TD> 1422 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1423 | -<BR> 1424 | -<BR> 1425 | -<BR> 1426 | 62-3-1<BR> 1427 | 62-1-2<BR> 1428 | -<BR> 1429 | -<BR> 1430 | -<BR> 1431 | -<BR> 1432 | -<BR> 1433 | -<BR> 1434 | -<BR> 1435 | -<BR> 1436 | -<BR> 1437 | -<BR> 1438 | -<BR> 1439 | 67R<BR> 1440 | -<BR> 1441 | 67P<BR> 1442 | -<BR> 1443 | -<BR> 1444 | -<BR> 1445 | -<BR> 1446 | 67X<BR> 1447 | 63V<BR> 1448 | 63S<BR> 1449 | 63M<BR> 1450 | -<BR> 1451 | -<BR> 1452 | 63H<BR> 1453 | 63P<BR> 1454 | -<BR> 1455 | -<BR> 1456 | 63X<BR></FONT> 1457 | </TD> 1458 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1459 | -<BR> 1460 | -<BR> 1461 | -<BR> 1462 | RJ/RJR50<BR> 1463 | RJ/RJR50<BR> 1464 | RJ/RJR50<BR> 1465 | -<BR> 1466 | -<BR> 1467 | -<BR> 1468 | -<BR> 1469 | -<BR> 1470 | -<BR> 1471 | -<BR> 1472 | -<BR> 1473 | -<BR> 1474 | -<BR> 1475 | -<BR> 1476 | -<BR> 1477 | -<BR> 1478 | -<BR> 1479 | -<BR> 1480 | -<BR> 1481 | -<BR> 1482 | -<BR> 1483 | -<BR> 1484 | -<BR> 1485 | -<BR> 1486 | -<BR> 1487 | -<BR> 1488 | -<BR> 1489 | -<BR> 1490 | -<BR> 1491 | -<BR> 1492 | -<BR></FONT> 1493 | </TD> 1494 | </TR> 1495 | </TABLE> 1496 | <P>&nbsp;<P> 1497 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3> 1498 | <TR> 1499 | <TD COLSPAN=7> 1500 | <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT> 1501 | <P> 1502 | <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT> 1503 | </TD> 1504 | </TR> 1505 | <TR> 1506 | <TD> 1507 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1508 | </TD> 1509 | <TD> 1510 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1511 | </TD> 1512 | <TD> 1513 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1514 | </TD> 1515 | <TD> 1516 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1517 | </TD> 1518 | <TD> 1519 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1520 | </TD> 1521 | <TD> 1522 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1523 | </TD> 1524 | <TD> 1525 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1526 | </TD> 1527 | </TR> 1528 | <TR> 1529 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1530 | 3224G<BR> 1531 | 3224J<BR> 1532 | 3224W<BR> 1533 | 3269P<BR> 1534 | 3269W<BR> 1535 | 3269X<BR></FONT> 1536 | </TD> 1537 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1538 | 44G<BR> 1539 | 44J<BR> 1540 | 44W<BR> 1541 | 84P<BR> 1542 | 84W<BR> 1543 | 84X<BR></FONT> 1544 | </TD> 1545 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1546 | -<BR> 1547 | -<BR> 1548 | -<BR> 1549 | ST63Z<BR> 1550 | ST63Y<BR> 1551 | -<BR></FONT> 1552 | </TD> 1553 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1554 | -<BR> 1555 | -<BR> 1556 | -<BR> 1557 | ST5P<BR> 1558 | ST5W<BR> 1559 | ST5X<BR></FONT> 1560 | </TD> 1561 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1562 | -<BR> 1563 | -<BR> 1564 | -<BR> 1565 | -<BR> 1566 | -<BR> 1567 | -<BR></FONT> 1568 | </TD> 1569 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1570 | -<BR> 1571 | -<BR> 1572 | -<BR> 1573 | -<BR> 1574 | -<BR> 1575 | -<BR></FONT> 1576 | </TD> 1577 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1578 | -<BR> 1579 | -<BR> 1580 | -<BR> 1581 | -<BR> 1582 | -<BR> 1583 | -<BR></FONT> 1584 | </TD> 1585 | </TR> 1586 | <TR> 1587 | <TD COLSPAN=7>&nbsp; 1588 | </TD> 1589 | </TR> 1590 | <TR> 1591 | <TD COLSPAN=7> 1592 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 1593 | </TD> 1594 | </TR> 1595 | <TR> 1596 | <TD> 1597 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1598 | </TD> 1599 | <TD> 1600 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1601 | </TD> 1602 | <TD> 1603 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1604 | </TD> 1605 | <TD> 1606 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1607 | </TD> 1608 | <TD> 1609 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1610 | </TD> 1611 | <TD> 1612 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1613 | </TD> 1614 | <TD> 1615 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1616 | </TD> 1617 | </TR> 1618 | <TR> 1619 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1620 | 3314G<BR> 1621 | 3314J<BR> 1622 | 3364A/B<BR> 1623 | 3364C/D<BR> 1624 | 3364W/X<BR> 1625 | 3313G<BR> 1626 | 3313J<BR></FONT> 1627 | </TD> 1628 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1629 | 23B<BR> 1630 | 23A<BR> 1631 | 21X<BR> 1632 | 21W<BR> 1633 | -<BR> 1634 | 22B<BR> 1635 | 22A<BR></FONT> 1636 | </TD> 1637 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1638 | ST5YL/ST53YL<BR> 1639 | ST5YJ/5T53YJ<BR> 1640 | ST-23A<BR> 1641 | ST-22B<BR> 1642 | ST-22<BR> 1643 | -<BR> 1644 | -<BR></FONT> 1645 | </TD> 1646 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1647 | ST-4B<BR> 1648 | ST-4A<BR> 1649 | -<BR> 1650 | -<BR> 1651 | -<BR> 1652 | ST-3B<BR> 1653 | ST-3A<BR></FONT> 1654 | </TD> 1655 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1656 | -<BR> 1657 | EVM-6YS<BR> 1658 | EVM-1E<BR> 1659 | EVM-1G<BR> 1660 | EVM-1D<BR> 1661 | -<BR> 1662 | -<BR></FONT> 1663 | </TD> 1664 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1665 | G4B<BR> 1666 | G4A<BR> 1667 | TR04-3S1<BR> 1668 | TRG04-2S1<BR> 1669 | -<BR> 1670 | -<BR> 1671 | -<BR></FONT> 1672 | </TD> 1673 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1674 | -<BR> 1675 | -<BR> 1676 | DVR-43A<BR> 1677 | CVR-42C<BR> 1678 | CVR-42A/C<BR> 1679 | -<BR> 1680 | -<BR></FONT> 1681 | </TD> 1682 | </TR> 1683 | </TABLE> 1684 | <P> 1685 | <FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT> 1686 | <P> 1687 | 1688 | &nbsp; 1689 | <P> 1690 | </td> 1691 | </tr> 1692 | </table> 1693 | </BODY></HTML> 1694 | 1695 | 1696 | <b>RESISTOR</b><p> 1697 | 1698 | 1699 | 1700 | 1701 | 1702 | 1703 | 1704 | 1705 | >NAME 1706 | >VALUE 1707 | 1708 | 1709 | 1710 | 1711 | 1712 | <b>CAPACITOR</b><p> 1713 | 1714 | 1715 | 1716 | 1717 | 1718 | 1719 | 1720 | 1721 | >NAME 1722 | >VALUE 1723 | 1724 | 1725 | 1726 | 1727 | 1728 | 1729 | 1730 | <BR>Würth Elektronik --Signal LEDs,White LEDs<br><Hr> 1731 | <BR><BR> 1732 | <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0> 1733 | <TR> 1734 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><BR><br> 1735 | &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<BR> 1736 | <BR> 1737 | <BR> 1738 | <BR><BR></FONT> 1739 | </TD> 1740 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><br> 1741 | -----<BR> 1742 | -----<BR> 1743 | -----<BR> 1744 | -----<BR> 1745 | -----<BR><BR></FONT> 1746 | </TD> 1747 | <TD BGCOLOR="#cccccc" ALIGN=CENTER> <FONT FACE=ARIAL SIZE=3><br> 1748 | ---------------------------<BR> 1749 | <B><I><span style='font-size:26pt; 1750 | color:#FF6600;'>WE </span></i></b> 1751 | <BR> 1752 | ---------------------------<BR><b>Würth Elektronik</b></FONT> 1753 | </TD> 1754 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><br> 1755 | ---------O---<BR> 1756 | ----O--------<BR> 1757 | ---------O---<BR> 1758 | ----O--------<BR> 1759 | ---------O---<BR><BR></FONT> 1760 | </TD> 1761 | 1762 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><BR> 1763 | &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<BR> 1764 | <BR> 1765 | <BR> 1766 | <BR> 1767 | <BR><BR></FONT> 1768 | </TD> 1769 | </TR> 1770 | 1771 | <TR> 1772 | <TD COLSPAN=7>&nbsp; 1773 | </TD> 1774 | </TR> 1775 | 1776 | </TABLE> 1777 | <B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;More than you expect<BR><BR><BR></B> 1778 | 1779 | <HR><BR> 1780 | <b>Würth Elektronik eiSos GmbH & Co. KG</b><br> 1781 | EMC & Inductive Solutions<br> 1782 | 1783 | Max-Eyth-Str.1<br> 1784 | D-74638 Waldenburg<br> 1785 | <br> 1786 | Tel: +49 (0)7942-945-0<br> 1787 | Fax:+49 (0)7942-945-405<br> 1788 | <br> 1789 | <a href="http://www.we-online.com/eagle">http://www.we-online.com/eagle</a><br> 1790 | <a href="mailto:libraries@we-online.com">libraries@we-online.com</a> <BR><BR> 1791 | <br><HR><BR> 1792 | Neither CadSoft nor WE-eiSos does warrant that this library is error-free or <br> 1793 | that it meets your specific requirements.<br><BR> 1794 | Please contact us for more information.<br><BR><br> 1795 | <hr> 1796 | Eagle Version 6, Library Revision 2015b, 08.04.2015<br> 1797 | <HR> 1798 | Copyright: Würth Elektronik 1799 | 1800 | 1801 | WL-SMCW SMD mono-color Chip LED 1802 | waterclear,Size: 0603, 1803 | 1804 | 1805 | 1806 | 1807 | 1808 | 1809 | 1810 | 1811 | >NAME 1812 | >VALUE 1813 | C 1814 | 1815 | 1816 | 1817 | 1818 | 1819 | 1820 | 1821 | 1822 | 1823 | 1824 | 1825 | 1826 | 1827 | 1828 | <b>Test Pins/Pads</b><p> 1829 | Cream on SMD OFF.<br> 1830 | new: Attribute TP_SIGNAL_NAME<br> 1831 | <author>Created by librarian@cadsoft.de</author> 1832 | 1833 | 1834 | <b>TEST PAD</b> 1835 | 1836 | >NAME 1837 | >VALUE 1838 | >TP_SIGNAL_NAME 1839 | 1840 | 1841 | 1842 | 1843 | <h3>SparkFun Electronics' preferred foot prints</h3> 1844 | In this library you'll find crystals and oscillators and other things that go "tick".<br><br> 1845 | 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. 1846 | <br><br> 1847 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 1848 | <br><br> 1849 | 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. 1850 | 1851 | 1852 | 1853 | 1854 | 1855 | 1856 | 1857 | 1858 | 1859 | 1860 | 1861 | >Name 1862 | >Value 1863 | 1864 | 1865 | 1866 | 1867 | 1868 | 1869 | 1870 | 1871 | 1872 | 1873 | 1874 | 1875 | 1876 | 1877 | 1878 | 1879 | <b>Small Outline Package 8</b><br> 1880 | NS Package M08A 1881 | 1882 | 1883 | 1884 | 1885 | 1886 | 1887 | 1888 | 1889 | 1890 | 1891 | 1892 | 1893 | 1894 | 1895 | >NAME 1896 | 1897 | 1898 | 1899 | 1900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | <b>Small Outline Package 8</b><br> 1912 | NS Package M08A 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | >NAME 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | <BR>Wurth Elektronik - Switches<br><Hr> 1944 | <BR><BR> 1945 | <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0> 1946 | <TR> 1947 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><BR><br> 1948 | &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<BR> 1949 | <BR> 1950 | <BR> 1951 | <BR><BR></FONT> 1952 | </TD> 1953 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><br> 1954 | -----<BR> 1955 | -----<BR> 1956 | -----<BR> 1957 | -----<BR> 1958 | -----<BR><BR></FONT> 1959 | </TD> 1960 | <TD BGCOLOR="#cccccc" ALIGN=CENTER> <FONT FACE=ARIAL SIZE=3><br> 1961 | ---------------------------<BR> 1962 | <B><I><span style='font-size:26pt; 1963 | color:#FF6600;'>WE </span></i></b> 1964 | <BR> 1965 | ---------------------------<BR><b>Würth Elektronik</b></FONT> 1966 | </TD> 1967 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><br> 1968 | ---------O---<BR> 1969 | ----O--------<BR> 1970 | ---------O---<BR> 1971 | ----O--------<BR> 1972 | ---------O---<BR><BR></FONT> 1973 | </TD> 1974 | 1975 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3><BR> 1976 | &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<BR> 1977 | <BR> 1978 | <BR> 1979 | <BR> 1980 | <BR><BR></FONT> 1981 | </TD> 1982 | </TR> 1983 | 1984 | <TR> 1985 | <TD COLSPAN=7>&nbsp; 1986 | </TD> 1987 | </TR> 1988 | 1989 | </TABLE> 1990 | <B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;More than you expect<BR><BR><BR></B> 1991 | 1992 | <HR><BR> 1993 | <b>Würth Elektronik eiSos GmbH & Co. KG</b><br> 1994 | EMC & Inductive Solutions<br> 1995 | 1996 | Max-Eyth-Str.1<br> 1997 | D-74638 Waldenburg<br> 1998 | <br> 1999 | Tel: +49 (0)7942-945-0<br> 2000 | Fax:+49 (0)7942-945-405<br> 2001 | <br> 2002 | <a href="http://www.we-online.com/eagle">http://www.we-online.com/eagle</a><br> 2003 | <a href="mailto:libraries@we-online.com">libraries@we-online.com</a> <BR><BR> 2004 | <br><HR><BR> 2005 | Neither CadSoft nor WE-eiSos does warrant that this library is error-free or <br> 2006 | that it meets your specific requirements.<br><BR> 2007 | Please contact us for more information.<br><BR><br> 2008 | <hr> 2009 | Eagle Version 6, Library Revision 2016d, 2016-05-06<br> 2010 | <HR> 2011 | Copyright: Würth Elektronik 2012 | 2013 | 2014 | WS-TUS-3.5x4.7 mm side push SMD Tact Switch, 4 pins 2015 | 2016 | 2017 | 2018 | 2019 | >NAME 2020 | >VALUE 2021 | 2022 | 2023 | 2024 | 2025 | 2026 | 2027 | 2028 | 2029 | 2030 | 1 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 | >NAME 2092 | >VALUE 2093 | 2094 | 2095 | 2096 | 2097 | 2098 | 2099 | 2100 | 2101 | 2102 | 2103 | 2104 | 2105 | >NAME 2106 | >VALUE 2107 | 2108 | 2109 | 2110 | 2111 | 2112 | 2113 | 2114 | 2115 | 2116 | 2117 | 2118 | 2119 | 2120 | 2121 | <b>EAGLE Design Rules</b> 2122 | <p> 2123 | Die Standard-Design-Rules sind so gewählt, dass sie für 2124 | die meisten Anwendungen passen. Sollte ihre Platine 2125 | besondere Anforderungen haben, treffen Sie die erforderlichen 2126 | Einstellungen hier und speichern die Design Rules unter 2127 | einem neuen Namen ab. 2128 | <b>Laen's PCB Order Design Rules</b> 2129 | <p> 2130 | Please make sure your boards conform to these design rules. 2131 | 2132 | 2133 | 2134 | 2135 | 2136 | 2137 | 2138 | 2139 | 2140 | 2141 | 2142 | 2143 | 2144 | 2145 | 2146 | 2147 | 2148 | 2149 | 2150 | 2151 | 2152 | 2153 | 2154 | 2155 | 2156 | 2157 | 2158 | 2159 | 2160 | 2161 | 2162 | 2163 | 2164 | 2165 | 2166 | 2167 | 2168 | 2169 | 2170 | 2171 | 2172 | 2173 | 2174 | 2175 | 2176 | 2177 | 2178 | 2179 | 2180 | 2181 | 2182 | 2183 | 2184 | 2185 | 2186 | 2187 | 2188 | 2189 | 2190 | 2191 | 2192 | 2193 | 2194 | 2195 | 2196 | 2197 | 2198 | 2199 | 2200 | 2201 | 2202 | 2203 | 2204 | 2205 | 2206 | 2207 | 2208 | 2209 | 2210 | 2211 | 2212 | 2213 | 2214 | 2215 | 2216 | 2217 | 2218 | 2219 | 2220 | 2221 | 2222 | 2223 | 2224 | 2225 | 2226 | 2227 | 2228 | 2229 | 2230 | 2231 | 2232 | 2233 | 2234 | 2235 | 2236 | 2237 | 2238 | 2239 | 2240 | 2241 | 2242 | 2243 | 2244 | 2245 | 2246 | 2247 | 2248 | 2249 | 2250 | 2251 | 2252 | 2253 | 2254 | 2255 | 2256 | 2257 | 2258 | 2259 | 2260 | 2261 | 2262 | 2263 | 2264 | 2265 | 2266 | 2267 | 2268 | 2269 | 2270 | 2271 | 2272 | 2273 | 2274 | 2275 | 2276 | 2277 | 2278 | 2279 | 2280 | 2281 | 2282 | 2283 | 2284 | 2285 | 2286 | 2287 | 2288 | 2289 | 2290 | 2291 | 2292 | 2293 | 2294 | 2295 | 2296 | 2297 | 2298 | 2299 | 2300 | 2301 | 2302 | 2303 | 2304 | 2305 | 2306 | 2307 | 2308 | 2309 | 2310 | 2311 | 2312 | 2313 | 2314 | 2315 | 2316 | 2317 | 2318 | 2319 | 2320 | 2321 | 2322 | 2323 | 2324 | 2325 | 2326 | 2327 | 2328 | 2329 | 2330 | 2331 | 2332 | 2333 | 2334 | 2335 | 2336 | 2337 | 2338 | 2339 | 2340 | 2341 | 2342 | 2343 | 2344 | 2345 | 2346 | 2347 | 2348 | 2349 | 2350 | 2351 | 2352 | 2353 | 2354 | 2355 | 2356 | 2357 | 2358 | 2359 | 2360 | 2361 | 2362 | 2363 | 2364 | 2365 | 2366 | 2367 | 2368 | 2369 | 2370 | 2371 | 2372 | 2373 | 2374 | 2375 | 2376 | 2377 | 2378 | 2379 | 2380 | 2381 | 2382 | 2383 | 2384 | 2385 | 2386 | 2387 | 2388 | 2389 | 2390 | 2391 | 2392 | 2393 | 2394 | 2395 | 2396 | 2397 | 2398 | 2399 | 2400 | 2401 | 2402 | 2403 | 2404 | 2405 | 2406 | 2407 | 2408 | 2409 | 2410 | 2411 | 2412 | 2413 | 2414 | 2415 | 2416 | 2417 | 2418 | 2419 | 2420 | 2421 | 2422 | 2423 | 2424 | 2425 | 2426 | 2427 | 2428 | 2429 | 2430 | 2431 | 2432 | 2433 | 2434 | 2435 | 2436 | 2437 | 2438 | 2439 | 2440 | 2441 | 2442 | 2443 | 2444 | 2445 | 2446 | 2447 | 2448 | 2449 | 2450 | 2451 | 2452 | 2453 | 2454 | 2455 | 2456 | 2457 | 2458 | 2459 | 2460 | 2461 | 2462 | 2463 | 2464 | 2465 | 2466 | 2467 | 2468 | 2469 | 2470 | 2471 | 2472 | 2473 | 2474 | 2475 | 2476 | 2477 | 2478 | 2479 | 2480 | 2481 | 2482 | 2483 | 2484 | 2485 | 2486 | 2487 | 2488 | 2489 | 2490 | 2491 | 2492 | 2493 | 2494 | 2495 | 2496 | 2497 | 2498 | 2499 | 2500 | 2501 | 2502 | 2503 | 2504 | 2505 | 2506 | 2507 | 2508 | 2509 | 2510 | 2511 | 2512 | 2513 | 2514 | 2515 | 2516 | 2517 | 2518 | 2519 | 2520 | 2521 | 2522 | 2523 | 2524 | 2525 | 2526 | 2527 | 2528 | 2529 | 2530 | 2531 | 2532 | 2533 | 2534 | 2535 | 2536 | 2537 | 2538 | 2539 | 2540 | 2541 | 2542 | 2543 | 2544 | 2545 | 2546 | 2547 | 2548 | 2549 | 2550 | 2551 | 2552 | 2553 | 2554 | 2555 | 2556 | 2557 | 2558 | 2559 | 2560 | 2561 | 2562 | 2563 | 2564 | 2565 | 2566 | 2567 | 2568 | 2569 | 2570 | 2571 | 2572 | 2573 | 2574 | 2575 | 2576 | 2577 | 2578 | 2579 | 2580 | 2581 | 2582 | 2583 | 2584 | 2585 | 2586 | 2587 | 2588 | 2589 | 2590 | 2591 | 2592 | 2593 | 2594 | 2595 | 2596 | 2597 | 2598 | 2599 | 2600 | 2601 | 2602 | 2603 | 2604 | 2605 | 2606 | 2607 | 2608 | 2609 | 2610 | 2611 | 2612 | 2613 | 2614 | 2615 | 2616 | 2617 | 2618 | 2619 | 2620 | 2621 | 2622 | 2623 | 2624 | 2625 | 2626 | 2627 | 2628 | 2629 | 2630 | 2631 | 2632 | 2633 | 2634 | 2635 | 2636 | 2637 | 2638 | 2639 | 2640 | 2641 | 2642 | 2643 | 2644 | 2645 | 2646 | 2647 | 2648 | 2649 | 2650 | 2651 | 2652 | 2653 | 2654 | 2655 | 2656 | 2657 | 2658 | 2659 | 2660 | 2661 | 2662 | 2663 | 2664 | 2665 | 2666 | 2667 | 2668 | 2669 | 2670 | 2671 | 2672 | 2673 | 2674 | 2675 | 2676 | 2677 | 2678 | 2679 | 2680 | 2681 | 2682 | 2683 | 2684 | 2685 | 2686 | 2687 | 2688 | 2689 | 2690 | 2691 | 2692 | 2693 | 2694 | 2695 | 2696 | 2697 | 2698 | 2699 | 2700 | 2701 | 2702 | 2703 | 2704 | 2705 | 2706 | 2707 | 2708 | 2709 | 2710 | 2711 | 2712 | 2713 | 2714 | 2715 | 2716 | 2717 | 2718 | 2719 | 2720 | 2721 | 2722 | 2723 | 2724 | 2725 | 2726 | 2727 | 2728 | 2729 | 2730 | 2731 | 2732 | 2733 | 2734 | 2735 | 2736 | 2737 | 2738 | 2739 | 2740 | 2741 | 2742 | 2743 | 2744 | 2745 | 2746 | 2747 | 2748 | 2749 | 2750 | 2751 | 2752 | 2753 | 2754 | 2755 | 2756 | 2757 | 2758 | 2759 | 2760 | 2761 | 2762 | 2763 | 2764 | 2765 | 2766 | 2767 | 2768 | 2769 | 2770 | 2771 | 2772 | 2773 | 2774 | 2775 | 2776 | 2777 | 2778 | 2779 | 2780 | 2781 | 2782 | 2783 | 2784 | 2785 | 2786 | 2787 | 2788 | 2789 | 2790 | 2791 | 2792 | 2793 | 2794 | 2795 | 2796 | 2797 | 2798 | 2799 | 2800 | 2801 | 2802 | 2803 | 2804 | 2805 | 2806 | 2807 | 2808 | 2809 | 2810 | 2811 | 2812 | 2813 | 2814 | 2815 | 2816 | 2817 | 2818 | 2819 | 2820 | 2821 | 2822 | 2823 | 2824 | 2825 | 2826 | 2827 | 2828 | 2829 | 2830 | 2831 | 2832 | 2833 | 2834 | 2835 | 2836 | 2837 | 2838 | 2839 | 2840 | 2841 | 2842 | 2843 | 2844 | 2845 | 2846 | 2847 | 2848 | 2849 | 2850 | 2851 | 2852 | 2853 | 2854 | 2855 | 2856 | 2857 | 2858 | 2859 | 2860 | 2861 | 2862 | 2863 | 2864 | 2865 | 2866 | 2867 | 2868 | 2869 | 2870 | 2871 | 2872 | 2873 | 2874 | 2875 | 2876 | 2877 | 2878 | 2879 | 2880 | 2881 | 2882 | 2883 | 2884 | 2885 | 2886 | 2887 | 2888 | 2889 | 2890 | 2891 | 2892 | 2893 | 2894 | 2895 | 2896 | 2897 | 2898 | 2899 | 2900 | Since Version 6.2.2 text objects can contain more than one line, 2901 | which will not be processed correctly with this version. 2902 | 2903 | 2904 | 2905 | --------------------------------------------------------------------------------