

The Youmile Step Up Boost Power Converter is a versatile and efficient adjustable voltage regulator designed to step up a lower input voltage to a higher, stable output voltage. This component is widely used in applications requiring a regulated power supply, such as battery-powered devices, portable electronics, and DIY projects. Its compact design and adjustable output make it ideal for hobbyists and professionals alike.
Common applications include:








The following are the key technical details of the Youmile Step Up Boost Power Converter:
| Parameter | Specification | 
|---|---|
| Input Voltage Range | 3V to 35V | 
| Output Voltage Range | 4V to 40V (adjustable via potentiometer) | 
| Maximum Output Current | 2A (continuous), 3A (peak) | 
| Conversion Efficiency | Up to 92% (depending on input/output) | 
| Switching Frequency | 150 kHz | 
| Operating Temperature | -40°C to +85°C | 
| Dimensions | 43mm x 21mm x 14mm | 
The module has four main pins for input and output connections:
| Pin Name | Description | 
|---|---|
| VIN+ | Positive input voltage terminal (3V to 35V). | 
| VIN- | Negative input voltage terminal (ground). | 
| VOUT+ | Positive output voltage terminal (4V to 40V). | 
| VOUT- | Negative output voltage terminal (ground). | 
Connect the Input Voltage:
VIN+ pin.VIN- pin.Connect the Output Load:
VOUT+ pin.VOUT- pin.Adjust the Output Voltage:
Power On:
The Step Up Boost Power Converter can be used to power an Arduino UNO from a lower voltage source, such as a 3.7V lithium-ion battery. Below is an example setup:
VIN+ and negative terminal to VIN-.VOUT+ to the Arduino's 5V pin and VOUT- to the GND pin.Here is a simple Arduino sketch to verify the setup:
// This sketch blinks the onboard LED to confirm the Arduino is powered
void setup() {
  pinMode(LED_BUILTIN, OUTPUT); // Set the onboard LED pin as output
}
void loop() {
  digitalWrite(LED_BUILTIN, HIGH); // Turn the LED on
  delay(1000);                     // Wait for 1 second
  digitalWrite(LED_BUILTIN, LOW);  // Turn the LED off
  delay(1000);                     // Wait for 1 second
}
No Output Voltage:
Output Voltage Not Adjustable:
Overheating:
Load Not Powering On:
Q: Can this module step down voltage as well?
A: No, this is a boost converter and can only step up the input voltage. For step-down functionality, use a buck converter.
Q: What happens if I exceed the maximum input voltage?
A: Exceeding the input voltage range (35V) can permanently damage the module. Always stay within the specified range.
Q: Can I use this module with a solar panel?
A: Yes, as long as the solar panel's output voltage is within the input range of the module. Ensure the output voltage is adjusted to match your load.
Q: Is the module protected against reverse polarity?
A: No, the module does not have built-in reverse polarity protection. Double-check your connections before powering on.
By following this documentation, you can effectively use the Youmile Step Up Boost Power Converter in your projects.