Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use AC Power Plug: Examples, Pinouts, and Specs

Image of AC Power Plug
Cirkit Designer LogoDesign with AC Power Plug in Cirkit Designer

Introduction

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.

Explore Projects Built with AC Power Plug

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
Image of rfdriver: A project utilizing AC Power Plug in a practical application
This circuit consists of two 5V 5A power supplies connected to an AC wall plug point, providing DC output through a 12-way connector. The ground connections from both power supplies are interconnected and also connected to the ground pins of two toggle switches. The DC outputs from the power supplies are separately connected to different pins on the 12-way connector, with each power supply output being switchable via one of the toggle switches.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered USB Charger with LED Indicator and DC Motor
Image of Copy of Hand Crank mobile charger : A project utilizing AC Power Plug in a practical application
This circuit converts AC power to DC using a bridge rectifier and regulates the voltage to 5V with a 7805 voltage regulator. It powers a USB port and indicates power status with an LED, while also providing a charging interface through a multi-charging cable.
Cirkit Designer LogoOpen Project in Cirkit Designer
AC to DC Micro USB Power Supply with Buck Converter
Image of ac: A project utilizing AC Power Plug in a practical application
This circuit is designed to convert AC power to regulated DC power. An AC source feeds a power transformer that steps down the voltage, which is then rectified by a bridge rectifier to produce a pulsating DC. This DC is further converted to a stable DC output by a step-down buck converter, which then provides power through a Micro USB connector.
Cirkit Designer LogoOpen Project in Cirkit Designer
220V to 5V Power Supply with Transformer and Bridge Rectifier
Image of POWER SUPPLY MODULE: A project utilizing AC Power Plug in a practical application
This circuit converts 220V AC power to a 5V DC output. It uses a transformer to step down the voltage, a bridge rectifier to convert AC to DC, and a capacitor to smooth the output. The final 5V DC is available through a connector.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with AC Power Plug

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of rfdriver: A project utilizing AC Power Plug in a practical application
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
This circuit consists of two 5V 5A power supplies connected to an AC wall plug point, providing DC output through a 12-way connector. The ground connections from both power supplies are interconnected and also connected to the ground pins of two toggle switches. The DC outputs from the power supplies are separately connected to different pins on the 12-way connector, with each power supply output being switchable via one of the toggle switches.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Copy of Hand Crank mobile charger : A project utilizing AC Power Plug in a practical application
Battery-Powered USB Charger with LED Indicator and DC Motor
This circuit converts AC power to DC using a bridge rectifier and regulates the voltage to 5V with a 7805 voltage regulator. It powers a USB port and indicates power status with an LED, while also providing a charging interface through a multi-charging cable.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of ac: A project utilizing AC Power Plug in a practical application
AC to DC Micro USB Power Supply with Buck Converter
This circuit is designed to convert AC power to regulated DC power. An AC source feeds a power transformer that steps down the voltage, which is then rectified by a bridge rectifier to produce a pulsating DC. This DC is further converted to a stable DC output by a step-down buck converter, which then provides power through a Micro USB connector.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of POWER SUPPLY MODULE: A project utilizing AC Power Plug in a practical application
220V to 5V Power Supply with Transformer and Bridge Rectifier
This circuit converts 220V AC power to a 5V DC output. It uses a transformer to step down the voltage, a bridge rectifier to convert AC to DC, and a capacitor to smooth the output. The final 5V DC is available through a connector.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Powering household appliances such as kettles, toasters, and televisions.
  • Connecting office equipment like computers, printers, and monitors.
  • Industrial and commercial applications requiring a secure and reliable power connection.
  • International travel adapters for regions using Type G sockets.

Technical Specifications

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)

Pin Configuration and Descriptions

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.

Usage Instructions

How to Use the AC Power Plug in a Circuit

  1. Inspect the Plug: Ensure the plug is undamaged and the prongs are clean and straight.
  2. Connect to Appliance: Attach the plug to the appliance's power cord, ensuring proper wiring:
    • Brown wire to the Live (L) terminal.
    • Blue wire to the Neutral (N) terminal.
    • Green/Yellow wire to the Ground (G) terminal.
  3. Secure the Wiring: Tighten the terminal screws and ensure no exposed wires are visible.
  4. Insert into Socket: Plug the Type G connector into a compatible socket.
  5. Turn on Power: Switch on the socket (if applicable) to power the connected appliance.

Important Considerations and Best Practices

  • Fuse Selection: Use a fuse rated for the appliance's current draw (e.g., 3A for small devices, 13A for high-power devices).
  • Cable Strain Relief: Ensure the cable is clamped securely to prevent strain on the internal wiring.
  • Compatibility: Only use the Type G plug with sockets designed for BS 1363 standards.
  • Safety: Never use a damaged plug or attempt to modify it. Always disconnect from the power source before wiring or maintenance.

Example: Connecting to an Arduino UNO

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
}

Troubleshooting and FAQs

Common Issues Users Might Face

  1. Plug Does Not Fit into Socket:

    • Ensure the socket is a Type G socket.
    • Check for obstructions or damage to the socket or plug.
  2. Appliance Does Not Power On:

    • Verify the fuse inside the plug is intact. Replace it if necessary.
    • Check the wiring connections inside the plug for loose or incorrect wiring.
    • Ensure the socket is switched on and supplying power.
  3. Overheating Plug:

    • Ensure the appliance's current draw does not exceed the plug's 13A rating.
    • Check for loose connections or damaged wiring.

Solutions and Tips for Troubleshooting

  • Replacing the Fuse: Open the plug's fuse compartment, remove the blown fuse, and replace it with a new one of the correct rating.
  • Testing the Socket: Use a socket tester or plug in a different device to confirm the socket is functioning.
  • Inspecting the Wiring: Disconnect the plug from the socket and inspect the internal wiring for damage or incorrect connections.

By following these guidelines, the AC Power Plug (Type G) can be safely and effectively used in a variety of applications.