

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 of 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 | AC Live input (for AC-powered models) |
| 2 | N | AC Neutral input (for AC-powered models) |
| 3 | GND | Ground/Earth connection |
| 4 | +V | Positive 24V DC output |
| 5 | -V | Negative 24V DC output (ground reference) |
For DC-powered models, the input terminals may be labeled as +Vin and -Vin instead of L and N.
Input Connection:
L and N terminals to the AC mains supply. Ensure the input voltage is within the specified range (e.g., 100-240V AC).+Vin and -Vin terminals to a DC power source within the specified range (e.g., 12-48V DC).Output Connection:
+V terminal to the positive rail of your circuit.-V terminal to the ground rail of your circuit.Grounding:
GND terminal to the earth ground.Load Considerations:
Power On:
The POWER SUPPLY 24V can be used to power devices connected to an Arduino UNO. However, since the Arduino operates at 5V, a step-down voltage regulator (e.g., LM7805 or a DC-DC buck converter) is required.
+V terminal of the power supply to the input of the voltage regulator.5V pin.-V terminal of the power supply to the Arduino's GND pin.// Example code to blink an LED connected to Arduino UNO
// Ensure the Arduino is powered via the 5V pin from the step-down regulator
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as 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:
Overheating:
Output Voltage Fluctuations:
Protection Features Triggered:
Q1: Can I use the POWER SUPPLY 24V to charge a 24V battery?
A1: No, this power supply is not designed for battery charging. Use a dedicated battery charger with appropriate charging profiles.
Q2: Is the POWER SUPPLY 24V suitable for outdoor use?
A2: Most models are designed for indoor use. If outdoor use is required, ensure the power supply has an appropriate IP rating for weather resistance.
Q3: Can I connect multiple power supplies in parallel to increase current?
A3: Only if the power supplies are specifically designed for parallel operation. Otherwise, this may cause instability or damage.
Q4: What happens if I connect the output terminals in reverse polarity?
A4: Reverse polarity can damage the connected devices. Always double-check the polarity before powering on the system.