

An AC Power Supply is a device that converts alternating current (AC) from the mains supply into a usable voltage for electronic circuits. It provides stable and reliable power, ensuring the proper operation of electronic devices and systems. AC power supplies are commonly used in a wide range of applications, including powering household appliances, industrial equipment, and electronic circuits in laboratories and prototyping environments.
Below are the general technical specifications for a typical AC Power Supply. Note that specific models may vary in their ratings and features.
The pin configuration of an AC Power Supply depends on its design. Below is a general example for a power supply with input and output terminals:
| Pin/Terminal | Description |
|---|---|
| AC Input (L) | Live wire connection for AC mains input. |
| AC Input (N) | Neutral wire connection for AC mains input. |
| Ground (GND) | Earth/ground connection for safety and noise reduction. |
| DC Output (+) | Positive terminal for the regulated DC output voltage. |
| DC Output (-) | Negative terminal (ground) for the regulated DC output voltage. |
Connect the AC Input:
Connect the DC Output:
Power On:
Load Connection:
To power an Arduino UNO using a 12V AC Power Supply:
Here is an example Arduino sketch to blink an LED while powered by the AC Power Supply:
// Blink an LED connected to pin 13 on the Arduino UNO
// Ensure the AC Power Supply is providing 12V to the Arduino's VIN pin
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:
Overheating:
Voltage Fluctuations:
Circuit Not Powering On:
By following this documentation, users can safely and effectively utilize an AC Power Supply in their electronic projects and applications.