

The IRLZ44N is an N-channel Power MOSFET manufactured by Infineon Technologies. It is designed for high-speed switching applications and features a low on-resistance, enabling it to handle high currents efficiently. This makes it ideal for use in power management, motor control, and other high-current electronic circuits. Its logic-level gate drive capability allows it to be directly controlled by microcontrollers like the Arduino UNO, making it a popular choice for hobbyists and professionals alike.








| Parameter | Value |
|---|---|
| Manufacturer | Infineon Technologies |
| Part Number | IRLZ44N |
| Type | N-Channel Power MOSFET |
| Maximum Drain-Source Voltage (VDS) | 55V |
| Maximum Gate-Source Voltage (VGS) | ±16V |
| Continuous Drain Current (ID) | 47A (at 25°C) |
| Pulsed Drain Current (IDM) | 160A |
| On-Resistance (RDS(on)) | 0.022Ω (at VGS = 10V) |
| Power Dissipation (PD) | 94W |
| Gate Threshold Voltage (VGS(th)) | 1V to 2V |
| Operating Temperature Range | -55°C to +175°C |
| Package Type | TO-220 |
The IRLZ44N comes in a TO-220 package with three pins. The pin configuration is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Gate | Controls the MOSFET switching |
| 2 | Drain | Current flows into this pin |
| 3 | Source | Current flows out of this pin |
Below is an example of how to use the IRLZ44N to control a DC motor 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 the MOSFET on (motor runs)
delay(1000); // Keep the motor running for 1 second
digitalWrite(mosfetGatePin, LOW); // Turn the MOSFET off (motor stops)
delay(1000); // Wait for 1 second before repeating
}
MOSFET Not Switching On
Excessive Heat Generation
Motor Not Running
Voltage Spikes Damaging the MOSFET
Can the IRLZ44N be used with a 3.3V microcontroller?
What is the maximum current the IRLZ44N can handle?
Is the IRLZ44N suitable for PWM applications?
Do I need a Gate resistor?
By following these guidelines and best practices, the IRLZ44N can be effectively used in a wide range of electronic applications.