

The AP2112K-3.3 is a low dropout (LDO) linear voltage regulator designed to provide a stable 3.3V output with high efficiency and low noise. It is ideal for powering sensitive electronic components, such as microcontrollers, sensors, and communication modules, in compact and portable devices. The AP2112K-3.3 is equipped with features like overcurrent protection and thermal shutdown, ensuring reliable operation in various applications.








The AP2112K-3.3 is typically available in a 5-pin SOT-23 package. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | GND | Ground pin |
| 2 | VIN | Input voltage pin (2.5V to 6.0V) |
| 3 | EN | Enable pin (active high, logic high to enable) |
| 4 | NC | No connection (leave unconnected or grounded) |
| 5 | VOUT | Regulated 3.3V output pin |
The AP2112K-3.3 can be used to power an Arduino UNO or its peripherals. Below is an example circuit and Arduino code to control the EN pin.
// Example code to control the AP2112K-3.3 Enable pin using Arduino UNO
const int enablePin = 7; // Connect EN pin of AP2112K-3.3 to Arduino pin 7
void setup() {
pinMode(enablePin, OUTPUT); // Set pin 7 as an output
digitalWrite(enablePin, HIGH); // Enable the regulator (logic high)
}
void loop() {
// Example: Toggle the regulator on and off every 5 seconds
digitalWrite(enablePin, HIGH); // Enable the regulator
delay(5000); // Wait for 5 seconds
digitalWrite(enablePin, LOW); // Disable the regulator
delay(5000); // Wait for 5 seconds
}
No Output Voltage:
Output Voltage is Unstable:
Regulator Overheating:
High Dropout Voltage:
Q: Can I use the AP2112K-3.3 without the EN pin?
A: Yes, you can tie the EN pin directly to VIN for always-on operation.
Q: What type of capacitors should I use?
A: Use ceramic capacitors with low ESR for both input and output. A 1µF capacitor is recommended for the input, and a 1µF to 10µF capacitor is recommended for the output.
Q: Is the AP2112K-3.3 suitable for battery-powered devices?
A: Yes, its low quiescent current (55µA typical) makes it ideal for battery-powered applications.
Q: What happens if the load current exceeds 600mA?
A: The regulator will activate overcurrent protection to prevent damage. Reduce the load to restore normal operation.