The HLK-LD4250 is a compact, high-efficiency AC-DC power supply module designed for low-power applications. It converts AC voltage (110V/220V) to a stable DC output, making it ideal for powering various electronic devices and circuits. Its small size and high reliability make it a popular choice for embedded systems, IoT devices, and home automation projects.
Parameter | Value |
---|---|
Input Voltage Range | 90V AC to 264V AC |
Output Voltage | 5V DC |
Output Current | 250mA |
Output Power | 1.25W |
Efficiency | ≥ 70% |
Operating Temperature | -20°C to +60°C |
Storage Temperature | -40°C to +80°C |
Dimensions | 35mm x 18mm x 15mm |
Isolation Voltage | 3000V AC |
Protection Features | Overload, Overvoltage, Short Circuit |
Pin Number | Pin Name | Description |
---|---|---|
1 | AC-L | Live input for AC voltage |
2 | AC-N | Neutral input for AC voltage |
3 | +5V | Positive DC output (5V) |
4 | GND | Ground (0V) for DC output |
Connect the AC Input:
AC-L
pin to the live wire of the AC mains.AC-N
pin to the neutral wire of the AC mains.Connect the DC Output:
+5V
pin to power your circuit's positive rail.GND
pin to the ground rail of your circuit.Add Filtering Capacitors (Optional):
+5V
and GND
pins.Mounting:
The HLK-LD4250 can be used to power an Arduino UNO directly via its 5V pin. Below is an example circuit and code to blink an LED using the Arduino UNO powered by the HLK-LD4250.
+5V
pin of the HLK-LD4250 to the 5V pin of the Arduino UNO.GND
pin of the HLK-LD4250 to the GND pin of the Arduino UNO.// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the HLK-LD4250 is properly connected to power the Arduino.
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
}
Issue | Possible Cause | Solution |
---|---|---|
No DC output | Incorrect AC input connection | Verify AC-L and AC-N connections. |
Output voltage is unstable | Insufficient filtering | Add a 10µF and 0.1µF capacitor across |
+5V and GND pins. |
||
Module overheating | Overloading or poor ventilation | Reduce load or improve ventilation. |
Arduino not powering on | Insufficient current from HLK-LD4250 | Ensure load does not exceed 250mA. |
Can the HLK-LD4250 power a Raspberry Pi?
Is the module safe for use in home automation projects?
Can I use the HLK-LD4250 with a 12V DC output?
Do I need additional components to use the HLK-LD4250?
By following this documentation, you can safely and effectively integrate the HLK-LD4250 into your projects.