The PowerBoost 1000 Basic is a versatile power supply module designed to boost input voltage to a stable 5V output, which can be accessed via a USB port. This makes it ideal for portable electronics, DIY projects, and any application requiring a 5V USB power supply. It is particularly useful for charging USB devices or powering projects that require a USB connection.
Pin Name | Description |
---|---|
VIN | Input voltage (1.8V to 5.5V DC) |
GND | Ground connection |
USB A | USB output connector |
EN | Enable pin (active high) |
BAT | Battery connection for rechargeable batteries |
5V | Regulated 5V output |
Connecting Power Source:
Enabling the Module:
Connecting a Load:
Q: Can I use the PowerBoost 1000 Basic to charge my smartphone? A: Yes, as long as the smartphone charges via USB and requires 5V, and the current draw is within 1A.
Q: What should I do if my device is drawing more than 1A? A: You should use a different power module that can handle higher currents. Exceeding the current limit can damage the PowerBoost 1000 Basic.
Q: Can I use multiple PowerBoost 1000 Basics to increase the current output? A: It is not recommended to parallel the outputs of multiple PowerBoost modules to increase current capacity, as this can lead to uneven loading and potential damage.
// Example code to control PowerBoost 1000 Basic with Arduino UNO
const int enablePin = 2; // Connect to the EN pin on PowerBoost
void setup() {
pinMode(enablePin, OUTPUT);
// Start with the PowerBoost disabled
digitalWrite(enablePin, LOW);
}
void loop() {
// Enable the PowerBoost for 10 seconds
digitalWrite(enablePin, HIGH);
delay(10000);
// Disable the PowerBoost
digitalWrite(enablePin, LOW);
delay(10000);
}
Note: This example assumes that the PowerBoost 1000 Basic's EN pin is connected to digital pin 2 on the Arduino UNO. The code toggles the power supply every 10 seconds. Adjust the delay
values as needed for your application.