

The HW373 Boost Converter is a DC-DC step-up voltage regulator designed to increase a lower input voltage to a higher output voltage. This compact and efficient module is widely used in battery-powered devices, portable electronics, and renewable energy systems where a higher voltage is required for optimal performance. Its small size and high efficiency make it an ideal choice for applications requiring reliable voltage boosting.








The HW373 Boost Converter is designed to deliver stable and efficient voltage conversion. Below are its key technical details:
| Parameter | Value |
|---|---|
| Input Voltage Range | 2.5V to 6V |
| Output Voltage Range | 3.3V to 12V (adjustable) |
| Maximum Output Current | 1A (depending on input voltage) |
| Efficiency | Up to 92% |
| Switching Frequency | 1.2 MHz |
| Dimensions | 22mm x 17mm x 4mm |
The HW373 Boost Converter typically has the following pin layout:
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin. Connect to the positive terminal of the power source. |
| GND | Ground pin. Connect to the negative terminal of the power source. |
| VOUT | Output voltage pin. Provides the boosted voltage to the load. |
| EN (optional) | Enable pin. Used to turn the module on/off. Pull high to enable, low to disable. |
Connect the Input Voltage:
Connect the Output Voltage:
Adjust the Output Voltage (if applicable):
Enable the Module (if EN pin is available):
The HW373 Boost Converter can be used to power an Arduino UNO from a 3.7V Li-ion battery. Below is an example setup:
Here is a simple Arduino code to blink an LED, powered by the HW373:
// Simple LED Blink Example
// This code assumes the Arduino UNO is powered by the HW373 Boost Converter.
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Output Voltage is Unstable:
Module Overheats:
Cannot Adjust Output Voltage:
Q: Can the HW373 Boost Converter be used with a solar panel?
A: Yes, as long as the solar panel's output voltage is within the 2.5V to 6V range. Ensure the panel provides sufficient current for your load.
Q: What happens if the input voltage exceeds 6V?
A: Exceeding the input voltage range may damage the module. Always use a regulated power source within the specified range.
Q: Can I use the HW373 to power a Raspberry Pi?
A: The HW373 can power a Raspberry Pi if the output voltage is set to 5V and the current requirement (typically 2.5A for a Raspberry Pi 4) is met. However, the HW373's maximum output current is 1A, so it is not suitable for high-power Raspberry Pi models.
Q: Is the HW373 Boost Converter protected against short circuits?
A: Some versions of the HW373 may include basic protection features, but it is recommended to avoid short circuits to prevent damage.
By following this documentation, you can effectively integrate the HW373 Boost Converter into your projects for reliable and efficient voltage boosting.