

The BC337 is an NPN bipolar junction transistor (BJT) designed for general-purpose amplification and switching applications. It is widely used in low to medium power circuits due to its ability to handle a maximum collector current of 800 mA and a voltage rating of 45 V. Its compact size and versatility make it a popular choice for hobbyists and professionals alike.








Below are the key technical details of the BC337 transistor:
| Parameter | Value |
|---|---|
| Transistor Type | NPN |
| Maximum Collector Current (Ic) | 800 mA |
| Maximum Collector-Emitter Voltage (Vce) | 45 V |
| Maximum Collector-Base Voltage (Vcb) | 50 V |
| Maximum Emitter-Base Voltage (Veb) | 5 V |
| DC Current Gain (hFE) | 100 to 630 (varies by model) |
| Power Dissipation (Ptot) | 625 mW |
| Transition Frequency (ft) | 100 MHz |
| Package Type | TO-92 |
The BC337 transistor comes in a TO-92 package with three pins. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Collector | Current flows into this pin |
| 2 | Base | Controls the transistor's operation |
| 3 | Emitter | Current flows out of this pin |
Below is a diagram of the BC337 pin configuration (viewed from the flat side of the TO-92 package):
_______
| |
| |
|_______|
| | |
1 2 3
C B E
The BC337 transistor can be used as a switch or an amplifier. Below are the steps to use it in a circuit:
Determine the Operating Mode:
Base Resistor Calculation:
Connect the Circuit:
Below is an example of using the BC337 to control an LED with an Arduino UNO:
// Define the pin connected to the BC337 base
const int transistorPin = 9; // Digital pin 9
void setup() {
pinMode(transistorPin, OUTPUT); // Set the pin as an output
}
void loop() {
digitalWrite(transistorPin, HIGH); // Turn on the LED
delay(1000); // Wait for 1 second
digitalWrite(transistorPin, LOW); // Turn off the LED
delay(1000); // Wait for 1 second
}
Transistor Overheating:
No Output Signal:
Load Not Turning Off:
Damaged Transistor:
Q1: Can the BC337 be used for high-power applications?
A1: No, the BC337 is designed for low to medium power applications. For high-power applications, consider using power transistors like the TIP120.
Q2: What is the difference between the BC337 and BC547?
A2: The BC337 can handle higher currents (up to 800 mA) compared to the BC547 (100 mA), making it more suitable for driving larger loads.
Q3: Can I use the BC337 in a Darlington pair?
A3: Yes, the BC337 can be used in a Darlington pair configuration to achieve higher current gain.
Q4: What is the maximum frequency the BC337 can handle?
A4: The BC337 has a transition frequency (( f_t )) of 100 MHz, making it suitable for low-frequency applications.