

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 features 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 | Value/Description |
|---|---|
| Manufacturer | AC |
| Part ID | plug |
| Voltage Rating | 110V - 250V AC (varies by region) |
| Current Rating | 10A - 16A (depending on plug type) |
| Frequency | 50Hz / 60Hz |
| Material | High-grade thermoplastic or thermoset |
| Safety Standards | Compliant with IEC, UL, or regional norms |
| Operating Temperature | -20°C to 70°C |
The pin configuration of an AC plug varies depending on the regional standard (e.g., Type A, Type B, Type C). Below is an example of a Type B plug configuration:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Live (Hot) | Carries the current from the power source. |
| 2 | Neutral | Completes the circuit back to the power source. |
| 3 | Ground (Earth) | Provides a safety path for fault currents. |
While an AC plug is not directly connected to an Arduino UNO, it can be used to power an external power supply that provides DC voltage to 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 */
// Connect the AC plug to a 12V DC adapter.
// Ensure the adapter's output is connected to the Arduino UNO's barrel jack.
// The Arduino UNO will regulate the voltage to 5V for its operation.
int ledPin = 13; // Pin 13 is connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set pin 13 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 this documentation, users can safely and effectively utilize the AC plug in various applications.