

The POWER SUPPLY 12V 3A is a device designed to convert electrical energy from an input source (such as an AC mains supply) into a stable 12V DC output. It is capable of delivering up to 3A of current, making it suitable for powering a wide range of electronic circuits and devices. This power supply is commonly used in applications such as microcontroller-based projects, LED lighting, motor drivers, and other low-power electronic systems.








Below are the key technical details of the POWER SUPPLY 12V 3A:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 100-240V AC, 50/60Hz |
| Output Voltage | 12V DC |
| Maximum Output Current | 3A |
| Power Output | 36W |
| Efficiency | ≥85% |
| Ripple and Noise | ≤120mV (peak-to-peak) |
| Operating Temperature | -10°C to +50°C |
| Protection Features | Overload, Overvoltage, Short Circuit |
The POWER SUPPLY 12V 3A typically has the following connections:
| Pin/Connector | Description |
|---|---|
| AC Input (L, N) | Live (L) and Neutral (N) for AC mains input |
| Ground (GND) | Ground connection for the DC output |
| DC Output (+12V) | Positive 12V DC output terminal |
Connect the AC Input:
Connect the DC Output:
Power On:
The POWER SUPPLY 12V 3A can be used to power an Arduino UNO via its barrel jack or VIN pin. Below is an example of how to connect it:
Here’s a simple example of using the Arduino UNO powered by the 12V 3A power supply to blink an LED:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Arduino is powered by the 12V 3A power supply.
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:
Device Not Powering On:
High Ripple or Noise:
Q1: Can I use this power supply to charge a 12V battery?
A1: No, this power supply is not designed for battery charging as it lacks the necessary current regulation and charging algorithms.
Q2: Is this power supply waterproof?
A2: No, the POWER SUPPLY 12V 3A is not waterproof. Use it in a dry environment and avoid exposure to moisture.
Q3: Can I use this power supply with a Raspberry Pi?
A3: Yes, but you will need a step-down converter to reduce the 12V output to 5V, as the Raspberry Pi operates at 5V.
Q4: What happens if I exceed the 3A current limit?
A4: The power supply's overload protection will activate, shutting down the output to prevent damage. Reduce the load and restart the power supply.