

The N35P112 is a high-performance N-channel MOSFET (Metal-Oxide-Semiconductor Field-Effect Transistor) designed for high-speed switching applications. It is characterized by its low on-resistance and fast switching capabilities, making it an ideal choice for power management, signal amplification, and other electronic circuit applications. Its compact design and efficiency make it suitable for use in a wide range of devices, including power supplies, motor drivers, and LED drivers.








The following table outlines the key technical specifications of the N35P112 MOSFET:
| Parameter | Value | Description |
|---|---|---|
| Drain-Source Voltage (VDS) | 30V | Maximum voltage between drain and source |
| Gate-Source Voltage (VGS) | ±20V | Maximum voltage between gate and source |
| Continuous Drain Current (ID) | 10A | Maximum current through the drain |
| Pulsed Drain Current (IDM) | 40A | Maximum pulsed current through the drain |
| On-Resistance (RDS(on)) | 0.015Ω | Resistance when the MOSFET is on |
| Gate Threshold Voltage (VGS(th)) | 1.2V - 2.5V | Voltage required to turn on the MOSFET |
| Total Gate Charge (Qg) | 12nC | Charge required to fully switch the gate |
| Power Dissipation (PD) | 25W | Maximum power dissipation |
| Operating Temperature Range | -55°C to +150°C | Safe operating temperature range |
| Package Type | TO-220, SOT-23, or DPAK | Available package options |
The N35P112 MOSFET typically comes in a 3-pin configuration. Below is the pinout description for the TO-220 package:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Gate | Controls the MOSFET switching |
| 2 | Drain | Current flows from drain to source |
| 3 | Source | Connected to ground or load return path |
The following example demonstrates how to use the N35P112 to control an LED strip with an Arduino UNO:
// Example code to control an LED strip using the N35P112 MOSFET
// Connect the MOSFET gate to pin 9 of the Arduino through a 100Ω resistor
const int mosfetGatePin = 9; // Pin connected to the MOSFET gate
void setup() {
pinMode(mosfetGatePin, OUTPUT); // Set the MOSFET gate pin as an output
}
void loop() {
digitalWrite(mosfetGatePin, HIGH); // Turn on the MOSFET (LED strip ON)
delay(1000); // Keep the LED strip ON for 1 second
digitalWrite(mosfetGatePin, LOW); // Turn off the MOSFET (LED strip OFF)
delay(1000); // Keep the LED strip OFF for 1 second
}
MOSFET Overheating
MOSFET Not Switching
Voltage Drop Across MOSFET
Q1: Can the N35P112 be used for AC applications?
A1: The N35P112 is primarily designed for DC applications. For AC applications, additional circuitry such as a rectifier may be required.
Q2: What is the maximum PWM frequency for the N35P112?
A2: The maximum PWM frequency depends on the gate charge (Qg) and the gate driver capability. Typically, it can handle frequencies up to 100kHz with proper gate drive.
Q3: How do I protect the MOSFET from voltage spikes?
A3: Use a flyback diode across inductive loads and consider adding a TVS (Transient Voltage Suppressor) diode for additional protection.
This concludes the documentation for the N35P112 MOSFET.