

The AC Power Plug (Type G), manufactured by Generic, is a device designed to connect electrical appliances to a power source. It typically features three rectangular prongs: live, neutral, and ground, which fit into a corresponding Type G socket. This plug is widely used in the United Kingdom, Ireland, and other regions that follow the British Standard BS 1363.
The following table outlines the key technical details of the AC Power Plug (Type G):
| Parameter | Specification |
|---|---|
| Manufacturer | Generic |
| Manufacturer Part ID | Type G |
| Voltage Rating | 220-240V AC |
| Current Rating | Up to 13A |
| Frequency | 50 Hz |
| Plug Type | Type G (BS 1363 Standard) |
| Number of Prongs | 3 (Live, Neutral, Ground) |
| Material | High-grade thermoplastic or polycarbonate |
| Safety Features | Built-in fuse (typically 3A, 5A, or 13A) |
The Type G plug has three rectangular prongs arranged in a triangular pattern. The table below describes each pin:
| Pin Name | Position | Description |
|---|---|---|
| Live (L) | Top right | Carries the current from the power source to the appliance. |
| Neutral (N) | Top left | Completes the circuit by returning current to the power source. |
| Ground (G) | Bottom (longest pin) | Provides a safety path for fault currents to prevent electric shock or damage. |
While the AC Power Plug 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 powering an Arduino UNO using a 12V DC adapter connected to a Type G plug:
// Example Arduino code to blink an LED
// Ensure the Arduino is powered via a 12V DC adapter connected to a Type G plug
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 into Socket:
Appliance Does Not Power On:
Overheating Plug:
By following these guidelines, the AC Power Plug (Type G) can be safely and effectively used in a variety of applications.