

The POWER SUPPLY 24V is a device designed to convert electrical energy from an input source (such as AC mains or DC input) into a stable 24V DC output. It is widely used in powering electronic circuits, industrial equipment, automation systems, and other devices requiring a reliable 24V power source. Its robust design ensures consistent voltage regulation, making it suitable for sensitive electronic components.








Below are the key technical details of the POWER SUPPLY 24V:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 100-240V AC (50/60Hz) or 12-36V DC |
| Output Voltage | 24V DC ± 1% |
| Output Current | 0-5A (depending on model) |
| Power Rating | Up to 120W |
| Efficiency | ≥ 85% |
| Ripple and Noise | ≤ 50mV |
| Operating Temperature | -10°C to +50°C |
| Protection Features | Overvoltage, Overcurrent, Short Circuit |
| Dimensions | Varies by model (e.g., 110x78x36mm) |
| Weight | Approx. 300g |
The POWER SUPPLY 24V typically has the following input and output terminals:
| Pin/Terminal Label | Description |
|---|---|
| L (Line) | AC mains live input (for AC models) |
| N (Neutral) | AC mains neutral input (for AC models) |
| +V | Positive 24V DC output |
| -V | Negative (ground) 24V DC output |
| GND (Earth) | Ground connection for safety |
For DC input models, the terminals may be labeled as follows:
| Pin/Terminal Label | Description |
|---|---|
| +IN | Positive DC input |
| -IN | Negative DC input |
| +V | Positive 24V DC output |
| -V | Negative (ground) 24V DC output |
Input Connection:
Output Connection:
Power On:
Load Connection:
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:
// Example code to blink an LED using Arduino UNO powered by a 24V power supply
// through a step-down regulator (e.g., LM2596).
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 battery?
A1: Yes, but ensure the battery's voltage and charging current requirements match the power supply's specifications. Use a charge controller for safe operation.
Q2: Is the power supply waterproof?
A2: Most models are not waterproof. Use them in dry environments or enclosures designed for outdoor use.
Q3: Can I connect multiple devices to the power supply?
A3: Yes, as long as the total current draw does not exceed the power supply's maximum current rating.
Q4: How do I know if the power supply is working correctly?
A4: Use a multimeter to measure the output voltage. It should be close to 24V DC.