

The AC Plug 2 Pin (Type C Plug) is a widely used electrical connector designed to connect devices to an alternating current (AC) power supply. This plug is commonly found in household appliances and consumer electronics. Its simple two-pin design ensures ease of use and compatibility with standard Type C power sockets, which are prevalent in many regions worldwide.








The following table outlines the key technical details of the AC Plug 2 Pin (Type C Plug):
| Parameter | Specification |
|---|---|
| Manufacturer | Generic |
| Part ID | Type C Plug |
| Voltage Rating | 220V - 240V AC |
| Current Rating | Up to 2.5A |
| Frequency | 50Hz - 60Hz |
| Pin Type | Two round pins (4.0mm diameter) |
| Pin Spacing | 19mm (center-to-center) |
| Material | Thermoplastic or thermoset polymer |
| Safety Standards | IEC 60884-1 compliant |
The AC Plug 2 Pin has a straightforward design with two identical pins. The table below describes the pin configuration:
| Pin | Description | Function |
|---|---|---|
| Pin 1 | Live (L) | Carries the live AC voltage |
| Pin 2 | Neutral (N) | Completes the AC circuit |
Note: This plug does not include a ground (earth) pin, making it suitable only for devices that do not require grounding.
Inspect the Plug and Socket:
Connect the Plug:
Power the Device:
Disconnect Safely:
While the AC Plug 2 Pin itself is not directly connected to an Arduino UNO, it can be used to power an external power supply or adapter that provides DC voltage to the Arduino. Below is an example of how to use an AC adapter with the Arduino UNO:
/* Example: Blinking an LED with Arduino UNO powered via an AC adapter
Ensure the AC Plug 2 Pin is connected to a compatible AC adapter
that outputs 9V or 12V DC 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
}
Warning: Always ensure the AC adapter's output voltage and current are within the Arduino UNO's specifications (7-12V DC, 1A max).
Loose Connection:
Overheating:
Device Not Powering On:
Sparking During Connection:
Q1: Can the AC Plug 2 Pin be used in outdoor environments?
A1: No, this plug is not designed for outdoor use. Use it only in dry, indoor environments to avoid electrical hazards.
Q2: Is this plug compatible with Type F sockets?
A2: No, the AC Plug 2 Pin (Type C) is not compatible with Type F sockets, which have additional grounding contacts.
Q3: Can I use this plug with high-power appliances?
A3: No, this plug is rated for a maximum current of 2.5A and is unsuitable for high-power devices like heaters or air conditioners.
Q4: What safety precautions should I take when using this plug?
A4: Always inspect the plug and socket for damage, avoid overloading, and keep the plug away from water or moisture.
By following this documentation, users can safely and effectively utilize the AC Plug 2 Pin (Type C Plug) for their electrical needs.