

The YH11060D is a high-performance DC-DC buck converter designed for efficient voltage regulation in a wide range of electronic applications. This component is capable of stepping down a higher input voltage to a stable, adjustable lower output voltage, making it ideal for powering microcontrollers, sensors, and other low-voltage devices. Its compact design, high efficiency, and adjustable output voltage make it a versatile choice for embedded systems, IoT devices, and portable electronics.








The YH11060D offers robust performance with the following key 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 95% |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 4mm |
The YH11060D typically comes in a 6-pin configuration. Below is the pinout and description:
| Pin | Name | Description |
|---|---|---|
| 1 | VIN | Input voltage pin. Connect to the positive terminal of the input power source. |
| 2 | GND | Ground pin. Connect to the negative terminal of the input power source. |
| 3 | VOUT | Output voltage pin. Provides the regulated output voltage. |
| 4 | FB | Feedback pin. Used to set the output voltage via an external resistor divider. |
| 5 | EN | Enable pin. Pull high to enable the converter; pull low to disable it. |
| 6 | NC | No connection. Leave this pin unconnected. |
Below is an example of how to use the YH11060D to power an Arduino UNO with a 5V output:
// Example code to blink an LED on Arduino UNO powered by YH11060D
// Ensure the YH11060D is providing a stable 5V output to the Arduino UNO.
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 is Incorrect:
Overheating:
High Output Ripple:
Q1: Can the YH11060D be used with a battery as the input source?
A1: Yes, the YH11060D can be used with a battery as long as the input voltage is within the 4.5V to 28V range.
Q2: How do I calculate the feedback resistor values for a specific output voltage?
A2: Use the formula provided in the datasheet:
[
V_{OUT} = V_{REF} \times \left(1 + \frac{R1}{R2}\right)
]
where ( V_{REF} ) is typically 0.8V, and ( R1 ) and ( R2 ) are the resistors in the feedback network.
Q3: Can I use the YH11060D to power a 3.3V device?
A3: Yes, you can set the output voltage to 3.3V by adjusting the feedback resistors accordingly.
Q4: What is the maximum load current the YH11060D can handle?
A4: The YH11060D can handle a maximum load current of 3A. Ensure proper thermal management when operating at high currents.