

The AO3400A (marked as A09T) is a surface-mount N-channel MOSFET transistor designed for high-efficiency switching and amplification in electronic circuits. With a maximum voltage rating of 30V and a current handling capacity of up to 5.7A, this component is ideal for low-power DC-DC converters, motor drivers, and general-purpose switching applications. Its compact SOT-23 package makes it suitable for space-constrained designs.








| Parameter | Value |
|---|---|
| Type | N-Channel MOSFET |
| Maximum Drain-Source Voltage (VDS) | 30V |
| Maximum Gate-Source Voltage (VGS) | ±20V |
| Continuous Drain Current (ID) | 5.7A (at 25°C) |
| Pulsed Drain Current (IDM) | 20A |
| Power Dissipation (PD) | 1.4W (at 25°C) |
| RDS(on) (Drain-Source On Resistance) | 13.5mΩ (at VGS = 10V) |
| Gate Threshold Voltage (VGS(th)) | 1.0V - 2.5V |
| Operating Temperature Range | -55°C to +150°C |
| Package | 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 the negative side of the circuit |
| 3 | Drain | Connected to the load or positive side of the circuit |
The AO3400A can be used to control a 12V LED strip with an Arduino UNO. Below is an example circuit and code:
// Define the MOSFET Gate pin
const int mosfetGatePin = 9;
void setup() {
// Set the MOSFET Gate pin as an output
pinMode(mosfetGatePin, OUTPUT);
}
void loop() {
// Turn the LED strip ON
digitalWrite(mosfetGatePin, HIGH);
delay(1000); // Keep it ON for 1 second
// Turn the LED strip OFF
digitalWrite(mosfetGatePin, LOW);
delay(1000); // Keep it OFF for 1 second
}
MOSFET Not Turning On
Excessive Heat Generation
MOSFET Fails or Shorts
Q: Can the AO3400A be used for PWM control?
A: Yes, the AO3400A is suitable for PWM control due to its low RDS(on) and fast switching characteristics.
Q: What is the maximum Gate current?
A: The Gate current is typically very low, but it is recommended to use a resistor (10Ω to 100Ω) in series with the Gate to limit inrush current during switching.
Q: Can I use the AO3400A with a 3.3V microcontroller?
A: Yes, the AO3400A can be driven by a 3.3V microcontroller, as its Gate Threshold Voltage (VGS(th)) is as low as 1.0V. However, ensure the load current and RDS(on) are within acceptable limits at this Gate voltage.