

An AC supply provides alternating current (AC) voltage to power electrical devices and circuits. Unlike direct current (DC), AC voltage alternates its direction periodically, making it suitable for long-distance power transmission and powering a wide range of devices. AC supplies are commonly sourced from wall outlets, generators, or transformers.








The specifications of an AC supply can vary depending on the source and application. Below are typical parameters for a standard household AC supply:
| Parameter | Value |
|---|---|
| Voltage Range | 110V to 240V RMS (region-dependent) |
| Frequency | 50 Hz or 60 Hz (region-dependent) |
| Current Capacity | Varies (e.g., 10A, 15A, or higher) |
| Waveform | Sinusoidal |
| Power Rating | Depends on the circuit or device |
| Output Type | Alternating Current (AC) |
For a standard AC wall outlet, the pin configuration is as follows:
| Pin Name | Description |
|---|---|
| Live (L) | Carries the active AC voltage |
| Neutral (N) | Completes the circuit and returns current |
| Ground (G) | Safety connection to prevent electric shock |
Note: The pin configuration may vary depending on the country or region. Always verify the local standards before use.
If your Arduino UNO project requires AC power (e.g., for driving an AC motor), you will need an AC-DC adapter to convert the AC supply to a suitable DC voltage (e.g., 5V or 12V). Below is an example of how to connect an AC-DC adapter to an Arduino UNO:
// Example: Blinking an LED using Arduino UNO powered by an AC-DC adapter
/* Ensure the AC-DC adapter provides the correct voltage (e.g., 9V DC)
and current rating for the Arduino UNO. Connect the adapter's output
to the Arduino's power jack. */
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
}
Note: Never connect the Arduino UNO directly to an AC supply. Always use an appropriate AC-DC adapter.
No Power Output:
Device Overheating:
Electric Shock Risk:
Voltage Fluctuations:
Q1: Can I use an AC supply directly with electronic circuits?
A1: No, most electronic circuits require DC power. Use an AC-DC converter to step down and rectify the AC voltage.
Q2: What safety precautions should I take when working with AC supplies?
A2: Always turn off the power before making connections, use insulated tools, and ensure proper grounding.
Q3: How do I determine the correct AC supply for my device?
A3: Check the device's voltage, frequency, and power requirements, and ensure the AC supply matches these specifications.
Q4: Can I use an AC supply with an Arduino UNO?
A4: Not directly. Use an AC-DC adapter to convert the AC supply to a suitable DC voltage for the Arduino UNO.
By following these guidelines and precautions, you can safely and effectively use an AC supply in your projects and applications.