

The BC847PN is a general-purpose NPN bipolar junction transistor (BJT) designed for switching and amplification in electronic circuits. It features low noise and high-speed operation, making it ideal for use in consumer electronics, signal processing, and small-signal amplification. Its compact SOT-363 package makes it suitable for space-constrained designs.








| Parameter | Value |
|---|---|
| Transistor Type | NPN |
| Maximum Collector-Emitter Voltage (VCEO) | 45 V |
| Maximum Collector-Base Voltage (VCBO) | 50 V |
| Maximum Emitter-Base Voltage (VEBO) | 6 V |
| Maximum Collector Current (IC) | 500 mA |
| Power Dissipation (Ptot) | 250 mW |
| DC Current Gain (hFE) | 100 to 630 |
| Transition Frequency (fT) | 100 MHz |
| Noise Figure (NF) | 2 dB (typical) |
| Package Type | SOT-363 |
The BC847PN is a dual NPN transistor housed in a single SOT-363 package. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | C1 | Collector of Transistor 1 |
| 2 | B1 | Base of Transistor 1 |
| 3 | E2 | Emitter of Transistor 2 |
| 4 | C2 | Collector of Transistor 2 |
| 5 | B2 | Base of Transistor 2 |
| 6 | E1 | Emitter of Transistor 1 |
The BC847PN is commonly used in circuits requiring two NPN transistors. Below are the steps to use it effectively:
The BC847PN can be used with an Arduino UNO for switching or amplification. Below is an example of using one of the transistors in the BC847PN package to control an LED:
// Define the pin connected to the transistor base
const int transistorBasePin = 9;
void setup() {
// Set the transistor base pin as an output
pinMode(transistorBasePin, OUTPUT);
}
void loop() {
// Turn the LED on by driving the transistor base high
digitalWrite(transistorBasePin, HIGH);
delay(1000); // Keep the LED on for 1 second
// Turn the LED off by driving the transistor base low
digitalWrite(transistorBasePin, LOW);
delay(1000); // Keep the LED off for 1 second
}
Transistor Not Switching Properly
Overheating
No Output Signal
Noise in Amplified Signal
Q: Can the BC847PN handle high-power applications?
A: No, the BC847PN is designed for low-power applications with a maximum collector current of 500 mA and power dissipation of 250 mW.
Q: Can I use both transistors in the BC847PN independently?
A: Yes, the BC847PN contains two independent NPN transistors that can be used separately in a circuit.
Q: What is the advantage of using the BC847PN in a compact package?
A: The SOT-363 package saves space on the PCB, making it ideal for compact and portable devices.
Q: Is the BC847PN suitable for high-frequency applications?
A: Yes, with a transition frequency (fT) of 100 MHz, it is suitable for high-speed signal processing and RF applications.