

The IRLML6402 is a low-voltage N-channel MOSFET manufactured by Infineon Technologies (Part ID: IRLML6402TRPBF). This component is designed for applications requiring high efficiency, low on-resistance, and fast switching speeds. Its compact SOT-23 package makes it ideal for space-constrained designs.








The following table outlines the key technical specifications of the IRLML6402:
| Parameter | Value | 
|---|---|
| Drain-Source Voltage (VDS) | 20V | 
| Gate-Source Voltage (VGS) | ±12V | 
| Continuous Drain Current (ID) | 3.7A (at VGS = 4.5V, TA = 25°C) | 
| Pulsed Drain Current (IDM) | 11A | 
| On-Resistance (RDS(on)) | 0.028Ω (at VGS = 4.5V, ID = 3.7A) | 
| Power Dissipation (PD) | 1.25W (TA = 25°C) | 
| Operating Temperature Range | -55°C to +150°C | 
| Package | SOT-23 | 
The IRLML6402 is housed in a 3-pin SOT-23 package. The pinout is as follows:
| Pin Number | Pin Name | Description | 
|---|---|---|
| 1 | Gate (G) | Controls the MOSFET switching | 
| 2 | Source (S) | Connected to the source of current | 
| 3 | Drain (D) | Connected to the load or output | 
The IRLML6402 can be used to control a small DC motor with an Arduino UNO. Below is an example circuit and code:
// IRLML6402 MOSFET Motor Control Example
// This code demonstrates how to control a DC motor using PWM.
const int motorPin = 9; // Pin connected to the MOSFET gate
void setup() {
  pinMode(motorPin, OUTPUT); // Set motorPin as an output
}
void loop() {
  // Gradually increase motor speed
  for (int speed = 0; speed <= 255; speed++) {
    analogWrite(motorPin, speed); // Write PWM signal to the gate
    delay(10); // Small delay for smooth ramp-up
  }
  delay(1000); // Run motor at full speed for 1 second
  // Gradually decrease motor speed
  for (int speed = 255; speed >= 0; speed--) {
    analogWrite(motorPin, speed); // Write PWM signal to the gate
    delay(10); // Small delay for smooth ramp-down
  }
  delay(1000); // Pause before repeating
}
MOSFET Overheating
MOSFET Not Switching
High Power Loss
Voltage Spikes
Q1: Can the IRLML6402 handle 5V logic levels?
Yes, the IRLML6402 is designed to operate with logic-level gate drive voltages as low as 4.5V.
Q2: Is the IRLML6402 suitable for high-frequency switching?
Yes, the IRLML6402 has fast switching characteristics, making it suitable for high-frequency applications.
Q3: Can I use the IRLML6402 for 24V systems?
No, the maximum drain-source voltage (VDS) is 20V. Exceeding this limit may damage the MOSFET.
Q4: What is the maximum current the IRLML6402 can handle?
The IRLML6402 can handle up to 3.7A continuously at 25°C, provided proper heat dissipation is ensured.