

The IRLML6402 is an N-channel MOSFET manufactured by Infineon, with the part ID IRLML6402TRPbF. This component is designed for low-voltage applications and is known for its low on-resistance and fast switching speeds. It is commonly used in power management, load switching, and DC-DC converter circuits. Its compact SOT-23 package makes it ideal for space-constrained designs.








| Parameter | Value | Unit |
|---|---|---|
| Drain-Source Voltage (VDS) | -20 | V |
| Gate-Source Voltage (VGS) | ±12 | V |
| Continuous Drain Current (ID) | -3.7 (at VGS = -4.5V, TA = 25°C) | A |
| Pulsed Drain Current (IDM) | -11 | A |
| Power Dissipation (PD) | 1.25 | W |
| RDS(on) (On-Resistance) | 0.045 (at VGS = -4.5V, ID = -3.7A) | Ω |
| Operating Temperature Range | -55 to +150 | °C |
The IRLML6402 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 the negative side of the load or ground |
| 3 | Drain | Connected to the load or power supply |
The IRLML6402 can be used to control a small DC motor with an Arduino UNO. Below is an example circuit and code:
// Example code to control a DC motor using IRLML6402 and Arduino UNO
const int motorPin = 9; // PWM pin connected to the Gate of IRLML6402
void setup() {
pinMode(motorPin, OUTPUT); // Set motorPin as an output
}
void loop() {
analogWrite(motorPin, 128); // Set motor speed to 50% (PWM duty cycle = 128/255)
delay(5000); // Run motor for 5 seconds
analogWrite(motorPin, 0); // Turn off the motor
delay(5000); // Wait for 5 seconds
}
MOSFET Not Turning On
Excessive Heat
Motor Not Running
Q: Can the IRLML6402 handle inductive loads like motors?
A: Yes, but you should use a flyback diode across the load to protect the MOSFET from voltage spikes during switching.
Q: What is the maximum Gate-Source voltage?
A: The maximum Gate-Source voltage is ±12V. Exceeding this value may damage the MOSFET.
Q: Can I use the IRLML6402 for high-frequency switching?
A: Yes, the IRLML6402 is designed for fast switching applications. Ensure your circuit minimizes parasitic inductance and capacitance for optimal performance.