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

How to Use C14 Plug - Female: Examples, Pinouts, and Specs

Image of C14 Plug - Female
Cirkit Designer LogoDesign with C14 Plug - Female in Cirkit Designer

Introduction

The C14 Plug - Female is a standardized electrical connector commonly used for power supply connections in electronic devices. It is designed to accept a male C13 connector, which is typically found on power cords for computers, monitors, printers, and other electronic equipment. This component is widely used due to its robust design, ease of use, and compliance with international standards (IEC 60320).

Explore Projects Built with C14 Plug - Female

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 C14 Plug - Female 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
Heater Control Circuit with Power Socket Integration
Image of Simple Water Heater: A project utilizing C14 Plug - Female in a practical application
The circuit connects a heater to a power source via a socket. The heater is likely to be powered directly from the socket, with the positive and negative terminals of the socket providing the necessary voltage and ground connections to the heater. There are no control elements or sensors present in the circuit, indicating that the heater operates at a constant power level when connected.
Cirkit Designer LogoOpen Project in Cirkit Designer
Toggle Switch Controlled Lamp Circuit with Banana Sockets
Image of STAIRCASE: A project utilizing C14 Plug - Female in a practical application
This circuit consists of two toggle switches and a red lamp connected to panel mount banana sockets. The switches control the connection between the red and black banana sockets, allowing the lamp to be turned on or off depending on the switch positions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Pushbutton Interface with General Purpose I/O Plug
Image of Assista GP IO: A project utilizing C14 Plug - Female in a practical application
This circuit consists of a General Purpose Input/Output (GPIO) plug connected to four pushbuttons. Each pushbutton is wired to a unique input pin on the GPIO plug, allowing the state of each button (pressed or not pressed) to be detected individually. The common terminals of the pushbuttons are interconnected and likely serve as a ground or reference voltage connection.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with C14 Plug - Female

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 C14 Plug - Female 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 Simple Water Heater: A project utilizing C14 Plug - Female in a practical application
Heater Control Circuit with Power Socket Integration
The circuit connects a heater to a power source via a socket. The heater is likely to be powered directly from the socket, with the positive and negative terminals of the socket providing the necessary voltage and ground connections to the heater. There are no control elements or sensors present in the circuit, indicating that the heater operates at a constant power level when connected.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of STAIRCASE: A project utilizing C14 Plug - Female in a practical application
Toggle Switch Controlled Lamp Circuit with Banana Sockets
This circuit consists of two toggle switches and a red lamp connected to panel mount banana sockets. The switches control the connection between the red and black banana sockets, allowing the lamp to be turned on or off depending on the switch positions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Assista GP IO: A project utilizing C14 Plug - Female in a practical application
Pushbutton Interface with General Purpose I/O Plug
This circuit consists of a General Purpose Input/Output (GPIO) plug connected to four pushbuttons. Each pushbutton is wired to a unique input pin on the GPIO plug, allowing the state of each button (pressed or not pressed) to be detected individually. The common terminals of the pushbuttons are interconnected and likely serve as a ground or reference voltage connection.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Power input for desktop computers, monitors, and servers.
  • Connection interface for uninterruptible power supplies (UPS).
  • Powering laboratory equipment and industrial devices.
  • Used in audio-visual equipment such as amplifiers and projectors.

Technical Specifications

The C14 Plug - Female adheres to the IEC 60320 standard and is designed for safe and reliable power connections. Below are the key technical details:

General Specifications

Parameter Value
Manufacturer Generic
Manufacturer Part ID C14 Female
Connector Type IEC 60320 C14 (Female)
Rated Voltage 250V AC
Rated Current 10A or 15A (depending on model)
Operating Temperature -25°C to +70°C
Material Thermoplastic (flame-retardant)

Pin Configuration and Descriptions

The C14 Female plug has three pins for power connections. The table below describes each pin:

Pin Number Name Description
1 Line (L) Live wire for AC power input.
2 Neutral (N) Neutral wire for AC power input.
3 Earth (E) Ground connection for safety.

Usage Instructions

How to Use the C14 Plug - Female in a Circuit

  1. Wiring the Connector:

    • Strip the insulation from the wires of your power cable (Line, Neutral, and Earth).
    • Connect the wires to the corresponding terminals on the C14 Female plug:
      • Line (L) to Pin 1.
      • Neutral (N) to Pin 2.
      • Earth (E) to Pin 3.
    • Ensure all connections are secure and insulated to prevent short circuits.
  2. Mounting:

    • The C14 Female plug is typically panel-mounted. Use screws or clips to secure it to the device's chassis.
    • Ensure the plug is properly aligned and firmly attached to avoid loose connections.
  3. Testing:

    • After installation, test the connection with a multimeter to verify continuity and proper wiring.
    • Plug in a compatible C13 connector to ensure a snug and secure fit.

Important Considerations and Best Practices

  • Always ensure the power supply voltage and current ratings do not exceed the plug's specifications.
  • Use proper insulation and strain relief to prevent damage to the wires.
  • Avoid exposing the connector to moisture or extreme temperatures.
  • For safety, disconnect the power supply before wiring or handling the connector.

Example: Using the C14 Plug with an Arduino UNO

While the C14 Female plug is not directly connected to an Arduino UNO, it can be used to supply power to a 5V DC adapter, which in turn powers the Arduino. Below is an example of how to use the C14 plug in such a setup:

  1. Connect the C14 Female plug to an AC power source.
  2. Wire the output of the C14 plug to a 5V DC adapter.
  3. Use the adapter's output to power the Arduino UNO via its barrel jack or VIN pin.
// Example Arduino Code: Blink an LED
// This code assumes the Arduino is powered via a 5V adapter connected to the C14 plug.

void setup() {
  pinMode(13, OUTPUT); // Set pin 13 as an output for the onboard LED
}

void loop() {
  digitalWrite(13, HIGH); // Turn the LED on
  delay(1000);            // Wait for 1 second
  digitalWrite(13, LOW);  // Turn the LED off
  delay(1000);            // Wait for 1 second
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. Loose Connection:

    • Issue: The C13 connector does not fit securely into the C14 Female plug.
    • Solution: Check for debris or damage in the connector. Ensure the plug is properly mounted.
  2. No Power Output:

    • Issue: The connected device does not receive power.
    • Solution: Verify the wiring of the Line, Neutral, and Earth connections. Test the power source with a multimeter.
  3. Overheating:

    • Issue: The plug becomes excessively hot during operation.
    • Solution: Ensure the current does not exceed the rated capacity (10A or 15A). Check for loose or corroded connections.
  4. Sparking or Short Circuit:

    • Issue: Sparks occur when connecting or disconnecting the plug.
    • Solution: Disconnect power before handling the plug. Inspect for damaged insulation or exposed wires.

FAQs

Q1: Can the C14 Female plug be used with a 110V power supply?
A1: Yes, the C14 plug is compatible with both 110V and 250V AC power supplies, as long as the current does not exceed the rated capacity.

Q2: Is the C14 Female plug waterproof?
A2: No, the standard C14 plug is not waterproof. For outdoor or wet environments, use a weatherproof enclosure.

Q3: Can I use the C14 plug for DC power?
A3: While the C14 plug is designed for AC power, it can be used for DC applications if the voltage and current ratings are within specifications.

Q4: How do I ensure safety when using the C14 plug?
A4: Always follow proper wiring practices, use insulated tools, and disconnect power before handling the plug.