The Adafruit MiniBoost 5V 100mA Charge Pump AP3602A is a compact and efficient voltage booster designed to step up lower input voltages to a stable 5V output. It is capable of delivering up to 100mA of output current, making it ideal for powering low-power devices such as microcontrollers, sensors, and small electronic modules. Its small size and simplicity make it a popular choice for portable and battery-powered applications.
The Adafruit MiniBoost AP3602A has six pins, as described in the table below:
Pin Name | Pin Number | Description |
---|---|---|
VIN | 1 | Input voltage pin. Connect to the power source (2.7V to 4.5V). |
GND | 2 | Ground pin. Connect to the ground of the circuit. |
VOUT | 3 | Regulated 5V output pin. Connect to the load requiring 5V. |
EN | 4 | Enable pin. Drive high to enable the output; drive low to disable the output. |
FB | 5 | Feedback pin. Internally connected for fixed 5V output; no external connection needed. |
NC | 6 | No connection. Leave this pin unconnected. |
The Adafruit MiniBoost can be used to power an Arduino UNO from a 3.3V source. Below is an example circuit and Arduino code to toggle the EN pin.
// Example code to control the EN pin of the Adafruit MiniBoost AP3602A
// This code toggles the EN pin to enable and disable the 5V output.
#define EN_PIN 7 // Define the Arduino pin connected to the EN pin
void setup() {
pinMode(EN_PIN, OUTPUT); // Set EN_PIN as an output
digitalWrite(EN_PIN, LOW); // Start with the 5V output disabled
}
void loop() {
digitalWrite(EN_PIN, HIGH); // Enable the 5V output
delay(5000); // Keep the output enabled for 5 seconds
digitalWrite(EN_PIN, LOW); // Disable the 5V output
delay(5000); // Keep the output disabled for 5 seconds
}
No Output Voltage:
Output Voltage Drops Under Load:
Excessive Heat:
Noise or Instability:
Q: Can I use the AP3602A to power a device requiring more than 100mA?
A: No, the AP3602A is designed for a maximum output current of 100mA. Exceeding this limit may cause instability or damage the component.
Q: Can I use the AP3602A with a 5V input?
A: No, the input voltage must be between 2.7V and 4.5V. Using a 5V input will exceed the component's specifications and may cause damage.
Q: Is the output voltage adjustable?
A: No, the AP3602A provides a fixed 5V output and does not support adjustable output voltage.
Q: What type of capacitors should I use?
A: Use ceramic capacitors with low ESR. A 1µF capacitor for VIN and a 10µF capacitor for VOUT are recommended.