

The 12V DC Power Supply is a device designed to convert alternating current (AC) from the mains into a stable 12V direct current (DC) output. This component is widely used in powering electronic circuits, devices, and systems that require a reliable 12V DC input. It is an essential component in applications such as home automation, robotics, LED lighting, and powering microcontrollers or sensors.








The following table outlines the key technical details of a typical 12V DC Power Supply:
| Parameter | Specification |
|---|---|
| Input Voltage | 100-240V AC, 50/60Hz |
| Output Voltage | 12V DC ± 5% |
| Output Current | Typically 1A to 10A (varies by model) |
| Power Rating | 12W to 120W (depending on current rating) |
| Efficiency | ≥ 80% |
| Ripple and Noise | ≤ 120mV |
| Operating Temperature | 0°C to 50°C |
| Protection Features | Overload, overvoltage, and short-circuit |
The 12V DC Power Supply typically has the following connections:
| Pin/Connector | Description |
|---|---|
| AC Input (L, N) | Live (L) and Neutral (N) terminals for AC input |
| Ground (GND) | Earth/ground connection for safety |
| DC Output (+) | Positive terminal for 12V DC output |
| DC Output (-) | Negative terminal (ground) for 12V DC output |
Some models may use barrel connectors or screw terminals for the DC output.
Connect the AC Input:
Connect the DC Output:
Power On:
The 12V DC Power Supply can be used to power an Arduino UNO via its barrel jack. Below is an example of how to connect and use it:
If you are powering an Arduino UNO with the 12V DC Power Supply, you can use the following code to blink an LED connected to pin 13:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Arduino is powered by the 12V DC Power Supply.
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
}
No Output Voltage:
Output Voltage is Not 12V:
Power Supply Overheats:
Device Does Not Power On:
Q1: Can I use a 12V DC Power Supply to charge a 12V battery?
A1: Yes, but ensure the power supply has a current-limiting feature or use a dedicated battery charger to prevent overcharging.
Q2: Is it safe to leave the power supply on for extended periods?
A2: Yes, as long as the power supply is not overloaded and has proper ventilation.
Q3: Can I use this power supply with a 5V device?
A3: No, you will need a voltage regulator or a step-down converter to safely power a 5V device.
Q4: What happens if I reverse the polarity of the DC output?
A4: Reversing the polarity can damage your circuit. Always double-check the connections before powering on.
By following this documentation, you can safely and effectively use a 12V DC Power Supply in your projects.