

The SMPS PSU 12V 10A is a Switch Mode Power Supply designed to efficiently convert AC mains voltage into a stable DC output of 12 volts with a maximum current capacity of 10 amps. This component is widely used in applications requiring reliable and high-current DC power, such as LED lighting systems, industrial automation, CCTV systems, and powering microcontroller-based projects.
Switch Mode Power Supplies are known for their high efficiency, compact size, and ability to handle varying input voltages, making them ideal for both commercial and hobbyist applications.








Below are the key technical details of the SMPS PSU 12V 10A:
| Parameter | Specification |
|---|---|
| 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 the following terminal connections:
| Pin Label | Description |
|---|---|
| L | Live AC input (mains voltage) |
| N | Neutral AC input (mains voltage) |
| GND | Ground connection for safety |
| V+ | Positive DC output (12V) |
| V- | Negative DC output (ground for 12V output) |
L terminal to the live wire of the AC mains.N terminal to the neutral wire of the AC mains.GND terminal to the earth ground for safety.V+ terminal to the positive input of your load or circuit.V- terminal to the ground or negative input of your load or circuit.To power an Arduino UNO using the SMPS PSU 12V 10A:
V+ terminal of the SMPS to the VIN pin of the Arduino UNO.V- terminal of the SMPS to the GND pin of the Arduino UNO.Here is a simple Arduino sketch to blink an LED while powered by the SMPS:
// This sketch blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the SMPS is properly connected to the Arduino's VIN and GND pins.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
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
}
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
Noise or Ripple in Output:
Q: Can I use this SMPS to power a 5V device?
A: No, the SMPS provides a fixed 12V output. To power a 5V device, use a step-down voltage regulator or DC-DC converter.
Q: Is the SMPS suitable for outdoor use?
A: Most SMPS units are not weatherproof. If outdoor use is required, ensure the SMPS is housed in a waterproof enclosure.
Q: What happens if I exceed the 10A current limit?
A: The SMPS is equipped with overload protection and will shut down or reduce output to prevent damage. Reduce the load to restore normal operation.
Q: Can I use this SMPS to charge a 12V battery?
A: While possible, it is not recommended unless the SMPS has a built-in charging circuit. Use a dedicated battery charger for optimal performance and safety.