

The SCR MCR100-6 is a silicon-controlled rectifier (SCR) designed for efficient power control in various electronic circuits. It is a unidirectional semiconductor device that can handle high voltage and current, making it ideal for applications requiring precise control of power delivery. The MCR100-6 is commonly used in motor control, lighting dimmers, heating systems, and other AC or DC power control applications.








The following table outlines the key technical specifications of the SCR MCR100-6:
| Parameter | Value |
|---|---|
| Maximum Repetitive Voltage (VRRM) | 400V |
| Maximum On-State Current (IT) | 0.8A |
| Peak Gate Trigger Current (IGT) | 200µA |
| Peak Gate Trigger Voltage (VGT) | 0.8V |
| Holding Current (IH) | 5mA |
| Maximum Surge Current (ITSM) | 8A |
| Operating Temperature Range | -40°C to +110°C |
| Package Type | TO-92 |
The SCR MCR100-6 comes in a TO-92 package with three pins. The pin configuration is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Gate | Trigger input to control the SCR |
| 2 | Cathode | Negative terminal |
| 3 | Anode | Positive terminal |
Basic Circuit Setup:
Triggering the SCR:
Turning Off the SCR:
The following example demonstrates how to use the SCR MCR100-6 to control an LED with an Arduino UNO.
// Example code to control an SCR MCR100-6 with an Arduino UNO
const int SCRGatePin = 9; // Pin connected to the SCR gate
const int LEDControlPin = 7; // Pin to control the LED state
void setup() {
pinMode(SCRGatePin, OUTPUT); // Set SCR gate pin as output
pinMode(LEDControlPin, INPUT_PULLUP); // Set LED control pin as input
}
void loop() {
if (digitalRead(LEDControlPin) == LOW) {
// If button is pressed, trigger the SCR
digitalWrite(SCRGatePin, HIGH); // Send a pulse to the SCR gate
delay(10); // Short delay to ensure SCR is triggered
digitalWrite(SCRGatePin, LOW); // Turn off the gate signal
}
// Note: The SCR will remain on until the current through it drops below
// the holding current, or the power supply is interrupted.
}
SCR Does Not Turn On:
SCR Turns Off Unexpectedly:
SCR Overheats:
Q: Can the SCR MCR100-6 be used for AC circuits?
A: Yes, the SCR can be used in AC circuits, but it will only conduct during the positive half-cycle. For full-wave control, use a TRIAC or two SCRs in an anti-parallel configuration.
Q: How do I protect the SCR from voltage spikes?
A: Use a snubber circuit (a resistor and capacitor in series) across the SCR to suppress voltage transients.
Q: Can I use the SCR MCR100-6 for high-power applications?
A: The MCR100-6 is suitable for low to medium power applications. For high-power applications, consider using an SCR with a higher current and voltage rating.