

The HY-103, manufactured by BATARA, is a compact, low-cost, high-performance DC-DC buck converter module. It is designed to efficiently step down higher input voltages to lower output voltages, making it ideal for a wide range of electronic applications. Its small size and high efficiency make it a popular choice for powering microcontrollers, sensors, and other low-voltage devices in embedded systems.








The HY-103 offers robust performance and flexibility for various voltage regulation needs. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Input Voltage Range | 4.5V to 28V |
| Output Voltage Range | 0.8V to 20V (adjustable) |
| Maximum Output Current | 3A |
| Efficiency | Up to 92% |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 4mm |
The HY-103 module has four pins for easy integration into circuits. The table below describes each pin:
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin. Connect to the positive terminal of the input power source. |
| GND | Ground pin. Connect to the negative terminal of the input power source. |
| VOUT | Output voltage pin. Provides the regulated output voltage. |
| ADJ | Adjustment pin. Used to set the output voltage via an external potentiometer. |
The HY-103 is straightforward to use in a circuit. Follow the steps below to integrate it into your design:
Connect the Input Voltage:
Set the Output Voltage:
Connect the Load:
Verify Connections:
The HY-103 can be used to power an Arduino UNO by stepping down a 12V input to 5V. Below is an example circuit and Arduino code:
// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the HY-103 is providing a stable 5V to the Arduino UNO.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Output Voltage Fluctuates:
Module Overheats:
Cannot Adjust Output Voltage:
Q: Can the HY-103 be used with a 24V input?
A: Yes, the HY-103 supports input voltages up to 28V. Ensure the output voltage is adjusted appropriately for your application.
Q: What is the minimum load current required for stable operation?
A: The HY-103 does not require a minimum load current for stable operation, but adding a small load (e.g., 10mA) can improve performance in some cases.
Q: Is the HY-103 protected against short circuits?
A: No, the HY-103 does not have built-in short-circuit protection. Use external protection circuits if needed.
Q: Can I use the HY-103 to power a Raspberry Pi?
A: Yes, the HY-103 can be used to power a Raspberry Pi. Ensure the output voltage is set to 5V and the current requirement does not exceed 3A.