

The BT137 600E is a TRIAC (Triode for Alternating Current) manufactured by NXP. It is a robust and reliable electronic component designed for controlling AC power in various applications. With a voltage rating of up to 600V and a current handling capacity of 4A, the BT137 600E is widely used in light dimmers, motor speed controllers, and other AC switching circuits. Its bidirectional switching capability makes it ideal for controlling AC loads efficiently.








| Parameter | Value |
|---|---|
| Manufacturer | NXP |
| Part ID | TRIAC |
| Maximum Repetitive Voltage (VDRM) | 600V |
| Maximum RMS On-State Current (IT(RMS)) | 4A |
| Gate Trigger Current (IGT) | 5mA |
| Holding Current (IH) | 2mA |
| Peak Gate Trigger Voltage (VGT) | 1.5V |
| Maximum Surge Current (ITSM) | 25A |
| Operating Temperature Range | -40°C to +125°C |
| Package Type | TO-220 |
The BT137 600E comes in a TO-220 package with three pins. The pin configuration is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | MT1 | Main Terminal 1 (AC load connection) |
| 2 | MT2 | Main Terminal 2 (AC load connection) |
| 3 | Gate | Gate (control input) |
Basic Circuit Setup:
Gate Triggering:
Snubber Circuit:
Isolation:
The BT137 600E can be controlled using an Arduino UNO. Below is an example circuit and code for switching an AC load:
// Arduino code to control BT137 600E TRIAC
// This code toggles an AC load ON and OFF every 2 seconds
const int triacGatePin = 3; // Pin connected to the TRIAC Gate via optocoupler
void setup() {
pinMode(triacGatePin, OUTPUT); // Set the TRIAC Gate pin as output
}
void loop() {
digitalWrite(triacGatePin, HIGH); // Trigger the TRIAC to turn ON the load
delay(2000); // Keep the load ON for 2 seconds
digitalWrite(triacGatePin, LOW); // Turn OFF the TRIAC (load will turn OFF
// when the AC current crosses zero)
delay(2000); // Keep the load OFF for 2 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| TRIAC does not turn ON | Insufficient gate current | Check the gate resistor value and ensure |
| the gate current exceeds 5mA. | ||
| TRIAC turns ON but does not turn OFF | Load current is below holding current | Ensure the load current is above 2mA. |
| False triggering of the TRIAC | Voltage spikes from inductive loads | Add a snubber circuit across the TRIAC. |
| Overheating of the TRIAC | Excessive load current | Use a heat sink to dissipate heat. |
Can the BT137 600E handle inductive loads?
What is the maximum AC voltage the BT137 600E can handle?
Can I use the BT137 600E for DC switching?
Do I need an optocoupler for controlling the TRIAC with a microcontroller?
By following this documentation, you can effectively use the BT137 600E TRIAC in your AC power control applications.