Stufin
Home Quick Cart Profile

150W Dc-Dc Boost Adjustable Power Converter

Buy Now on Stufin

Input Voltage

5V to 40V

Output Voltage

Adjustable from 5V to 60V

Output Power

Up to 150W

Efficiency

Typically above 90%

Switching Frequency

300kHz

Operating Temperature Range

-40C to 85C

Dimensions

50mm x 30mm x 20mm (L x W x H)

Weight

Approximately 60g

Applications

The 150W DC-DC Boost Adjustable Power Converter is suitable for various applications, including

IoT devices

Robotics and robotic power systems

Automotive systems

Industrial control systems

Medical devices

Aerospace and defense systems

Conclusion

The 150W DC-DC Boost Adjustable Power Converter is a highly efficient and flexible power converter designed to provide a reliable and adjustable power source for various applications. Its compact design, high power density, and adjustable output voltage make it an ideal solution for systems requiring a high degree of flexibility and reliability.

Pin Configuration

  • 150W DC-DC Boost Adjustable Power Converter Pinout Explanation
  • The 150W DC-DC Boost Adjustable Power Converter is a high-efficiency step-up converter that can output up to 150W of power. It has a compact design and is suitable for a wide range of applications, including IoT devices, robots, and industrial control systems. The module has a total of 6 pins, which are explained in detail below:
  • Pinout:
  • 1. VIN (Input Voltage):
  • Function: Input voltage pin, connects to the power source (battery or DC supply)
  • Voltage Range: 5-32V DC
  • Recommended Wire Size: 20AWG or thicker
  • 2. GND (Ground):
  • Function: Ground pin, connects to the negative terminal of the power source and the circuit ground
  • Recommended Wire Size: 20AWG or thicker
  • 3. VOUT (Output Voltage):
  • Function: Output voltage pin, connects to the load (device being powered)
  • Voltage Range: Adjustable from 5-35V DC (set using the ADJ pin)
  • Recommended Wire Size: 20AWG or thicker
  • 4. ADJ (Adjustable Output Voltage):
  • Function: Output voltage adjustment pin, connects to a potentiometer or a voltage divider network to set the output voltage
  • Voltage Range: 0-2.5V DC (sets the output voltage between 5-35V DC)
  • Recommended Wire Size: 24AWG or thicker
  • 5. EN (Enable):
  • Function: Enable pin, connects to a digital signal (high or low) to turn the converter On or Off
  • Logic Level: Active High (high voltage level enables the converter, low voltage level disables it)
  • Recommended Wire Size: 24AWG or thicker
  • 6. FB (Feedback):
  • Function: Feedback pin, connects to a resistor divider network to monitor the output voltage and maintain regulation
  • Recommended Wire Size: 24AWG or thicker
  • Connection Structure:
  • To connect the pins, follow this structure:
  • 1. Connect the power source (battery or DC supply) to the VIN pin and the GND pin.
  • 2. Connect the load (device being powered) to the VOUT pin and the GND pin.
  • 3. Connect a potentiometer or a voltage divider network to the ADJ pin to set the desired output voltage.
  • 4. Connect a digital signal (high or low) to the EN pin to enable or disable the converter.
  • 5. Connect a resistor divider network to the FB pin to monitor the output voltage and maintain regulation.
  • Important Notes:
  • Ensure that the input voltage is within the recommended range (5-32V DC) to avoid damaging the converter.
  • The output voltage should be set using the ADJ pin before connecting the load.
  • The EN pin should be connected to a digital signal (high or low) to control the converter's operation.
  • A proper heat sink should be used to dissipate heat generated by the converter during operation.
  • Follow proper wiring and insulation techniques to avoid electrical shock or damage to the converter and connected devices.

Code Examples

150W DC-DC Boost Adjustable Power Converter Documentation
Overview
The 150W DC-DC Boost Adjustable Power Converter is a high-power, high-efficiency power conversion module that steps up a lower voltage DC input to a higher voltage DC output. This converter is designed to provide a stable and adjustable output voltage, making it suitable for a wide range of applications, including industrial control systems, communication equipment, and consumer electronics.
Features
Input Voltage: 9-36V DC
 Output Voltage: 12-60V DC (adjustable)
 Maximum Power: 150W
 High efficiency: up to 95%
 Compact design: 60mm x 40mm x 20mm
 Protection features: overcurrent protection, short-circuit protection, and overvoltage protection
Pinout
Vin: Input voltage (9-36V DC)
 Vout: Output voltage (12-60V DC, adjustable)
 GND: Ground
 EN: Enable pin (active high)
 ADJ: Output voltage adjustment pin
Using the 150W DC-DC Boost Adjustable Power Converter
### Example 1: Basic Usage with Fixed Output Voltage
In this example, we will demonstrate how to use the 150W DC-DC Boost Adjustable Power Converter to step up a 12V DC input to a fixed 24V DC output.
Connections
Vin: 12V DC power source
 Vout: Load (e.g., LED strip, motor, etc.)
 GND: Ground
 EN: Connect to a digital output of a microcontroller (e.g., Arduino) or a logic level converter
 ADJ: Leave unconnected (fixed output voltage)
Code Example (Arduino)
```c++
const int enablePin = 2;  // Digital output pin connected to EN
void setup() {
  pinMode(enablePin, OUTPUT);
  digitalWrite(enablePin, HIGH);  // Enable the converter
}
void loop() {
  // The converter is now enabled and providing a fixed 24V DC output
}
```
### Example 2: Adjustable Output Voltage with Analog Input
In this example, we will demonstrate how to use the 150W DC-DC Boost Adjustable Power Converter to step up a 12V DC input to an adjustable output voltage using an analog input.
Connections
Vin: 12V DC power source
 Vout: Load (e.g., LED strip, motor, etc.)
 GND: Ground
 EN: Connect to a digital output of a microcontroller (e.g., Arduino) or a logic level converter
 ADJ: Connect to an analog output of a microcontroller (e.g., Arduino)
Code Example (Arduino)
```c++
const int enablePin = 2;  // Digital output pin connected to EN
const int adjPin = A0;  // Analog output pin connected to ADJ
void setup() {
  pinMode(enablePin, OUTPUT);
  pinMode(adjPin, OUTPUT);
  digitalWrite(enablePin, HIGH);  // Enable the converter
  analogWrite(adjPin, 128);  // Set output voltage to approximately 30V DC
}
void loop() {
  // Adjust the output voltage using the analog input
  for (int i = 0; i <= 255; i++) {
    analogWrite(adjPin, i);
    delay(10);
  }
}
```
Note: The output voltage can be adjusted by varying the analog input voltage on the ADJ pin. The relationship between the analog input voltage and the output voltage is non-linear and may require calibration.
Important Considerations
Ensure proper heat dissipation for high-power applications
 Use appropriate safety precautions when working with high-voltage systems
 Follow the manufacturer's guidelines for input and output voltage ranges, as well as maximum power rating
By following these examples and guidelines, you can effectively utilize the 150W DC-DC Boost Adjustable Power Converter in your IoT projects and designs.