├── Arduino └── soldering_station │ └── soldering_station.ino ├── Diagrams ├── Arduino_encoder_display.jpg ├── breakout_board.jpg ├── hg_pinout_diagram.jpg └── si_pinout_diagram.jpg ├── EagleCAD ├── eagle.epf ├── solder_st_v1_eps3 copy.png ├── solder_st_v1_eps4 copy.png ├── soldering station brd.png ├── soldering station sch.png ├── soldering_station.brd └── soldering_station.sch └── README.md /Arduino/soldering_station/soldering_station.ino: -------------------------------------------------------------------------------- 1 | // include the library code: 2 | #include 3 | /* 4 | The circuit: 5 | * LCD RS pin to digital pin D12 6 | * LCD Enable pin to digital pin D11 7 | * LCD D4 pin to digital pin A5 8 | * LCD D5 pin to digital pin A4 9 | * LCD D6 pin to digital pin A3 10 | * LCD D7 pin to digital pin A2 11 | * LCD R/W pin to ground 12 | * LCD VSS pin to ground 13 | * LCD VCC pin to 5V 14 | * 10K potentiometer: ends to +5V and ground and wiper to LCD VO pin (pin 3) 15 | */ 16 | // initialize the library with the numbers of the interface pins 17 | LiquidCrystal lcd(12, 11, A5, A4, A3, A2); 18 | 19 | //Encoder's pins 20 | int pinA = 3; // Connected to D3 (Rotation) 21 | int pinB = 4; // Connected to D4 (Rotation) 22 | int SW = 5; // Connected to D5 (Pressing) 23 | 24 | const int sIThermoPin = A0; // the analog input pin for reading an amplified voltage of the soldering iron's thermocouple 25 | const int hGThermoPin = A1; // the analog input pin for reading an amplified voltage of the heat gun's thermocouple 26 | const int sIHeatingElementPin = 8; // the output pin for controlling the soldering iron's heating element 27 | const int hGFanPWMPin = 9; // the output pin for controlling the heat gun's fan 28 | const int hGHeatingElementPin = 7; // the output pin for controlling the heat gun's heating element 29 | 30 | int sIEncoderPosCount = 0; 31 | int hGEncoderPosCount = 0; 32 | 33 | int fanEncoderPosCount = 255; 34 | int fan_pwm_value = 255 ; 35 | 36 | int buttonLast=HIGH; 37 | int buttonMenuPos=0; 38 | 39 | int pinALast; 40 | int aVal; 41 | boolean bCW; 42 | 43 | int sIThermo = 0; 44 | int outputValue = 0; 45 | 46 | 47 | int hGThermo = 0; 48 | 49 | 50 | const int P_coef = 4; 51 | const int displayRedrawCount = 100; 52 | int cyclesCount = 0; 53 | 54 | 55 | void setup() { 56 | pinMode (pinA,INPUT_PULLUP); 57 | pinMode (pinB,INPUT_PULLUP); 58 | pinMode (SW,INPUT_PULLUP); 59 | pinMode (hGHeatingElementPin,OUTPUT); 60 | pinMode (sIHeatingElementPin,OUTPUT); 61 | /* Read Pin A 62 | Whatever state it's in will reflect the last position 63 | */ 64 | pinALast = digitalRead(pinA); 65 | Serial.begin (115200); 66 | 67 | // set up the LCD's number of columns and rows: 68 | lcd.begin(16, 2); 69 | 70 | } 71 | 72 | void loop() { 73 | 74 | // 2 step calib: 75 | // 1) {Xi set temperature, Yi temperature measured by an external device} : linear fit {80,48},{100,62},{160,92},{200,123},{300,197} 76 | // this gives us 0.672409 * x-8.56477, [1] 77 | // 2) {Xi set temperature, Yi temperature measured by an external device} : linear fit {100,136},{150,205},{200,268},{222,300} 78 | // this gives us 1.33191 * x + 3.48942, [2] 79 | // Let's substitute [1] into [2]: 3.48942 + 1.33191 * (0.672409 * x-8.56477) and then let's simplify => finally we have (0.895588 * x -7.91808) , [3] 80 | sIThermo = analogRead(sIThermoPin); // Reads the value from the specified analog pin, ADC will map input voltages between 0V and 5V into integer values between 0 and 1023 81 | sIThermo = (int) (0.895588 *sIThermo -7.91808); // use [3] 82 | 83 | // {Xi set temperature, Yi temperature measured by an external device}: linear fit {40,52},{80,95},{100,125},{160,195} 84 | //1.202 * x+2.56 85 | hGThermo = analogRead(hGThermoPin); // Reads the value from the specified analog pin, ADC will map input voltages between 0V and 5V into integer values between 0 and 1023 86 | hGThermo = (int)(1.202*hGThermo+2.56); 87 | 88 | int i; 89 | 90 | //thermostats are implemented by using an on-off controller 91 | 92 | //thermostat 1 93 | i = sIEncoderPosCount - sIThermo; 94 | i = i > 0 ? i : 0; 95 | 96 | int sI_out; 97 | 98 | if (i) 99 | sI_out = HIGH; 100 | else 101 | sI_out = LOW; 102 | 103 | digitalWrite(sIHeatingElementPin,sI_out); 104 | 105 | //thermostat 2 106 | i = hGEncoderPosCount - hGThermo; 107 | i = i > 0 ? i : 0; 108 | int hG_out; 109 | if (i) 110 | hG_out = HIGH; 111 | else 112 | hG_out = LOW; 113 | 114 | digitalWrite(hGHeatingElementPin,hG_out); 115 | 116 | //setting fan speed 117 | i = fanEncoderPosCount; 118 | i = i > 0 ? i : 0; 119 | i = i < 255 ? i : 255; 120 | 121 | fan_pwm_value = i; 122 | analogWrite(hGFanPWMPin,fan_pwm_value); 123 | 124 | 125 | // processing encoder signals 126 | aVal = digitalRead(pinA); 127 | if (aVal != pinALast){ // Means the knob is rotating 128 | // if the knob is rotating, we need to determine direction 129 | // We do that by reading pin B. 130 | if (digitalRead(pinB) != aVal) { // Means pin A Changed first - We're Rotating Clockwise 131 | switch(buttonMenuPos) 132 | { 133 | case 0: 134 | sIEncoderPosCount += 10; 135 | break; 136 | case 1: 137 | hGEncoderPosCount += 10; 138 | break; 139 | case 2: 140 | fanEncoderPosCount += 10; 141 | break; 142 | } 143 | bCW = true; 144 | } else {// Otherwise B changed first and we're moving CCW 145 | bCW = false; 146 | switch(buttonMenuPos) 147 | { 148 | case 0: 149 | sIEncoderPosCount -= 10; 150 | break; 151 | case 1: 152 | hGEncoderPosCount -= 10; 153 | break; 154 | case 2: 155 | fanEncoderPosCount -= 10; 156 | break; 157 | } 158 | } 159 | } 160 | 161 | int buttonStatus = digitalRead(SW); 162 | if ( buttonStatus == LOW && buttonStatus != buttonLast ) 163 | { 164 | Serial.println ("Pushbutton"); 165 | buttonMenuPos = buttonMenuPos == 2 ? 0 : buttonMenuPos+1 ; 166 | 167 | } 168 | 169 | 170 | 171 | buttonLast = buttonStatus ; 172 | 173 | 174 | 175 | 176 | 177 | char str[16]; 178 | 179 | char sISeparator = '-'; 180 | char hGSeparator = '-'; 181 | char fanSeparator = '='; 182 | 183 | //refresh display and serial output 184 | if (cyclesCount++ % displayRedrawCount == 0) { // skips some cycles, otherwise output processing will block input processing 185 | 186 | Serial.print("sIenc = "); 187 | Serial.print(sIEncoderPosCount); 188 | Serial.print(" sIThermo = "); 189 | Serial.print(sIThermo); 190 | Serial.print(" sI_out = "); 191 | Serial.print(sI_out); 192 | Serial.print(" hG_out = "); 193 | Serial.print(hG_out); 194 | Serial.print(" hGenc = "); 195 | Serial.print(hGEncoderPosCount); 196 | Serial.print(" hGThermo = "); 197 | Serial.print(hGThermo); 198 | Serial.print(" fanEnc = "); 199 | Serial.print(fanEncoderPosCount); 200 | Serial.print(" hgFan = "); 201 | Serial.print(fan_pwm_value); 202 | Serial.print(" buttonMenuPos = "); 203 | Serial.println(buttonMenuPos); 204 | 205 | switch (buttonMenuPos) 206 | { 207 | case 0: 208 | sISeparator = '*'; break; 209 | case 1: 210 | hGSeparator = '*'; break; 211 | case 2: 212 | fanSeparator = '*'; break; 213 | } 214 | 215 | sprintf(str, "S=%3d%c%3d ",sIThermo,sISeparator,sIEncoderPosCount); 216 | lcd.setCursor(0, 0); 217 | lcd.print(str); 218 | sprintf(str, "H=%3d%c%3d F%c%3d%%",hGThermo,hGSeparator,hGEncoderPosCount,fanSeparator,fan_pwm_value*100/255); 219 | lcd.setCursor(0, 1); 220 | lcd.print(str); 221 | } 222 | 223 | 224 | pinALast = aVal; 225 | 226 | 227 | } 228 | 229 | -------------------------------------------------------------------------------- /Diagrams/Arduino_encoder_display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeikrasnikov/soldering_station/cd5d759391e7276b2998aa09da67957b44b9156f/Diagrams/Arduino_encoder_display.jpg -------------------------------------------------------------------------------- /Diagrams/breakout_board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeikrasnikov/soldering_station/cd5d759391e7276b2998aa09da67957b44b9156f/Diagrams/breakout_board.jpg -------------------------------------------------------------------------------- /Diagrams/hg_pinout_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeikrasnikov/soldering_station/cd5d759391e7276b2998aa09da67957b44b9156f/Diagrams/hg_pinout_diagram.jpg -------------------------------------------------------------------------------- /Diagrams/si_pinout_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeikrasnikov/soldering_station/cd5d759391e7276b2998aa09da67957b44b9156f/Diagrams/si_pinout_diagram.jpg -------------------------------------------------------------------------------- /EagleCAD/eagle.epf: -------------------------------------------------------------------------------- 1 | [Eagle] 2 | Version="07 04 00" 3 | Platform="Windows" 4 | Serial="62191E841E-LSR-WLM-1EL" 5 | Globals="Globals" 6 | Desktop="Desktop" 7 | 8 | [Globals] 9 | AutoSaveProject=1 10 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/19inch.lbr" 11 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/40xx.lbr" 12 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/41xx.lbr" 13 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/45xx.lbr" 14 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/74ac-logic.lbr" 15 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/74ttl-din.lbr" 16 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/74xx-eu.lbr" 17 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/74xx-little-de.lbr" 18 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/74xx-little-us.lbr" 19 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/74xx-us.lbr" 20 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/751xx.lbr" 21 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/IQD-Frequency-Products.lbr" 22 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/advanced-test-technologies.lbr" 23 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/agilent-technologies.lbr" 24 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/allegro.lbr" 25 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/altera-cyclone-II.lbr" 26 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/altera-cyclone-III.lbr" 27 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/altera-stratix-iv.lbr" 28 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/altera.lbr" 29 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/am29-memory.lbr" 30 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/amd-mach.lbr" 31 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/amd.lbr" 32 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/amis.lbr" 33 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/analog-devices.lbr" 34 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/aplus.lbr" 35 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/ase.lbr" 36 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/atmel.lbr" 37 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/austriamicrosystems.lbr" 38 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/avago.lbr" 39 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/axis.lbr" 40 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/battery.lbr" 41 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/belton-engineering.lbr" 42 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/burr-brown.lbr" 43 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/busbar.lbr" 44 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/buzzer.lbr" 45 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/c-trimm.lbr" 46 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/california-micro-devices.lbr" 47 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/capacitor-wima.lbr" 48 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/chipcard-siemens.lbr" 49 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/cirrus-logic.lbr" 50 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-3m.lbr" 51 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-4ucon.lbr" 52 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-amp-champ.lbr" 53 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-amp-micromatch.lbr" 54 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-amp-mt.lbr" 55 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-amp-mt6.lbr" 56 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-amp-quick.lbr" 57 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-amp-te.lbr" 58 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-amp.lbr" 59 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-amphenol.lbr" 60 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-avx.lbr" 61 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-berg.lbr" 62 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-bosch.lbr" 63 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-chipcard-iso7816.lbr" 64 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-coax.lbr" 65 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-commcon.lbr" 66 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-conrad.lbr" 67 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-cpci.lbr" 68 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-cui.lbr" 69 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-cypressindustries.lbr" 70 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-deutsch.lbr" 71 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-dil.lbr" 72 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-ebyelectro.lbr" 73 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-elco.lbr" 74 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-erni.lbr" 75 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-faston.lbr" 76 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-fci.lbr" 77 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-friwo.lbr" 78 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-garry.lbr" 79 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-harting-h.lbr" 80 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-harting-ml.lbr" 81 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-harting-v.lbr" 82 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-harting.lbr" 83 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-hirose.lbr" 84 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-hirschmann.lbr" 85 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-jack.lbr" 86 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-jae.lbr" 87 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-jst.lbr" 88 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-kycon.lbr" 89 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-kyocera-elco.lbr" 90 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-lemo.lbr" 91 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-leotronics.lbr" 92 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-lsta.lbr" 93 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-lstb.lbr" 94 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-lumberg.lbr" 95 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-ml.lbr" 96 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-molex.lbr" 97 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-neutrik_ag.lbr" 98 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-omron.lbr" 99 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-panasonic.lbr" 100 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-panduit.lbr" 101 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-pc.lbr" 102 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-pc104.lbr" 103 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-254.lbr" 104 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-3.81.lbr" 105 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-350.lbr" 106 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-500.lbr" 107 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-508.lbr" 108 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-762.lbr" 109 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-me_max.lbr" 110 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-mkds_5.lbr" 111 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-phoenix-smkdsp.lbr" 112 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-ptr500.lbr" 113 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-pulse.lbr" 114 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-rib.lbr" 115 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-samtec.lbr" 116 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-shallin.lbr" 117 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-shiua-chyuan.lbr" 118 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-stewart.lbr" 119 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-stocko.lbr" 120 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-subd.lbr" 121 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-sullinselectronics.lbr" 122 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-thomas-betts.lbr" 123 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-tyco.lbr" 124 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-tycoelectronics.lbr" 125 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-vg.lbr" 126 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-wago-500.lbr" 127 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-wago-508.lbr" 128 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-wago.lbr" 129 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-wago255.lbr" 130 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-weidmueller-sl35.lbr" 131 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-wenzhou-yihua.lbr" 132 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-xmultiple.lbr" 133 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/con-yamaichi.lbr" 134 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/crystal.lbr" 135 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/csr.lbr" 136 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/cypress.lbr" 137 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/davicom.lbr" 138 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/dc-dc-converter.lbr" 139 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/dimensions.lbr" 140 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/diode.lbr" 141 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/discrete.lbr" 142 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/display-hp.lbr" 143 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/display-kingbright.lbr" 144 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/display-lcd.lbr" 145 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/docu-dummy.lbr" 146 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/dom-key.lbr" 147 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/eagle-ltspice.lbr" 148 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/ecl.lbr" 149 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/em-microelectronic.lbr" 150 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/etx-board.lbr" 151 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/exar.lbr" 152 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/fairchild-semic.lbr" 153 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/farnell.lbr" 154 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/fiber-optic-hp.lbr" 155 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/fiber-optic-siemens.lbr" 156 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/fifo.lbr" 157 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/flexipanel.lbr" 158 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/fox-electronics.lbr" 159 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/frames.lbr" 160 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/freescale.lbr" 161 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/ftdichip.lbr" 162 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/fujitsu.lbr" 163 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/fuse.lbr" 164 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/gennum.lbr" 165 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/halo-electronics.lbr" 166 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/heatsink.lbr" 167 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/holes.lbr" 168 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/holtek.lbr" 169 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/ic-package.lbr" 170 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/inductor-coilcraft.lbr" 171 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/inductor-neosid.lbr" 172 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/inductor-nkl.lbr" 173 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/inductors.lbr" 174 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/infineon-tricore.lbr" 175 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/infineon.lbr" 176 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/intersil-techwell.lbr" 177 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/intersil.lbr" 178 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/ir.lbr" 179 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/isd.lbr" 180 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/johanson-technology.lbr" 181 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/jump-0r-smd.lbr" 182 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/jumper.lbr" 183 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/lantronix.lbr" 184 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/lattice.lbr" 185 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/lc-filter.lbr" 186 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/led-7-segment.lbr" 187 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/led-citizen-electronics.lbr" 188 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/led-lumiled.lbr" 189 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/led.lbr" 190 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/lem.lbr" 191 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/linear-technology.lbr" 192 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/linear.lbr" 193 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/linx.lbr" 194 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/logo.lbr" 195 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/lprs.lbr" 196 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/lsi-computer-systems.lbr" 197 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/lumiled.lbr" 198 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/marks.lbr" 199 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/maxim.lbr" 200 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/maxstream.lbr" 201 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/melexis.lbr" 202 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/memory-hitachi.lbr" 203 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/memory-idt.lbr" 204 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/memory-micron.lbr" 205 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/memory-motorola-dram.lbr" 206 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/memory-nec.lbr" 207 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/memory-samsung.lbr" 208 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/memory-sram.lbr" 209 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/memory.lbr" 210 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/mems.lbr" 211 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micrel.lbr" 212 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-cyrod.lbr" 213 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-fujitsu.lbr" 214 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-harris.lbr" 215 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-hitachi.lbr" 216 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-infineon.lbr" 217 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-intel.lbr" 218 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-mc68000.lbr" 219 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-motorola.lbr" 220 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-philips.lbr" 221 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-renesas.lbr" 222 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-samsung.lbr" 223 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micro-siemens.lbr" 224 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/microchip.lbr" 225 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micron.lbr" 226 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/micronas.lbr" 227 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/microphon.lbr" 228 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/microwave.lbr" 229 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/midori-sensor.lbr" 230 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/minicircuits.lbr" 231 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/mitsubishi-semiconductor.lbr" 232 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/motorola-sensor-driver.lbr" 233 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/murata-filter.lbr" 234 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/murata-sensor.lbr" 235 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/nanotec.lbr" 236 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/national-instruments.lbr" 237 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/national-semiconductor.lbr" 238 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/nec-lqfp100-pack.lbr" 239 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/nec.lbr" 240 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/nrj-semiconductor.lbr" 241 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/omnivision.lbr" 242 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/on-semiconductor.lbr" 243 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/opto-honeywell-3000.lbr" 244 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/opto-honeywell-4000.lbr" 245 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/opto-honeywell.lbr" 246 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/opto-micro-linear.lbr" 247 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/opto-trans-siemens.lbr" 248 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/opto-transmittter-hp.lbr" 249 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/opto-vishay.lbr" 250 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/optocoupler.lbr" 251 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/pal.lbr" 252 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/philips-semiconductors.lbr" 253 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/photo-elements.lbr" 254 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/piher.lbr" 255 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/pinhead.lbr" 256 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/plcc-socket.lbr" 257 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/pld-intel.lbr" 258 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/plxtech.lbr" 259 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/pot-vitrohm.lbr" 260 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/pot-xicor.lbr" 261 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/pot.lbr" 262 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/ptc-ntc.lbr" 263 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/quantum-research-group.lbr" 264 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/rcl.lbr" 265 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/recom-international.lbr" 266 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/rectifier.lbr" 267 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/ref-packages-longpad.lbr" 268 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/ref-packages.lbr" 269 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/relay.lbr" 270 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/renesas.lbr" 271 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/resistor-bourns.lbr" 272 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/resistor-dil.lbr" 273 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/resistor-net.lbr" 274 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/resistor-power.lbr" 275 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/resistor-ruf.lbr" 276 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/resistor-shunt.lbr" 277 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/resistor-sil.lbr" 278 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/resistor.lbr" 279 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/rf-micro-devices.lbr" 280 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/rf-solutions.lbr" 281 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/rohm.lbr" 282 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/roundsolutions.lbr" 283 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/semicon-smd-ipc.lbr" 284 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/sensor-comus-group.lbr" 285 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/sensor-heraeus.lbr" 286 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/sensor-infratec.lbr" 287 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/sharp.lbr" 288 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/silabs.lbr" 289 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/sim-technology.lbr" 290 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/sipex.lbr" 291 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/smd-ipc.lbr" 292 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/smd-special.lbr" 293 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/solomon-systech.lbr" 294 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/solpad.lbr" 295 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/speaker.lbr" 296 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/special-drill.lbr" 297 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/special.lbr" 298 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/st-microelectronics.lbr" 299 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/stm32xx.lbr" 300 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/supertex.lbr" 301 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/supply1.lbr" 302 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/supply2.lbr" 303 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/switch-alps.lbr" 304 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/switch-coto.lbr" 305 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/switch-dil.lbr" 306 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/switch-misc.lbr" 307 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/switch-omron.lbr" 308 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/switch-raychem.lbr" 309 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/switch-reed.lbr" 310 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/switch.lbr" 311 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/telcom.lbr" 312 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/telecontrolli.lbr" 313 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/telefunken.lbr" 314 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/testpad.lbr" 315 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/texas-sn55-sn75.lbr" 316 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/texas.lbr" 317 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/toshiba.lbr" 318 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/traco-electronic.lbr" 319 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/trafo-bei.lbr" 320 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/trafo-hammondmfg.lbr" 321 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/trafo-siemens.lbr" 322 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/trafo-xicon.lbr" 323 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/trafo.lbr" 324 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/transformer-pulse.lbr" 325 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/transistor-fet.lbr" 326 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/transistor-neu-to92.lbr" 327 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/transistor-npn.lbr" 328 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/transistor-pnp.lbr" 329 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/transistor-power.lbr" 330 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/transistor-small-signal.lbr" 331 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/transistor.lbr" 332 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/triac.lbr" 333 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/trimble.lbr" 334 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/tripas.lbr" 335 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/u-blox.lbr" 336 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/uln-udn.lbr" 337 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/v-reg-micrel.lbr" 338 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/v-reg.lbr" 339 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/varistor.lbr" 340 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/wafer-scale-psd.lbr" 341 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/wirepad.lbr" 342 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/xicor.lbr" 343 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/xilinx-virtex-v5.lbr" 344 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/xilinx-xc18v.lbr" 345 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/xilinx-xc9.lbr" 346 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/xilinx-xcv.lbr" 347 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/zetex.lbr" 348 | UsedLibrary="C:/Program files/eagle-7.4.0/lbr/zilog.lbr" 349 | UsedLibrary="C:/Program Files/EAGLE-7.4.0/lbr/atmel/atmega8.lbr" 350 | UsedLibrary="C:/Program Files/EAGLE-7.4.0/lbr/International Rectifier/International_Rectifier_By_element14_Batch_1.lbr" 351 | 352 | [Win_1] 353 | Type="Control Panel" 354 | Loc="0 0 1919 1004" 355 | State=1 356 | Number=0 357 | 358 | [Desktop] 359 | Screen="1920 1080" 360 | Window="Win_1" 361 | -------------------------------------------------------------------------------- /EagleCAD/solder_st_v1_eps3 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeikrasnikov/soldering_station/cd5d759391e7276b2998aa09da67957b44b9156f/EagleCAD/solder_st_v1_eps3 copy.png -------------------------------------------------------------------------------- /EagleCAD/solder_st_v1_eps4 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeikrasnikov/soldering_station/cd5d759391e7276b2998aa09da67957b44b9156f/EagleCAD/solder_st_v1_eps4 copy.png -------------------------------------------------------------------------------- /EagleCAD/soldering station brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeikrasnikov/soldering_station/cd5d759391e7276b2998aa09da67957b44b9156f/EagleCAD/soldering station brd.png -------------------------------------------------------------------------------- /EagleCAD/soldering station sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeikrasnikov/soldering_station/cd5d759391e7276b2998aa09da67957b44b9156f/EagleCAD/soldering station sch.png -------------------------------------------------------------------------------- /EagleCAD/soldering_station.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 | Soldering station 2016 66 | 67 | 68 | 69 | <b>Resistors, Capacitors, Inductors</b><p> 70 | Based on the previous libraries: 71 | <ul> 72 | <li>r.lbr 73 | <li>cap.lbr 74 | <li>cap-fe.lbr 75 | <li>captant.lbr 76 | <li>polcap.lbr 77 | <li>ipc-smd.lbr 78 | </ul> 79 | All SMD packages are defined according to the IPC specifications and CECC<p> 80 | <author>Created by librarian@cadsoft.de</author><p> 81 | <p> 82 | for Electrolyt Capacitors see also :<p> 83 | www.bccomponents.com <p> 84 | www.panasonic.com<p> 85 | www.kemet.com<p> 86 | <p> 87 | for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p> 88 | 89 | <map name="nav_main"> 90 | <area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title=""> 91 | <area shape="rect" coords="0,24,140,51" href="../about.asp" title=""> 92 | <area shape="rect" coords="1,52,140,77" href="../rfq.asp" title=""> 93 | <area shape="rect" coords="0,78,139,103" href="../products.asp" title=""> 94 | <area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title=""> 95 | <area shape="rect" coords="1,129,138,150" href="../edge.asp" title=""> 96 | <area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title=""> 97 | <area shape="rect" coords="0,179,139,201" href="../comments.asp" title=""> 98 | <area shape="rect" coords="1,203,138,231" href="../directory.asp" title=""> 99 | <area shape="default" nohref> 100 | </map> 101 | 102 | <html> 103 | 104 | <title></title> 105 | 106 | <LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css"> 107 | 108 | <body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"> 109 | <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%"> 110 | <tr valign="top"> 111 | 112 | </td> 113 | <! <td width="10">&nbsp;</td> 114 | <td width="90%"> 115 | 116 | <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b> 117 | <P> 118 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2> 119 | <TR> 120 | <TD COLSPAN=8> 121 | <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT> 122 | </TD> 123 | </TR> 124 | <TR> 125 | <TD ALIGN=CENTER> 126 | <B> 127 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT> 128 | </B> 129 | </TD> 130 | <TD ALIGN=CENTER> 131 | <B> 132 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT> 133 | </B> 134 | </TD> 135 | <TD ALIGN=CENTER> 136 | <B> 137 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT> 138 | </B> 139 | </TD> 140 | <TD ALIGN=CENTER> 141 | <B> 142 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT> 143 | </B> 144 | </TD> 145 | <TD ALIGN=CENTER> 146 | <B> 147 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT> 148 | </B> 149 | </TD> 150 | <TD ALIGN=CENTER> 151 | <B> 152 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT> 153 | </B> 154 | </TD> 155 | <TD ALIGN=CENTER> 156 | <B> 157 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT> 158 | </B> 159 | </TD> 160 | <TD ALIGN=CENTER> 161 | <B> 162 | <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT> 163 | </B> 164 | </TD><TD>&nbsp;</TD> 165 | </TR> 166 | <TR> 167 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 > 168 | 3005P<BR> 169 | 3006P<BR> 170 | 3006W<BR> 171 | 3006Y<BR> 172 | 3009P<BR> 173 | 3009W<BR> 174 | 3009Y<BR> 175 | 3057J<BR> 176 | 3057L<BR> 177 | 3057P<BR> 178 | 3057Y<BR> 179 | 3059J<BR> 180 | 3059L<BR> 181 | 3059P<BR> 182 | 3059Y<BR></FONT> 183 | </TD> 184 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 185 | -<BR> 186 | 89P<BR> 187 | 89W<BR> 188 | 89X<BR> 189 | 89PH<BR> 190 | 76P<BR> 191 | 89XH<BR> 192 | 78SLT<BR> 193 | 78L&nbsp;ALT<BR> 194 | 56P&nbsp;ALT<BR> 195 | 78P&nbsp;ALT<BR> 196 | T8S<BR> 197 | 78L<BR> 198 | 56P<BR> 199 | 78P<BR></FONT> 200 | </TD> 201 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 202 | -<BR> 203 | T18/784<BR> 204 | 783<BR> 205 | 781<BR> 206 | -<BR> 207 | -<BR> 208 | -<BR> 209 | 2199<BR> 210 | 1697/1897<BR> 211 | 1680/1880<BR> 212 | 2187<BR> 213 | -<BR> 214 | -<BR> 215 | -<BR> 216 | -<BR></FONT> 217 | </TD> 218 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 219 | -<BR> 220 | 8035EKP/CT20/RJ-20P<BR> 221 | -<BR> 222 | RJ-20X<BR> 223 | -<BR> 224 | -<BR> 225 | -<BR> 226 | 1211L<BR> 227 | 8012EKQ&nbsp;ALT<BR> 228 | 8012EKR&nbsp;ALT<BR> 229 | 1211P<BR> 230 | 8012EKJ<BR> 231 | 8012EKL<BR> 232 | 8012EKQ<BR> 233 | 8012EKR<BR></FONT> 234 | </TD> 235 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 236 | -<BR> 237 | 2101P<BR> 238 | 2101W<BR> 239 | 2101Y<BR> 240 | -<BR> 241 | -<BR> 242 | -<BR> 243 | -<BR> 244 | -<BR> 245 | -<BR> 246 | -<BR> 247 | -<BR> 248 | 2102L<BR> 249 | 2102S<BR> 250 | 2102Y<BR></FONT> 251 | </TD> 252 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 253 | -<BR> 254 | EVMCOG<BR> 255 | -<BR> 256 | -<BR> 257 | -<BR> 258 | -<BR> 259 | -<BR> 260 | -<BR> 261 | -<BR> 262 | -<BR> 263 | -<BR> 264 | -<BR> 265 | -<BR> 266 | -<BR> 267 | -<BR></FONT> 268 | </TD> 269 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 270 | -<BR> 271 | 43P<BR> 272 | 43W<BR> 273 | 43Y<BR> 274 | -<BR> 275 | -<BR> 276 | -<BR> 277 | -<BR> 278 | 40L<BR> 279 | 40P<BR> 280 | 40Y<BR> 281 | 70Y-T602<BR> 282 | 70L<BR> 283 | 70P<BR> 284 | 70Y<BR></FONT> 285 | </TD> 286 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 287 | -<BR> 288 | -<BR> 289 | -<BR> 290 | -<BR> 291 | -<BR> 292 | -<BR> 293 | -<BR> 294 | -<BR> 295 | RT/RTR12<BR> 296 | RT/RTR12<BR> 297 | RT/RTR12<BR> 298 | -<BR> 299 | RJ/RJR12<BR> 300 | RJ/RJR12<BR> 301 | RJ/RJR12<BR></FONT> 302 | </TD> 303 | </TR> 304 | <TR> 305 | <TD COLSPAN=8>&nbsp; 306 | </TD> 307 | </TR> 308 | <TR> 309 | <TD COLSPAN=8> 310 | <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT> 311 | </TD> 312 | </TR> 313 | <TR> 314 | <TD ALIGN=CENTER> 315 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 316 | </TD> 317 | <TD ALIGN=CENTER> 318 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 319 | </TD> 320 | <TD ALIGN=CENTER> 321 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 322 | </TD> 323 | <TD ALIGN=CENTER> 324 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 325 | </TD> 326 | <TD ALIGN=CENTER> 327 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 328 | </TD> 329 | <TD ALIGN=CENTER> 330 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 331 | </TD> 332 | <TD ALIGN=CENTER> 333 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 334 | </TD> 335 | <TD ALIGN=CENTER> 336 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 337 | </TD> 338 | </TR> 339 | <TR> 340 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 341 | 3250L<BR> 342 | 3250P<BR> 343 | 3250W<BR> 344 | 3250X<BR> 345 | 3252P<BR> 346 | 3252W<BR> 347 | 3252X<BR> 348 | 3260P<BR> 349 | 3260W<BR> 350 | 3260X<BR> 351 | 3262P<BR> 352 | 3262W<BR> 353 | 3262X<BR> 354 | 3266P<BR> 355 | 3266W<BR> 356 | 3266X<BR> 357 | 3290H<BR> 358 | 3290P<BR> 359 | 3290W<BR> 360 | 3292P<BR> 361 | 3292W<BR> 362 | 3292X<BR> 363 | 3296P<BR> 364 | 3296W<BR> 365 | 3296X<BR> 366 | 3296Y<BR> 367 | 3296Z<BR> 368 | 3299P<BR> 369 | 3299W<BR> 370 | 3299X<BR> 371 | 3299Y<BR> 372 | 3299Z<BR></FONT> 373 | </TD> 374 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 375 | -<BR> 376 | 66P&nbsp;ALT<BR> 377 | 66W&nbsp;ALT<BR> 378 | 66X&nbsp;ALT<BR> 379 | 66P&nbsp;ALT<BR> 380 | 66W&nbsp;ALT<BR> 381 | 66X&nbsp;ALT<BR> 382 | -<BR> 383 | 64W&nbsp;ALT<BR> 384 | -<BR> 385 | 64P&nbsp;ALT<BR> 386 | 64W&nbsp;ALT<BR> 387 | 64X&nbsp;ALT<BR> 388 | 64P<BR> 389 | 64W<BR> 390 | 64X<BR> 391 | 66X&nbsp;ALT<BR> 392 | 66P&nbsp;ALT<BR> 393 | 66W&nbsp;ALT<BR> 394 | 66P<BR> 395 | 66W<BR> 396 | 66X<BR> 397 | 67P<BR> 398 | 67W<BR> 399 | 67X<BR> 400 | 67Y<BR> 401 | 67Z<BR> 402 | 68P<BR> 403 | 68W<BR> 404 | 68X<BR> 405 | 67Y&nbsp;ALT<BR> 406 | 67Z&nbsp;ALT<BR></FONT> 407 | </TD> 408 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 409 | 5050<BR> 410 | 5091<BR> 411 | 5080<BR> 412 | 5087<BR> 413 | -<BR> 414 | -<BR> 415 | -<BR> 416 | -<BR> 417 | -<BR> 418 | -<BR> 419 | -<BR> 420 | T63YB<BR> 421 | T63XB<BR> 422 | -<BR> 423 | -<BR> 424 | -<BR> 425 | 5887<BR> 426 | 5891<BR> 427 | 5880<BR> 428 | -<BR> 429 | -<BR> 430 | -<BR> 431 | T93Z<BR> 432 | T93YA<BR> 433 | T93XA<BR> 434 | T93YB<BR> 435 | T93XB<BR> 436 | -<BR> 437 | -<BR> 438 | -<BR> 439 | -<BR> 440 | -<BR></FONT> 441 | </TD> 442 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 443 | -<BR> 444 | -<BR> 445 | -<BR> 446 | -<BR> 447 | -<BR> 448 | -<BR> 449 | -<BR> 450 | -<BR> 451 | -<BR> 452 | -<BR> 453 | 8026EKP<BR> 454 | 8026EKW<BR> 455 | 8026EKM<BR> 456 | 8026EKP<BR> 457 | 8026EKB<BR> 458 | 8026EKM<BR> 459 | 1309X<BR> 460 | 1309P<BR> 461 | 1309W<BR> 462 | 8024EKP<BR> 463 | 8024EKW<BR> 464 | 8024EKN<BR> 465 | RJ-9P/CT9P<BR> 466 | RJ-9W<BR> 467 | RJ-9X<BR> 468 | -<BR> 469 | -<BR> 470 | -<BR> 471 | -<BR> 472 | -<BR> 473 | -<BR> 474 | -<BR></FONT> 475 | </TD> 476 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 477 | -<BR> 478 | -<BR> 479 | -<BR> 480 | -<BR> 481 | -<BR> 482 | -<BR> 483 | -<BR> 484 | -<BR> 485 | -<BR> 486 | -<BR> 487 | 3103P<BR> 488 | 3103Y<BR> 489 | 3103Z<BR> 490 | 3103P<BR> 491 | 3103Y<BR> 492 | 3103Z<BR> 493 | -<BR> 494 | -<BR> 495 | -<BR> 496 | -<BR> 497 | -<BR> 498 | -<BR> 499 | 3105P/3106P<BR> 500 | 3105W/3106W<BR> 501 | 3105X/3106X<BR> 502 | 3105Y/3106Y<BR> 503 | 3105Z/3105Z<BR> 504 | 3102P<BR> 505 | 3102W<BR> 506 | 3102X<BR> 507 | 3102Y<BR> 508 | 3102Z<BR></FONT> 509 | </TD> 510 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 511 | -<BR> 512 | -<BR> 513 | -<BR> 514 | -<BR> 515 | -<BR> 516 | -<BR> 517 | -<BR> 518 | -<BR> 519 | -<BR> 520 | -<BR> 521 | -<BR> 522 | -<BR> 523 | -<BR> 524 | -<BR> 525 | -<BR> 526 | -<BR> 527 | -<BR> 528 | -<BR> 529 | -<BR> 530 | -<BR> 531 | -<BR> 532 | -<BR> 533 | EVMCBG<BR> 534 | EVMCCG<BR> 535 | -<BR> 536 | -<BR> 537 | -<BR> 538 | -<BR> 539 | -<BR> 540 | -<BR> 541 | -<BR> 542 | -<BR></FONT> 543 | </TD> 544 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 545 | 55-1-X<BR> 546 | 55-4-X<BR> 547 | 55-3-X<BR> 548 | 55-2-X<BR> 549 | -<BR> 550 | -<BR> 551 | -<BR> 552 | -<BR> 553 | -<BR> 554 | -<BR> 555 | -<BR> 556 | -<BR> 557 | -<BR> 558 | -<BR> 559 | -<BR> 560 | -<BR> 561 | 50-2-X<BR> 562 | 50-4-X<BR> 563 | 50-3-X<BR> 564 | -<BR> 565 | -<BR> 566 | -<BR> 567 | 64P<BR> 568 | 64W<BR> 569 | 64X<BR> 570 | 64Y<BR> 571 | 64Z<BR> 572 | -<BR> 573 | -<BR> 574 | -<BR> 575 | -<BR> 576 | -<BR></FONT> 577 | </TD> 578 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 579 | RT/RTR22<BR> 580 | RT/RTR22<BR> 581 | RT/RTR22<BR> 582 | RT/RTR22<BR> 583 | RJ/RJR22<BR> 584 | RJ/RJR22<BR> 585 | RJ/RJR22<BR> 586 | RT/RTR26<BR> 587 | RT/RTR26<BR> 588 | RT/RTR26<BR> 589 | RJ/RJR26<BR> 590 | RJ/RJR26<BR> 591 | RJ/RJR26<BR> 592 | RJ/RJR26<BR> 593 | RJ/RJR26<BR> 594 | RJ/RJR26<BR> 595 | RT/RTR24<BR> 596 | RT/RTR24<BR> 597 | RT/RTR24<BR> 598 | RJ/RJR24<BR> 599 | RJ/RJR24<BR> 600 | RJ/RJR24<BR> 601 | RJ/RJR24<BR> 602 | RJ/RJR24<BR> 603 | RJ/RJR24<BR> 604 | -<BR> 605 | -<BR> 606 | -<BR> 607 | -<BR> 608 | -<BR> 609 | -<BR> 610 | -<BR></FONT> 611 | </TD> 612 | </TR> 613 | <TR> 614 | <TD COLSPAN=8>&nbsp; 615 | </TD> 616 | </TR> 617 | <TR> 618 | <TD COLSPAN=8> 619 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 620 | </TD> 621 | </TR> 622 | <TR> 623 | <TD ALIGN=CENTER> 624 | <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT> 625 | </TD> 626 | <TD ALIGN=CENTER> 627 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 628 | </TD> 629 | <TD ALIGN=CENTER> 630 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 631 | </TD> 632 | <TD ALIGN=CENTER> 633 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 634 | </TD> 635 | <TD ALIGN=CENTER> 636 | <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT> 637 | </TD> 638 | <TD ALIGN=CENTER> 639 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 640 | </TD> 641 | <TD ALIGN=CENTER> 642 | <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT> 643 | </TD> 644 | <TD ALIGN=CENTER> 645 | <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT> 646 | </TD> 647 | </TR> 648 | <TR> 649 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 650 | 3323P<BR> 651 | 3323S<BR> 652 | 3323W<BR> 653 | 3329H<BR> 654 | 3329P<BR> 655 | 3329W<BR> 656 | 3339H<BR> 657 | 3339P<BR> 658 | 3339W<BR> 659 | 3352E<BR> 660 | 3352H<BR> 661 | 3352K<BR> 662 | 3352P<BR> 663 | 3352T<BR> 664 | 3352V<BR> 665 | 3352W<BR> 666 | 3362H<BR> 667 | 3362M<BR> 668 | 3362P<BR> 669 | 3362R<BR> 670 | 3362S<BR> 671 | 3362U<BR> 672 | 3362W<BR> 673 | 3362X<BR> 674 | 3386B<BR> 675 | 3386C<BR> 676 | 3386F<BR> 677 | 3386H<BR> 678 | 3386K<BR> 679 | 3386M<BR> 680 | 3386P<BR> 681 | 3386S<BR> 682 | 3386W<BR> 683 | 3386X<BR></FONT> 684 | </TD> 685 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 686 | 25P<BR> 687 | 25S<BR> 688 | 25RX<BR> 689 | 82P<BR> 690 | 82M<BR> 691 | 82PA<BR> 692 | -<BR> 693 | -<BR> 694 | -<BR> 695 | 91E<BR> 696 | 91X<BR> 697 | 91T<BR> 698 | 91B<BR> 699 | 91A<BR> 700 | 91V<BR> 701 | 91W<BR> 702 | 25W<BR> 703 | 25V<BR> 704 | 25P<BR> 705 | -<BR> 706 | 25S<BR> 707 | 25U<BR> 708 | 25RX<BR> 709 | 25X<BR> 710 | 72XW<BR> 711 | 72XL<BR> 712 | 72PM<BR> 713 | 72RX<BR> 714 | -<BR> 715 | 72PX<BR> 716 | 72P<BR> 717 | 72RXW<BR> 718 | 72RXL<BR> 719 | 72X<BR></FONT> 720 | </TD> 721 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 722 | -<BR> 723 | -<BR> 724 | -<BR> 725 | T7YB<BR> 726 | T7YA<BR> 727 | -<BR> 728 | -<BR> 729 | -<BR> 730 | -<BR> 731 | -<BR> 732 | -<BR> 733 | -<BR> 734 | -<BR> 735 | -<BR> 736 | -<BR> 737 | -<BR> 738 | -<BR> 739 | TXD<BR> 740 | TYA<BR> 741 | TYP<BR> 742 | -<BR> 743 | TYD<BR> 744 | TX<BR> 745 | -<BR> 746 | 150SX<BR> 747 | 100SX<BR> 748 | 102T<BR> 749 | 101S<BR> 750 | 190T<BR> 751 | 150TX<BR> 752 | 101<BR> 753 | -<BR> 754 | -<BR> 755 | 101SX<BR></FONT> 756 | </TD> 757 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 758 | ET6P<BR> 759 | ET6S<BR> 760 | ET6X<BR> 761 | RJ-6W/8014EMW<BR> 762 | RJ-6P/8014EMP<BR> 763 | RJ-6X/8014EMX<BR> 764 | TM7W<BR> 765 | TM7P<BR> 766 | TM7X<BR> 767 | -<BR> 768 | 8017SMS<BR> 769 | -<BR> 770 | 8017SMB<BR> 771 | 8017SMA<BR> 772 | -<BR> 773 | -<BR> 774 | CT-6W<BR> 775 | CT-6H<BR> 776 | CT-6P<BR> 777 | CT-6R<BR> 778 | -<BR> 779 | CT-6V<BR> 780 | CT-6X<BR> 781 | -<BR> 782 | -<BR> 783 | 8038EKV<BR> 784 | -<BR> 785 | 8038EKX<BR> 786 | -<BR> 787 | -<BR> 788 | 8038EKP<BR> 789 | 8038EKZ<BR> 790 | 8038EKW<BR> 791 | -<BR></FONT> 792 | </TD> 793 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 794 | -<BR> 795 | -<BR> 796 | -<BR> 797 | 3321H<BR> 798 | 3321P<BR> 799 | 3321N<BR> 800 | 1102H<BR> 801 | 1102P<BR> 802 | 1102T<BR> 803 | RVA0911V304A<BR> 804 | -<BR> 805 | RVA0911H413A<BR> 806 | RVG0707V100A<BR> 807 | RVA0607V(H)306A<BR> 808 | RVA1214H213A<BR> 809 | -<BR> 810 | -<BR> 811 | -<BR> 812 | -<BR> 813 | -<BR> 814 | -<BR> 815 | -<BR> 816 | -<BR> 817 | -<BR> 818 | 3104B<BR> 819 | 3104C<BR> 820 | 3104F<BR> 821 | 3104H<BR> 822 | -<BR> 823 | 3104M<BR> 824 | 3104P<BR> 825 | 3104S<BR> 826 | 3104W<BR> 827 | 3104X<BR></FONT> 828 | </TD> 829 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 830 | EVMQ0G<BR> 831 | EVMQIG<BR> 832 | EVMQ3G<BR> 833 | EVMS0G<BR> 834 | EVMQ0G<BR> 835 | EVMG0G<BR> 836 | -<BR> 837 | -<BR> 838 | -<BR> 839 | EVMK4GA00B<BR> 840 | EVM30GA00B<BR> 841 | EVMK0GA00B<BR> 842 | EVM38GA00B<BR> 843 | EVMB6<BR> 844 | EVLQ0<BR> 845 | -<BR> 846 | EVMMSG<BR> 847 | EVMMBG<BR> 848 | EVMMAG<BR> 849 | -<BR> 850 | -<BR> 851 | EVMMCS<BR> 852 | -<BR> 853 | -<BR> 854 | -<BR> 855 | -<BR> 856 | -<BR> 857 | EVMM1<BR> 858 | -<BR> 859 | -<BR> 860 | EVMM0<BR> 861 | -<BR> 862 | -<BR> 863 | EVMM3<BR></FONT> 864 | </TD> 865 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 866 | -<BR> 867 | -<BR> 868 | -<BR> 869 | 62-3-1<BR> 870 | 62-1-2<BR> 871 | -<BR> 872 | -<BR> 873 | -<BR> 874 | -<BR> 875 | -<BR> 876 | -<BR> 877 | -<BR> 878 | -<BR> 879 | -<BR> 880 | -<BR> 881 | -<BR> 882 | 67R<BR> 883 | -<BR> 884 | 67P<BR> 885 | -<BR> 886 | -<BR> 887 | -<BR> 888 | -<BR> 889 | 67X<BR> 890 | 63V<BR> 891 | 63S<BR> 892 | 63M<BR> 893 | -<BR> 894 | -<BR> 895 | 63H<BR> 896 | 63P<BR> 897 | -<BR> 898 | -<BR> 899 | 63X<BR></FONT> 900 | </TD> 901 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 902 | -<BR> 903 | -<BR> 904 | -<BR> 905 | RJ/RJR50<BR> 906 | RJ/RJR50<BR> 907 | RJ/RJR50<BR> 908 | -<BR> 909 | -<BR> 910 | -<BR> 911 | -<BR> 912 | -<BR> 913 | -<BR> 914 | -<BR> 915 | -<BR> 916 | -<BR> 917 | -<BR> 918 | -<BR> 919 | -<BR> 920 | -<BR> 921 | -<BR> 922 | -<BR> 923 | -<BR> 924 | -<BR> 925 | -<BR> 926 | -<BR> 927 | -<BR> 928 | -<BR> 929 | -<BR> 930 | -<BR> 931 | -<BR> 932 | -<BR> 933 | -<BR> 934 | -<BR> 935 | -<BR></FONT> 936 | </TD> 937 | </TR> 938 | </TABLE> 939 | <P>&nbsp;<P> 940 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3> 941 | <TR> 942 | <TD COLSPAN=7> 943 | <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT> 944 | <P> 945 | <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT> 946 | </TD> 947 | </TR> 948 | <TR> 949 | <TD> 950 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 951 | </TD> 952 | <TD> 953 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 954 | </TD> 955 | <TD> 956 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 957 | </TD> 958 | <TD> 959 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 960 | </TD> 961 | <TD> 962 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 963 | </TD> 964 | <TD> 965 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 966 | </TD> 967 | <TD> 968 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 969 | </TD> 970 | </TR> 971 | <TR> 972 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 973 | 3224G<BR> 974 | 3224J<BR> 975 | 3224W<BR> 976 | 3269P<BR> 977 | 3269W<BR> 978 | 3269X<BR></FONT> 979 | </TD> 980 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 981 | 44G<BR> 982 | 44J<BR> 983 | 44W<BR> 984 | 84P<BR> 985 | 84W<BR> 986 | 84X<BR></FONT> 987 | </TD> 988 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 989 | -<BR> 990 | -<BR> 991 | -<BR> 992 | ST63Z<BR> 993 | ST63Y<BR> 994 | -<BR></FONT> 995 | </TD> 996 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 997 | -<BR> 998 | -<BR> 999 | -<BR> 1000 | ST5P<BR> 1001 | ST5W<BR> 1002 | ST5X<BR></FONT> 1003 | </TD> 1004 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1005 | -<BR> 1006 | -<BR> 1007 | -<BR> 1008 | -<BR> 1009 | -<BR> 1010 | -<BR></FONT> 1011 | </TD> 1012 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1013 | -<BR> 1014 | -<BR> 1015 | -<BR> 1016 | -<BR> 1017 | -<BR> 1018 | -<BR></FONT> 1019 | </TD> 1020 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1021 | -<BR> 1022 | -<BR> 1023 | -<BR> 1024 | -<BR> 1025 | -<BR> 1026 | -<BR></FONT> 1027 | </TD> 1028 | </TR> 1029 | <TR> 1030 | <TD COLSPAN=7>&nbsp; 1031 | </TD> 1032 | </TR> 1033 | <TR> 1034 | <TD COLSPAN=7> 1035 | <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT> 1036 | </TD> 1037 | </TR> 1038 | <TR> 1039 | <TD> 1040 | <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT> 1041 | </TD> 1042 | <TD> 1043 | <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT> 1044 | </TD> 1045 | <TD> 1046 | <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT> 1047 | </TD> 1048 | <TD> 1049 | <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT> 1050 | </TD> 1051 | <TD> 1052 | <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT> 1053 | </TD> 1054 | <TD> 1055 | <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT> 1056 | </TD> 1057 | <TD> 1058 | <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT> 1059 | </TD> 1060 | </TR> 1061 | <TR> 1062 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1063 | 3314G<BR> 1064 | 3314J<BR> 1065 | 3364A/B<BR> 1066 | 3364C/D<BR> 1067 | 3364W/X<BR> 1068 | 3313G<BR> 1069 | 3313J<BR></FONT> 1070 | </TD> 1071 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1072 | 23B<BR> 1073 | 23A<BR> 1074 | 21X<BR> 1075 | 21W<BR> 1076 | -<BR> 1077 | 22B<BR> 1078 | 22A<BR></FONT> 1079 | </TD> 1080 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1081 | ST5YL/ST53YL<BR> 1082 | ST5YJ/5T53YJ<BR> 1083 | ST-23A<BR> 1084 | ST-22B<BR> 1085 | ST-22<BR> 1086 | -<BR> 1087 | -<BR></FONT> 1088 | </TD> 1089 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1090 | ST-4B<BR> 1091 | ST-4A<BR> 1092 | -<BR> 1093 | -<BR> 1094 | -<BR> 1095 | ST-3B<BR> 1096 | ST-3A<BR></FONT> 1097 | </TD> 1098 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1099 | -<BR> 1100 | EVM-6YS<BR> 1101 | EVM-1E<BR> 1102 | EVM-1G<BR> 1103 | EVM-1D<BR> 1104 | -<BR> 1105 | -<BR></FONT> 1106 | </TD> 1107 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1108 | G4B<BR> 1109 | G4A<BR> 1110 | TR04-3S1<BR> 1111 | TRG04-2S1<BR> 1112 | -<BR> 1113 | -<BR> 1114 | -<BR></FONT> 1115 | </TD> 1116 | <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3> 1117 | -<BR> 1118 | -<BR> 1119 | DVR-43A<BR> 1120 | CVR-42C<BR> 1121 | CVR-42A/C<BR> 1122 | -<BR> 1123 | -<BR></FONT> 1124 | </TD> 1125 | </TR> 1126 | </TABLE> 1127 | <P> 1128 | <FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT> 1129 | <P> 1130 | 1131 | &nbsp; 1132 | <P> 1133 | </td> 1134 | </tr> 1135 | </table> 1136 | </BODY></HTML> 1137 | 1138 | 1139 | <b>CAPACITOR</b><p> 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | >NAME 1149 | >VALUE 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | <b>RESISTOR</b><p> 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | >NAME 1165 | >VALUE 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | <b>Linear Devices</b><p> 1174 | Operational amplifiers, comparators, voltage regulators, ADCs, DACs, etc.<p> 1175 | <author>Created by librarian@cadsoft.de</author> 1176 | 1177 | 1178 | <b>Small Outline Package 8</b><br> 1179 | NS Package M08A 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | >NAME 1196 | >VALUE 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | <b>Pin Header Connectors</b><p> 1210 | <author>Created by librarian@cadsoft.de</author> 1211 | 1212 | 1213 | <b>PIN HEADER</b> 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | >NAME 1232 | >VALUE 1233 | 1234 | 1235 | 1236 | 1237 | <b>PIN HEADER</b> 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | 1244 | 1245 | 1246 | 1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | 1270 | 1271 | 1272 | 1273 | 1274 | 1275 | 1276 | 1277 | 1278 | 1279 | >NAME 1280 | >VALUE 1281 | 1282 | 1283 | 1284 | 1285 | 1286 | 1287 | 1288 | <b>PIN HEADER</b> 1289 | 1290 | 1291 | 1292 | 1293 | 1294 | 1295 | 1296 | 1297 | 1298 | 1299 | 1300 | 1301 | 1302 | 1303 | 1304 | 1305 | 1306 | 1307 | 1308 | 1309 | 1310 | 1311 | 1312 | 1313 | 1314 | 1315 | 1316 | 1317 | 1318 | 1319 | 1320 | 1321 | 1322 | >NAME 1323 | >VALUE 1324 | 1325 | 1326 | 1327 | 1328 | 1329 | 1330 | 1331 | 1332 | <b>Opto Couplers</b><p> 1333 | Siemens, Hewlett-Packard, Texas Instuments, Sharp, Motorola<p> 1334 | <author>Created by librarian@cadsoft.de</author> 1335 | 1336 | 1337 | <b>Dual In Line Package</b> 1338 | 1339 | 1340 | 1341 | 1342 | 1343 | 1344 | 1345 | 1346 | 1347 | 1348 | 1349 | 1350 | >VALUE 1351 | >NAME 1352 | 1353 | 1354 | 1355 | 1356 | <b>Power Transistors</b><p> 1357 | <author>Created by librarian@cadsoft.de</author> 1358 | 1359 | 1360 | <b>Molded Package</b><p> 1361 | grid 2.54 mm 1362 | 1363 | 1364 | 1365 | 1366 | 1367 | 1368 | 1369 | 1370 | 1371 | >NAME 1372 | >VALUE 1373 | 1374 | 1375 | 1376 | 1377 | 1378 | 1379 | 1380 | 1381 | 1382 | 1383 | 1384 | 1385 | <b>Thyristors, Triacs, Trigger Diodes</b><p> 1386 | <author>Created by librarian@cadsoft.de</author> 1387 | 1388 | 1389 | <b>Molded Package</b><p> 1390 | grid 2.54 mm 1391 | 1392 | 1393 | 1394 | 1395 | 1396 | 1397 | 1398 | 1399 | 1400 | >NAME 1401 | >VALUE 1402 | 1403 | 1404 | 1405 | 1406 | 1407 | 1408 | 1409 | 1410 | 1411 | 1412 | 1413 | 1414 | <b>Wago Screw Clamps</b><p> 1415 | Grid 5.00 mm<p> 1416 | <author>Created by librarian@cadsoft.de</author> 1417 | 1418 | 1419 | <b>WAGO SCREW CLAMP</b> 1420 | 1421 | 1422 | 1423 | 1424 | 1425 | 1426 | 1427 | 1428 | 1429 | 1430 | 1431 | 1432 | 1433 | 1434 | 1435 | 1436 | 1437 | 1438 | 1439 | 1440 | 1441 | 1442 | >VALUE 1443 | >NAME 1444 | 1 1445 | 2 1446 | 1447 | 1448 | 1449 | 1450 | 1451 | 1452 | 1453 | 1454 | 1455 | 1456 | 1457 | 1458 | 1459 | <b>EAGLE Design Rules</b> 1460 | <p> 1461 | Die Standard-Design-Rules sind so gewählt, dass sie für 1462 | die meisten Anwendungen passen. Sollte ihre Platine 1463 | besondere Anforderungen haben, treffen Sie die erforderlichen 1464 | Einstellungen hier und speichern die Design Rules unter 1465 | einem neuen Namen ab. 1466 | <b>EAGLE Design Rules</b> 1467 | <p> 1468 | The default Design Rules have been set to cover 1469 | a wide range of applications. Your particular design 1470 | may have different requirements, so please make the 1471 | necessary adjustments and save your customized 1472 | design rules under a new name. 1473 | 1474 | 1475 | 1476 | 1477 | 1478 | 1479 | 1480 | 1481 | 1482 | 1483 | 1484 | 1485 | 1486 | 1487 | 1488 | 1489 | 1490 | 1491 | 1492 | 1493 | 1494 | 1495 | 1496 | 1497 | 1498 | 1499 | 1500 | 1501 | 1502 | 1503 | 1504 | 1505 | 1506 | 1507 | 1508 | 1509 | 1510 | 1511 | 1512 | 1513 | 1514 | 1515 | 1516 | 1517 | 1518 | 1519 | 1520 | 1521 | 1522 | 1523 | 1524 | 1525 | 1526 | 1527 | 1528 | 1529 | 1530 | 1531 | 1532 | 1533 | 1534 | 1535 | 1536 | 1537 | 1538 | 1539 | 1540 | 1541 | 1542 | 1543 | 1544 | 1545 | 1546 | 1547 | 1548 | 1549 | 1550 | 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | 1557 | 1558 | 1559 | 1560 | 1561 | 1562 | 1563 | 1564 | 1565 | 1566 | 1567 | 1568 | 1569 | 1570 | 1571 | 1572 | 1573 | 1574 | 1575 | 1576 | 1577 | 1578 | 1579 | 1580 | 1581 | 1582 | 1583 | 1584 | 1585 | 1586 | 1587 | 1588 | 1589 | 1590 | 1591 | 1592 | 1593 | 1594 | 1595 | 1596 | 1597 | 1598 | 1599 | 1600 | 1601 | 1602 | 1603 | 1604 | 1605 | 1606 | 1607 | 1608 | 1609 | 1610 | 1611 | 1612 | 1613 | 1614 | 1615 | 1616 | 1617 | 1618 | 1619 | 1620 | 1621 | 1622 | 1623 | 1624 | 1625 | 1626 | 1627 | 1628 | 1629 | 1630 | 1631 | 1632 | 1633 | 1634 | 1635 | 1636 | 1637 | 1638 | 1639 | 1640 | 1641 | 1642 | 1643 | 1644 | 1645 | 1646 | 1647 | 1648 | 1649 | 1650 | 1651 | 1652 | 1653 | 1654 | 1655 | 1656 | 1657 | 1658 | 1659 | 1660 | 1661 | 1662 | 1663 | 1664 | 1665 | 1666 | 1667 | 1668 | 1669 | 1670 | 1671 | 1672 | 1673 | 1674 | 1675 | 1676 | 1677 | 1678 | 1679 | 1680 | 1681 | 1682 | 1683 | 1684 | 1685 | 1686 | 1687 | 1688 | 1689 | 1690 | 1691 | 1692 | 1693 | 1694 | 1695 | 1696 | 1697 | 1698 | 1699 | 1700 | 1701 | 1702 | 1703 | 1704 | 1705 | 1706 | 1707 | 1708 | 1709 | 1710 | 1711 | 1712 | 1713 | 1714 | 1715 | 1716 | 1717 | 1718 | 1719 | 1720 | 1721 | 1722 | 1723 | 1724 | 1725 | 1726 | 1727 | 1728 | 1729 | 1730 | 1731 | 1732 | 1733 | 1734 | 1735 | 1736 | 1737 | 1738 | 1739 | 1740 | 1741 | 1742 | 1743 | 1744 | 1745 | 1746 | 1747 | 1748 | 1749 | 1750 | 1751 | 1752 | 1753 | 1754 | 1755 | 1756 | 1757 | 1758 | 1759 | 1760 | 1761 | 1762 | 1763 | 1764 | 1765 | 1766 | 1767 | 1768 | 1769 | 1770 | 1771 | 1772 | 1773 | 1774 | 1775 | 1776 | 1777 | 1778 | 1779 | 1780 | 1781 | 1782 | 1783 | 1784 | 1785 | 1786 | 1787 | 1788 | 1789 | 1790 | 1791 | 1792 | 1793 | 1794 | 1795 | 1796 | 1797 | 1798 | 1799 | 1800 | 1801 | 1802 | 1803 | 1804 | 1805 | 1806 | 1807 | 1808 | 1809 | 1810 | 1811 | 1812 | 1813 | 1814 | 1815 | 1816 | 1817 | 1818 | 1819 | 1820 | 1821 | 1822 | 1823 | 1824 | 1825 | 1826 | 1827 | 1828 | 1829 | 1830 | 1831 | 1832 | 1833 | 1834 | 1835 | 1836 | 1837 | 1838 | 1839 | 1840 | 1841 | 1842 | 1843 | 1844 | 1845 | 1846 | 1847 | 1848 | 1849 | 1850 | 1851 | 1852 | 1853 | 1854 | 1855 | 1856 | 1857 | 1858 | 1859 | 1860 | 1861 | 1862 | 1863 | 1864 | 1865 | 1866 | 1867 | 1868 | 1869 | 1870 | 1871 | 1872 | 1873 | 1874 | 1875 | 1876 | 1877 | 1878 | 1879 | 1880 | 1881 | 1882 | 1883 | 1884 | 1885 | 1886 | 1887 | 1888 | 1889 | 1890 | 1891 | 1892 | 1893 | 1894 | 1895 | 1896 | 1897 | 1898 | 1899 | 1900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1980 | 1981 | 1982 | 1983 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | The article about the project you can find here 2 | [http://e1ectro.blogspot.ru/2017/02/diy-desoldering-station-for-25.html](http://e1ectro.blogspot.ru/2017/02/diy-desoldering-station-for-25.html) 3 | 4 | --------------------------------------------------------------------------------