

The AO3400A is an N-channel MOSFET manufactured by Generic. It is designed for low-voltage applications and features low on-resistance and fast switching speeds. This makes it an ideal choice for power management, load switching, DC-DC converters, and other switching applications. Its compact SOT-23 package allows for easy integration into space-constrained designs.








| Parameter | Value |
|---|---|
| Manufacturer Part ID | AO3400A |
| Type | N-Channel MOSFET |
| Maximum Drain-Source Voltage (VDS) | 30V |
| Maximum Gate-Source Voltage (VGS) | ±20V |
| Continuous Drain Current (ID) | 5.8A (at 10V VGS) |
| Pulsed Drain Current (IDM) | 20A |
| Maximum Power Dissipation (PD) | 1.4W |
| RDS(on) (On-Resistance) | 13.5mΩ (at 10V VGS) |
| Gate Threshold Voltage (VGS(th)) | 1.0V to 2.5V |
| Operating Temperature Range | -55°C to 150°C |
| Package Type | SOT-23 |
The AO3400A 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 ground or low side |
| 3 | Drain | Connected to the load |
The AO3400A can be used to control a load (e.g., an LED or motor) with an Arduino UNO. Below is an example circuit and code:
// Example code to control an AO3400A MOSFET with an Arduino UNO
// This code turns the MOSFET on and off to control a load (e.g., an LED).
const int mosfetGatePin = 9; // Pin connected to the gate of the AO3400A
void setup() {
pinMode(mosfetGatePin, OUTPUT); // Set the gate pin as an output
}
void loop() {
digitalWrite(mosfetGatePin, HIGH); // Turn the MOSFET on (load is powered)
delay(1000); // Wait for 1 second
digitalWrite(mosfetGatePin, LOW); // Turn the MOSFET off (load is off)
delay(1000); // Wait for 1 second
}
MOSFET Overheating
MOSFET Not Switching Properly
Load Not Turning Off Completely
MOSFET Damaged
Q1: Can the AO3400A be used with 3.3V logic?
A1: While the AO3400A can operate with a gate voltage as low as 4.5V, it is not guaranteed to fully turn on with 3.3V logic. Consider using a logic-level MOSFET for 3.3V systems.
Q2: Is the AO3400A suitable for high-frequency switching?
A2: Yes, the AO3400A has fast switching characteristics, making it suitable for high-frequency applications. However, ensure proper gate drive circuitry to minimize switching losses.
Q3: Can I use the AO3400A for AC loads?
A3: No, the AO3400A is designed for DC applications. For AC loads, consider using a TRIAC or other AC-specific components.
Q4: What is the maximum load current the AO3400A can handle?
A4: The AO3400A can handle up to 5.8A continuously at 10V gate drive, provided proper thermal management is in place.