

An AC plug, manufactured by AC with the part ID "plug," is a device used to connect electrical appliances to an alternating current (AC) power supply. It typically consists of two or three prongs that fit into a corresponding socket, enabling the transfer of electrical power. AC plugs are essential components in household, industrial, and commercial electrical systems, ensuring a safe and reliable connection to the power grid.








| Parameter | Specification |
|---|---|
| Manufacturer | AC |
| Part ID | plug |
| Voltage Rating | 110V - 250V AC |
| Current Rating | 10A - 16A |
| Frequency | 50Hz / 60Hz |
| Number of Prongs | 2 or 3 (depending on model) |
| Material | High-grade thermoplastic or metal |
| Safety Standards | Compliant with IEC 60884-1 |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Live (L) | Carries the live AC voltage from the power source. |
| 2 | Neutral (N) | Provides the return path for the current to complete the circuit. |
| 3 | Ground (G) | (Optional) Provides a safety path to prevent electric shock in case of fault. |
Note: The ground pin is present only in three-prong AC plugs. Two-prong plugs lack this safety feature.
If you are using an AC plug to power an Arduino UNO via an adapter, follow these steps:
// Example Arduino code to blink an LED
// This assumes the Arduino UNO 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
}
Warning: Always ensure the AC plug and adapter are properly rated for the Arduino UNO's power requirements.
| Issue | Possible Cause | Solution |
|---|---|---|
| Plug does not fit the socket. | Incompatible plug and socket types. | Use a plug adapter or replace with a compatible plug. |
| Appliance does not power on. | Loose connection or damaged plug. | Check the plug connection and inspect for damage. Replace if necessary. |
| Plug gets hot during use. | Overloading or poor contact. | Reduce the load or replace the plug if contacts are worn out. |
| Electric shock when touching. | Faulty grounding or damaged insulation. | Ensure proper grounding and replace the plug if insulation is damaged. |
Can I use a two-prong plug for a grounded appliance?
No, grounded appliances require a three-prong plug for safety.
What should I do if the plug sparks when inserted into the socket?
This may indicate a loose connection or a faulty socket. Avoid using the plug and inspect both the plug and socket.
Can I replace the plug myself?
Yes, but ensure proper wiring of live, neutral, and ground connections. If unsure, consult a qualified electrician.
Is the AC plug waterproof?
Standard AC plugs are not waterproof. Use weatherproof plugs for outdoor applications.
By following this documentation, users can safely and effectively utilize the AC plug in various applications.