

The 2N2222 is a widely used NPN bipolar junction transistor (BJT) that is suitable for low to medium power switching and amplification applications. Known for its reliability and versatility, the 2N2222 is commonly used in hobbyist projects, educational circuits, and professional designs. It is capable of handling moderate current and voltage levels, making it ideal for driving small loads, amplifying signals, or functioning as a switch in various electronic circuits.








The following table outlines the key technical specifications of the 2N2222 transistor:
| Parameter | Value |
|---|---|
| Transistor Type | NPN |
| Maximum Collector-Emitter Voltage (VCEO) | 40V |
| Maximum Collector-Base Voltage (VCBO) | 75V |
| Maximum Emitter-Base Voltage (VEBO) | 6V |
| Maximum Collector Current (IC) | 800mA |
| Power Dissipation (PD) | 500mW |
| DC Current Gain (hFE) | 100 to 300 |
| Transition Frequency (fT) | 250 MHz |
| Package Type | TO-18 (metal can) or TO-92 (plastic) |
The 2N2222 is typically available in TO-92 or TO-18 packages. The pin configuration for the TO-92 package is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Emitter | Connected to ground or negative terminal |
| 2 | Base | Controls the transistor's operation |
| 3 | Collector | Connected to the load or positive terminal |
For the TO-18 package, the pinout is similar but arranged in a circular pattern.
The following example demonstrates how to use the 2N2222 to control an LED with an Arduino UNO:
// Define the pin connected to the 2N2222 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 applying HIGH to the transistor base
digitalWrite(transistorBasePin, HIGH);
delay(1000); // Keep the LED on for 1 second
// Turn the LED off by applying LOW to the transistor base
digitalWrite(transistorBasePin, LOW);
delay(1000); // Keep the LED off for 1 second
}
Transistor Not Switching Properly
Overheating
No Output Signal
LED Not Lighting Up
Q: Can the 2N2222 handle high-power applications?
A: No, the 2N2222 is designed for low to medium power applications. For high-power applications, consider using a power transistor like the TIP120.
Q: What is the maximum frequency the 2N2222 can handle?
A: The 2N2222 has a transition frequency (( f_T )) of 250 MHz, making it suitable for high-frequency applications within this range.
Q: Can I use the 2N2222 without a base resistor?
A: No, a base resistor is essential to limit the base current and prevent damage to the transistor.
Q: Is the 2N2222 suitable for analog signal amplification?
A: Yes, the 2N2222 is commonly used for analog signal amplification in audio and RF circuits.