

The AC power plug is a device used to connect electrical appliances to an AC power source, enabling the transfer of electrical energy. It is a critical component in powering a wide range of devices, from household appliances to industrial equipment. AC power plugs come in various types and configurations, depending on the region, voltage, and current requirements.








The technical specifications of an AC power plug vary depending on the type and regional standards. Below are general specifications for a standard AC power plug:
| Parameter | Value/Description |
|---|---|
| Voltage Rating | 110V - 240V AC (varies by region) |
| Current Rating | 6A - 16A (depending on plug type) |
| Frequency | 50Hz or 60Hz |
| Material | Thermoplastic or thermoset for insulation |
| Pin Material | Brass or nickel-plated brass |
| Plug Type | Type A, B, C, D, E, F, G, etc. |
| Safety Features | Insulated pins, grounding, and shutters |
Below is an example of a Type B AC power plug (commonly used in North America):
| Pin Name | Description |
|---|---|
| Hot (Live) Pin | Carries the live AC voltage from the power source. |
| Neutral Pin | Completes the circuit by returning current. |
| Ground Pin | Provides a safety path for fault currents. |
While the Arduino UNO itself operates on DC power, an AC power plug can be used to power a DC adapter that supplies the required voltage. Below is an example of how to use an AC power plug with an adapter to power an Arduino UNO:
// Example Arduino code to blink an LED
// This assumes the Arduino is powered via an AC adapter connected to the AC plug
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
}
Plug Does Not Fit the Socket:
Appliance Does Not Power On:
Overheating of the Plug:
Sparks When Plugging In:
Q: Can I use an AC power plug in a different country?
Q: How do I know if my plug is grounded?
Q: Is it safe to repair a damaged AC power plug?
Q: Can I use an AC power plug for DC appliances?