The Módulo QS-1212CCBD 80W is a versatile power module designed for both step-up (boost) and step-down (buck) voltage conversion. This module is ideal for applications requiring stable voltage regulation, making it suitable for a wide range of electronic projects. Whether you need to power a device with a different voltage than your power source or maintain a constant voltage despite fluctuations, the QS-1212CCBD is an excellent choice.
Parameter | Value |
---|---|
Input Voltage Range | 5V - 32V |
Output Voltage Range | 1V - 30V |
Maximum Output Power | 80W |
Efficiency | Up to 95% |
Switching Frequency | 150kHz |
Output Ripple | < 50mV |
Operating Temperature | -40°C to +85°C |
Dimensions | 60mm x 40mm x 20mm |
Pin No. | Pin Name | Description |
---|---|---|
1 | VIN+ | Positive input voltage |
2 | VIN- | Negative input voltage (Ground) |
3 | VOUT+ | Positive output voltage |
4 | VOUT- | Negative output voltage (Ground) |
5 | ADJ | Voltage adjustment (use a potentiometer or fixed resistor) |
Connect the Input Voltage:
VIN+
pin.VIN-
pin.Connect the Output Voltage:
VOUT+
pin.VOUT-
pin.Adjust the Output Voltage:
ADJ
pin to set the desired output voltage. Turn the potentiometer until the desired voltage is achieved.No Output Voltage:
ADJ
pin is correctly set.Output Voltage Fluctuations:
Module Overheating:
Q: Can I use this module with an Arduino UNO? A: Yes, the QS-1212CCBD can be used to power an Arduino UNO by setting the output voltage to 5V. Ensure the input voltage is within the module's specified range.
Q: How do I adjust the output voltage precisely?
A: Use a multimeter to measure the output voltage while adjusting the potentiometer connected to the ADJ
pin until the desired voltage is achieved.
Q: What is the efficiency of the module? A: The module has an efficiency of up to 95%, depending on the input and output voltage conditions.
Q: Can I use this module to charge batteries? A: Yes, the module can be used to charge batteries by setting the appropriate output voltage and current limit. Ensure the charging parameters match the battery specifications.
Here is an example of how to use the QS-1212CCBD module to power an Arduino UNO:
// Example code to demonstrate powering an Arduino UNO using the QS-1212CCBD module
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
// Print a message to indicate the setup is complete
Serial.println("Arduino UNO powered by QS-1212CCBD module");
}
void loop() {
// Main loop code
// Add your application code here
// For demonstration, we'll blink the built-in LED
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
}
This code initializes the Arduino UNO and blinks the built-in LED to demonstrate that the board is powered correctly by the QS-1212CCBD module. Ensure the module's output voltage is set to 5V before connecting it to the Arduino UNO.