

The IRLML2502 is a low-voltage N-channel MOSFET designed for high-speed switching applications. It features low on-resistance (RDS(on)) and fast switching times, making it ideal for power management and signal switching in various electronic circuits. Its compact SOT-23 package makes it suitable for space-constrained designs.








| Parameter | Value |
|---|---|
| Drain-Source Voltage (VDS) | 20V |
| Gate-Source Voltage (VGS) | ±8V |
| Continuous Drain Current (ID) | 3.4A (at VGS = 4.5V, TA = 25°C) |
| Pulsed Drain Current (IDM) | 12A |
| Power Dissipation (PD) | 1.25W (TA = 25°C) |
| RDS(on) (at VGS = 4.5V) | 0.028Ω |
| RDS(on) (at VGS = 2.5V) | 0.035Ω |
| Operating Temperature Range | -55°C to +150°C |
| Package Type | SOT-23 |
The IRLML2502 is housed in a 3-pin SOT-23 package. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Gate | Controls the MOSFET switching |
| 2 | Source | Connected to ground or load |
| 3 | Drain | Connected to the load or power |
Below is an example of using the IRLML2502 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 MOSFET 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 Switching Properly
Excessive Heat Generation
MOSFET Fails or Shorts
Low Efficiency
Q1: Can the IRLML2502 be used with 3.3V logic?
A1: Yes, the IRLML2502 can operate with 3.3V logic, but ensure the load current and RDS(on) are within acceptable limits.
Q2: Is the IRLML2502 suitable for high-side switching?
A2: Yes, but you may need a Gate driver circuit to ensure proper Gate voltage relative to the Source.
Q3: Can I use the IRLML2502 for PWM applications?
A3: Yes, the IRLML2502 is suitable for PWM due to its fast switching characteristics.
Q4: What is the maximum load current I can drive?
A4: The maximum continuous current is 3.4A at 25°C, but consider thermal limitations and ensure proper heat dissipation.