

An AC plug, manufactured by AC with the part ID "plug," is a device designed 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 safe and efficient transfer of electrical power. AC plugs are essential components in household, industrial, and commercial electrical systems.








| 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 the model) |
| Material | High-grade thermoplastic or metal |
| Safety Standards | Compliant with IEC and UL standards |
| Pin Number | Description | Notes |
|---|---|---|
| Pin 1 | Live (L) | Carries the current to the device. |
| Pin 2 | Neutral (N) | Completes the circuit. |
| Pin 3 | Ground (G) (optional) | Provides safety by grounding. |
While an AC plug is not directly connected to an Arduino UNO, it can be used to power an external power supply that, in turn, powers the Arduino. Below is an example of how to use an AC plug with a 12V DC adapter to power an Arduino UNO:
/* Example: Blinking an LED with Arduino UNO powered via AC plug and adapter
Ensure the AC plug is connected to a 12V DC adapter, which powers the Arduino. */
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
}
By following these guidelines, the AC plug can be used safely and effectively in a variety of applications.