The PowerBoost 1000 Basic is a versatile and efficient power supply module designed to provide a stable 5V output from a single lithium polymer (LiPo) battery. It is equipped with a built-in charging circuit, allowing for easy recharging of the battery. The module includes a terminal block for straightforward connections, making it ideal for portable electronics, DIY projects, and anywhere a compact power source is required.
Pin Number | Name | Description |
---|---|---|
1 | BAT | Battery input terminal for LiPo battery (+) |
2 | GND | Ground terminal |
3 | 5V | Regulated 5V output terminal |
4 | EN | Enable pin (pull low to disable, floating/high to enable) |
5 | GND | Ground terminal for enable pin |
Connecting the Battery:
Drawing Power:
Enabling/Disabling the Module:
Module Not Powering On:
Insufficient Output Current:
Q: Can I use the PowerBoost 1000 Basic to charge the battery? A: Yes, the module includes a built-in charging circuit for LiPo batteries.
Q: What should I do if the module gets hot during use? A: Ensure proper ventilation and check if the current draw is within the specified limits.
Q: Is it possible to disable the PowerBoost 1000 Basic when not in use? A: Yes, you can disable the module by connecting the EN pin to GND.
// Example code to control the PowerBoost 1000 Basic with an Arduino UNO
const int enablePin = 2; // Connect to the EN pin of the PowerBoost
void setup() {
pinMode(enablePin, OUTPUT);
// Start with the PowerBoost disabled
digitalWrite(enablePin, LOW);
}
void loop() {
// Enable the PowerBoost
digitalWrite(enablePin, HIGH);
delay(5000); // Keep enabled for 5 seconds
// Disable the PowerBoost
digitalWrite(enablePin, LOW);
delay(5000); // Keep disabled for 5 seconds
}
Note: This example assumes you have connected the EN pin of the PowerBoost 1000 Basic to digital pin 2 on the Arduino UNO. The code enables the PowerBoost for 5 seconds and then disables it for 5 seconds in a loop.