N-Cha MOSFET Transistors FQP50N06
N-Channel MOSFET Transistor – FQP50N06
Overview:
The FQP50N06 is a robust N-Channel enhancement-mode MOSFET capable of handling high current and voltage with fast switching capabilities. It's ideal for power switching, motor control, LED dimming, and relay driving in Arduino, Raspberry Pi, and other microcontroller projects. Its TO-220 package allows easy mounting with heatsinks for thermal management.
Key Features:
High-current capacity up to 52A continuous drain current
Low on-resistance: efficient power switching
Logic-level gate drive compatible (can be controlled directly by 5V logic)
Maximum drain-source voltage of 60V
TO-220 package for easy installation and heat dissipation
Fast switching and low gate charge for PWM applications
Technical Specifications:
Parameter | Value |
---|---|
Type | N-Channel MOSFET |
Max Drain-Source Voltage (V<sub>DS</sub>) | 60V |
Max Gate-Source Voltage (V<sub>GS</sub>) | ±20V |
Continuous Drain Current (I<sub>D</sub>) | 52A @ 25°C |
R<sub>DS(on)</sub> | 0.022Ω @ V<sub>GS</sub> = 10V |
Total Gate Charge | ~67 nC |
Package | TO-220 |
Pinout (TO-220 Package):
Pin Number | Name | Description |
---|---|---|
1 | Gate | Logic-level control signal |
2 | Drain | Connect to load |
3 | Source | Connect to ground (GND) |
Wiring with Arduino Uno (Example):
Arduino Uno | FQP50N06 |
---|---|
Digital Pin (e.g., D6) | Gate |
GND | Source |
Load → +V | Drain |
💡 Use a 220Ω resistor between Arduino pin and Gate. Add a flyback diode across inductive loads like motors or relays.
Sample Code (Arduino):
CopyEditint mosfetPin = 6; // Connected to Gate void setup() { pinMode(mosfetPin, OUTPUT); } void loop() { digitalWrite(mosfetPin, HIGH); // Turn ON load delay(1000); digitalWrite(mosfetPin, LOW); // Turn OFF load delay(1000); }
Applications:
Motor and solenoid control
LED strip or high-power lighting dimming
Relay and power supply switching
Battery-powered devices
PWM-based control systems
Resources:
📄 Datasheet PDF: Download FQP50N06 Datasheet
📘 MOSFET Usage Guide: Controlling High Power with Arduino + MOSFET