

The SMPS PSU 12V 10A is a Switch Mode Power Supply designed to convert AC mains voltage into a stable 12V DC output with a maximum current capacity of 10A. This component is highly efficient and compact, making it ideal for powering a wide range of electronic devices, including LED strips, CCTV cameras, single-board computers, and other 12V DC-powered systems. Its robust design ensures reliable operation in both industrial and hobbyist applications.








| Parameter | Value |
|---|---|
| Input Voltage Range | 100-240V AC, 50/60Hz |
| Output Voltage | 12V DC |
| Maximum Output Current | 10A |
| Output Power | 120W |
| Efficiency | ≥85% |
| Ripple and Noise | ≤120mV |
| Operating Temperature | -10°C to +50°C |
| Cooling Method | Natural air cooling or fan-assisted |
| Protection Features | Overload, overvoltage, short circuit |
The SMPS PSU 12V 10A typically has screw terminal connections for input and output. Below is the pin configuration:
| Terminal Label | Description |
|---|---|
| L | Live AC input (100-240V AC) |
| N | Neutral AC input |
| GND | Earth/ground connection |
| +V | Positive 12V DC output |
| -V | Negative 12V DC output (ground) |
L terminal.N terminal.GND terminal for safety.+V terminal.-V terminal.To power an Arduino UNO using the SMPS PSU, you can connect the 12V output to the Arduino's VIN pin and GND pin. Below is an example code to blink an LED connected to the Arduino:
// Example code to blink an LED using Arduino UNO powered by SMPS PSU 12V 10A
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an 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
}
Note: Ensure the Arduino's onboard voltage regulator can handle the 12V input. If not, use a DC-DC step-down converter to reduce the voltage to 5V.
No Output Voltage:
Output Voltage Too Low or Unstable:
Overheating:
Device Not Powering On:
Q1: Can I use this SMPS to charge a 12V battery?
A1: No, this SMPS is not designed for battery charging as it lacks the necessary current regulation and charging profiles.
Q2: Is the SMPS PSU 12V 10A waterproof?
A2: No, this SMPS is not waterproof. Use it in a dry environment or enclose it in a waterproof housing if necessary.
Q3: Can I connect multiple devices to the output?
A3: Yes, as long as the total current draw does not exceed 10A.
Q4: What happens if I exceed the 10A limit?
A4: The SMPS will activate its overload protection and shut down the output to prevent damage.