The Power Supply 5V & 12V is a versatile device designed to convert electrical energy from an input source (such as AC mains or a DC source) into stable 5V and 12V outputs. These outputs are commonly used to power a wide range of electronic circuits, modules, and devices. The dual-voltage output makes it ideal for applications requiring multiple voltage levels, such as microcontrollers, sensors, motors, and communication modules.
Below are the key technical details of the Power Supply 5V & 12V:
Parameter | Specification |
---|---|
Input Voltage Range | 100V - 240V AC (50/60Hz) |
Output Voltage | 5V DC, 12V DC |
Output Current (5V) | Up to 2A |
Output Current (12V) | Up to 1A |
Power Rating | 24W (maximum) |
Efficiency | ≥ 85% |
Ripple and Noise | ≤ 50mV (5V), ≤ 120mV (12V) |
Operating Temperature | -10°C to 50°C |
Protection Features | Overload, Short Circuit, Overvoltage |
The Power Supply 5V & 12V typically has the following input and output connections:
Pin/Terminal | Description |
---|---|
AC Input L | Live wire connection for AC mains input |
AC Input N | Neutral wire connection for AC mains input |
GND | Ground connection for DC output |
+5V | 5V DC output |
+12V | 12V DC output |
Connect the Input:
Connect the Outputs:
Verify Connections:
Power On:
The 5V output of the power supply can be used to power an Arduino UNO. Below is an example of how to connect and use it:
// Simple LED blink example for Arduino UNO
// Ensure the power supply provides a stable 5V to the Arduino
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 Too Low or Unstable:
Overheating:
Device Not Powering On:
Q: Can I use this power supply to charge a 12V battery?
A: No, this power supply is not designed for battery charging as it lacks the necessary current regulation and charging profiles.
Q: Can I use both 5V and 12V outputs simultaneously?
A: Yes, you can use both outputs simultaneously, provided the total current drawn does not exceed the rated limits for each output.
Q: Is this power supply suitable for outdoor use?
A: No, this power supply is designed for indoor use only. Exposure to moisture or extreme temperatures may damage the device.
Q: What happens if I exceed the current rating?
A: The power supply is equipped with overload protection, which will shut down the output to prevent damage. Reduce the load and restart the power supply.