The XH-M131 is a DC-DC buck converter module manufactured by Easyware. It is designed to step down a higher input voltage to a lower, adjustable output voltage, making it ideal for powering devices that require a stable and regulated power supply. The module also features adjustable current limiting, which adds an extra layer of protection for sensitive components.
The XH-M131 module is equipped with robust features to ensure reliable performance in various applications. Below are its key technical specifications:
Parameter | Specification |
---|---|
Input Voltage Range | 5V to 36V DC |
Output Voltage Range | 1.25V to 32V DC (adjustable) |
Output Current | Up to 5A (adjustable, with heat sink) |
Output Power | Up to 75W |
Efficiency | Up to 96% |
Ripple Voltage | ≤ 50mV |
Load Regulation | ±0.5% |
Voltage Regulation | ±0.5% |
Dimensions | 60mm x 34mm x 12mm |
The XH-M131 module has the following input and output terminals:
Pin/Terminal | Description |
---|---|
VIN+ | Positive input voltage terminal (connect to the higher voltage source). |
VIN- | Negative input voltage terminal (connect to the ground of the voltage source). |
VOUT+ | Positive output voltage terminal (connect to the load or device to be powered). |
VOUT- | Negative output voltage terminal (connect to the ground of the load). |
Connect the Input Voltage:
Connect the Output Load:
Adjust the Output Voltage:
Set the Output Current Limit:
Power On and Test:
The XH-M131 can be used to power an Arduino UNO from a 12V power source by stepping down the voltage to 5V. Below is an example circuit and code:
// Example code to blink an LED using Arduino UNO powered by XH-M131
// Ensure the XH-M131 output is set to 5V before connecting to the Arduino
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 Not Adjustable:
Overheating:
Load Not Powering On:
Q: Can the XH-M131 be used to charge batteries?
A: Yes, the module can be used for battery charging applications. Set the output voltage to match the battery's charging voltage and adjust the current limit to prevent overcharging.
Q: What is the maximum input voltage for the XH-M131?
A: The maximum input voltage is 36V DC. Exceeding this limit may damage the module.
Q: Can I use the XH-M131 to power a Raspberry Pi?
A: Yes, you can use the XH-M131 to step down voltage to 5V for powering a Raspberry Pi. Ensure the output voltage is precisely set to 5V and the current limit is sufficient for the Raspberry Pi's requirements.
Q: Is the XH-M131 protected against reverse polarity?
A: No, the module does not have built-in reverse polarity protection. Always double-check the polarity of your connections.