

A 24V Switch Mode Power Supply (SMPS) is an electronic device designed to convert an input AC voltage (typically 110V or 220V) into a stable 24V DC output. It utilizes high-frequency switching technology to achieve efficient power conversion while minimizing heat generation. This makes it a reliable and compact solution for powering various electronic devices and systems.








Below are the key technical details and pin configurations for a typical 24V SMPS:
| Parameter | Value |
|---|---|
| Input Voltage Range | 100-240V AC, 50/60Hz |
| Output Voltage | 24V DC |
| Output Current | 2A to 10A (varies by model) |
| Power Output | 48W to 240W (varies by model) |
| Efficiency | ≥85% |
| Ripple and Noise | ≤120mVp-p |
| Operating Temperature | -10°C to +50°C |
| Protection Features | Overload, Overvoltage, Short Circuit |
| Pin Name | Description |
|---|---|
| L (Line) | AC live input (110V/220V AC) |
| N (Neutral) | AC neutral input |
| GND (Ground) | Earth/ground connection for safety |
| V+ | Positive 24V DC output |
| V- | Negative 24V DC output (ground) |
| Adjust (Trim) | Output voltage adjustment (optional) |
Input Connection:
L and N) to the mains power supply (110V or 220V AC).GND) terminal is properly connected to the earth for safety.Output Connection:
V+ terminal to the positive input of your load or circuit.V- terminal to the ground or negative input of your load.Voltage Adjustment (if applicable):
Load Considerations:
A 24V SMPS 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 SMPS to the input of the LM2596 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 LM2596 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 | Incorrect input connection | Verify L and N connections. |
| Blown fuse | Check and replace the input fuse. | |
| Output voltage too high/low | Misadjusted trim potentiometer | Adjust the trim potentiometer. |
| Overloaded SMPS | Reduce the load to within rated limits. | |
| SMPS overheating | Poor ventilation | Ensure proper airflow around the unit. |
| Overloaded or shorted output | Check the load and wiring. | |
| Noise or ripple in output voltage | Insufficient filtering | Add additional capacitors at the load. |
Can I use a 24V SMPS to power a 12V device?
What happens if I exceed the rated current?
Is the SMPS safe to use with sensitive electronics?
Can I use the SMPS outdoors?
By following this documentation, you can safely and effectively use a 24V SMPS in your projects.