

The Power Supply 230V/12V/5V is a versatile device designed to convert standard mains electricity (230V AC) into lower, regulated DC voltages of 12V and 5V. This component is essential for powering a wide range of electronic devices and circuits, including microcontrollers, sensors, and other low-voltage components. It ensures stable and reliable power delivery, making it a critical component in both hobbyist and professional electronic projects.








The following table outlines the key technical details of the Power Supply 230V/12V/5V:
| Parameter | Value | 
|---|---|
| Input Voltage | 230V AC (±10%) | 
| Output Voltage 1 | 12V DC (regulated) | 
| Output Voltage 2 | 5V DC (regulated) | 
| Maximum Output Current | 2A (12V), 1A (5V) | 
| Efficiency | ≥ 80% | 
| Ripple and Noise | < 50mV (peak-to-peak) | 
| Operating Temperature | -10°C to 50°C | 
| Protection Features | Overload, short-circuit, overheat | 
The power supply typically has the following input and output connections:
| Pin/Terminal | Description | 
|---|---|
| AC-L | Live wire input (230V AC) | 
| AC-N | Neutral wire input (230V AC) | 
| GND | Ground connection for DC outputs | 
| +12V | Positive 12V DC output | 
| +5V | Positive 5V DC output | 
Connect the Input:
Connect the Output:
Grounding:
Verify Connections:
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:
// Example code to blink an LED using the Arduino UNO powered by the 5V output
// of the Power Supply 230V/12V/5V. Ensure proper connections before running.
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
}
No Output Voltage:
Overheating:
Voltage Fluctuations:
Short Circuit Protection Triggered:
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 profiles.
Q2: Is it safe to use this power supply outdoors?
A2: No, this power supply is not weatherproof. Use it only in dry, indoor environments.
Q3: Can I power both 12V and 5V devices simultaneously?
A3: Yes, as long as the total current draw does not exceed the rated maximum for each output.
Q4: What happens if I connect a load that exceeds the current rating?
A4: The power supply's overload protection will activate, shutting down the output to prevent damage.
By following this documentation, you can safely and effectively use the Power Supply 230V/12V/5V in your electronic projects.