

The 2N7002 is an N-channel MOSFET housed in a compact SOT-23 package. It is widely used in low-power switching applications due to its low on-resistance, fast switching speeds, and ease of integration into circuits. This component is ideal for driving small loads, interfacing with microcontrollers, and general-purpose switching in low-voltage systems.








| Parameter | Value |
|---|---|
| Type | N-Channel MOSFET |
| Package | SOT-23 |
| Maximum Drain-Source Voltage (VDS) | 60V |
| Maximum Gate-Source Voltage (VGS) | ±20V |
| Continuous Drain Current (ID) | 200mA (at 25°C) |
| Pulsed Drain Current (IDM) | 800mA |
| On-Resistance (RDS(on)) | 1.2Ω (at VGS = 10V, ID = 500mA) |
| Gate Threshold Voltage (VGS(th)) | 1V to 2.5V |
| Power Dissipation (PD) | 300mW (at 25°C) |
| Operating Temperature | -55°C to +150°C |
The 2N7002 has three pins, as shown below:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Gate | Controls the MOSFET switching |
| 2 | Source | Source terminal of the MOSFET |
| 3 | Drain | Drain terminal of the MOSFET |
Basic Circuit Setup:
Gate Resistor:
Load Considerations:
Driving with a Microcontroller:
Below is an example of using the 2N7002 to control an LED with an Arduino UNO:
// Define the pin connected to the MOSFET Gate
const int mosfetGatePin = 9;
void setup() {
pinMode(mosfetGatePin, OUTPUT); // Set the Gate pin as an output
}
void loop() {
digitalWrite(mosfetGatePin, HIGH); // Turn on the MOSFET (LED ON)
delay(1000); // Wait for 1 second
digitalWrite(mosfetGatePin, LOW); // Turn off the MOSFET (LED OFF)
delay(1000); // Wait for 1 second
}
MOSFET Not Turning On:
Excessive Heat:
Load Not Switching Properly:
MOSFET Always On:
Q: Can the 2N7002 handle high-power loads?
A: No, the 2N7002 is designed for low-power applications with a maximum continuous current of 200mA. For higher power, consider using a MOSFET with a higher current rating.
Q: Is the 2N7002 compatible with 3.3V logic?
A: Yes, the 2N7002 can be driven by 3.3V logic signals, as its Gate threshold voltage is as low as 1V.
Q: Do I need a heatsink for the 2N7002?
A: In most low-power applications, a heatsink is not required. However, ensure the power dissipation remains within the specified limits.
Q: Can I use the 2N7002 for PWM control?
A: Yes, the 2N7002 is suitable for PWM applications due to its fast switching speed.