The SparkFun LiPo Charger Booster-5V1A is a versatile and compact electronic component designed for charging single-cell Lithium Polymer (LiPo) batteries and providing a stable 5V output. This makes it an ideal choice for portable electronics, DIY projects, and any application where a 5V power supply is needed alongside battery charging capabilities.
Pin Name | Description |
---|---|
BAT | Connection to the positive terminal of the LiPo battery |
GND | Ground connection |
USB | Micro USB port for charging the LiPo battery |
EN | Enable pin for the booster (active high) |
5V | Regulated 5V output |
Connecting the Battery:
BAT
pin.GND
pin.Charging the Battery:
USB
port and connect it to a USB power source.Enabling the Voltage Booster:
EN
pin to enable the 5V output.EN
pin to the 5V
output for automatic enablement when the USB is plugged in.Accessing the 5V Output:
5V
pin to power your 5V electronics.BAT
and GND
pins.EN
pin is receiving a high signal and that the battery has sufficient charge.EN
pin is not used, ensure it is tied to a known state to prevent erratic behavior.Q: Can I charge multiple batteries with this component? A: No, it is designed for charging a single LiPo battery.
Q: Is it possible to adjust the output voltage? A: The output voltage is fixed at 5V.
Q: Can this component be used while the battery is charging? A: Yes, but it is recommended to avoid simultaneous charging and discharging for battery health.
// Example code to enable the SparkFun LiPo Charger Booster-5V1A with an Arduino UNO
const int enablePin = 7; // Connect the EN pin of the charger to digital pin 7
void setup() {
pinMode(enablePin, OUTPUT); // Set the enable pin as an output
digitalWrite(enablePin, HIGH); // Enable the 5V booster
}
void loop() {
// Your code here to interact with devices powered by the 5V output
}
Note: This example assumes that the EN
pin of the SparkFun LiPo Charger Booster is connected to digital pin 7 of the Arduino UNO. The code sets the pin high, enabling the 5V output.