The Mini Boost Converter HW-085 is a compact DC-DC step-up module designed to increase a lower input voltage to a fixed higher output voltage. It supports four fixed output voltage levels: 5V, 8V, 9V, and 12V, selectable via a jumper. With a maximum output current of 1.5A, this module is ideal for powering devices that require a higher voltage than the input source can provide. Its small size and efficiency make it suitable for portable electronics, battery-powered projects, and DIY applications.
Parameter | Value |
---|---|
Input Voltage Range | 2V to 24V |
Output Voltage Options | 5V, 8V, 9V, 12V (selectable via jumper) |
Maximum Output Current | 1.5A (varies with input voltage) |
Efficiency | Up to 93% (depending on input/output load) |
Dimensions | 30mm x 17mm x 14mm |
Weight | ~5g |
Pin Name | Description |
---|---|
VIN | Positive input voltage terminal (2V to 24V) |
GND | Ground terminal (common ground for input and output) |
VOUT | Positive output voltage terminal (fixed at 5V, 8V, 9V, or 12V, as selected) |
Jumper Position | Output Voltage |
---|---|
Short 5V | 5V |
Short 8V | 8V |
Short 9V | 9V |
Short 12V | 12V |
Connect the Input Voltage:
VIN
pin.GND
pin.Set the Desired Output Voltage:
Connect the Load:
VOUT
pin.GND
pin.Power On:
The Mini Boost Converter HW-085 can be used to power an Arduino UNO from a 3.7V Li-ion battery by stepping up the voltage to 5V.
VIN
and negative terminal to GND
.VOUT
pin to the Arduino's 5V pin and GND
to the Arduino's GND pin.// Example code to blink an LED connected to Arduino UNO
// Ensure the Mini Boost Converter is providing 5V to the Arduino
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output for the onboard LED
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Output Voltage is Incorrect:
Module Overheats:
Load Does Not Power On:
Q1: Can I use this module to charge a battery?
A1: No, this module is not designed for battery charging. It is a step-up converter for powering devices.
Q2: What happens if I reverse the input polarity?
A2: The module does not have reverse polarity protection and may be damaged. Always double-check connections.
Q3: Can I adjust the output voltage to a custom value?
A3: No, the output voltage is fixed to 5V, 8V, 9V, or 12V, as selected by the jumper.
Q4: Is the module suitable for audio applications?
A4: The module may introduce noise, so additional filtering may be required for sensitive audio circuits.