

The POWER SUPPLY 24V is a device that converts electrical energy from an input source (such as AC mains or DC power) into a stable 24V DC output. It is widely used to power electronic circuits, industrial equipment, and automation systems. This component ensures a reliable and consistent voltage supply, which is critical for the proper functioning of sensitive electronic devices.








Below are the key technical details for the POWER SUPPLY 24V:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 100-240V AC (typical) or 12-48V DC |
| Output Voltage | 24V DC ± 1% |
| Output Current | 1A to 10A (varies by model) |
| Power Rating | 24W to 240W (depending on model) |
| Efficiency | ≥ 85% |
| Ripple and Noise | ≤ 50mV |
| Operating Temperature | -20°C to +70°C |
| Protection Features | Overvoltage, Overcurrent, Short Circuit |
| Mounting Options | DIN rail, panel mount, or standalone |
The POWER SUPPLY 24V typically has the following input and output terminals:
| Pin/Terminal | Label | Description |
|---|---|---|
| 1 | L | Live AC input (for AC-powered models) |
| 2 | N | Neutral AC input (for AC-powered models) |
| 3 | +V | Positive 24V DC output |
| 4 | -V | Negative (ground) 24V DC output |
| 5 (optional) | FG | Frame Ground (for safety and EMI shielding) |
For DC-powered models, the input terminals are typically labeled as +Vin and -Vin.
Input Connection:
L and N terminals to the live and neutral wires of the AC mains supply. Ensure proper grounding by connecting the FG terminal to earth ground.+Vin and -Vin terminals to the appropriate DC input voltage source.Output Connection:
+V terminal to the positive rail of your circuit.-V terminal to the ground rail of your circuit.Load Considerations:
Mounting:
The POWER SUPPLY 24V can be used to power an Arduino UNO via a step-down voltage regulator (e.g., LM2596) to convert 24V to 5V. Below is an example circuit and Arduino code:
+V and -V terminals of the power supply to the input of the step-down regulator.5V and GND pins.// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the Arduino is powered via the 5V output of the step-down regulator
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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 output voltage | Input power not connected or incorrect | Verify input connections and voltage |
| Output voltage too low or unstable | Overloaded power supply | Reduce the load to within rated capacity |
| Power supply overheating | Poor ventilation or excessive load | Improve airflow or reduce the load |
| High ripple or noise on output | Insufficient filtering or grounding issues | Check grounding and add external capacitors |
Can I use the POWER SUPPLY 24V to charge batteries?
What happens if I exceed the maximum current rating?
Can I connect multiple power supplies in parallel for higher current?
Is the POWER SUPPLY 24V waterproof?
By following this documentation, you can safely and effectively use the POWER SUPPLY 24V in your projects and applications.