

The C14 Female Plug is a standardized electrical connector commonly used in power supply applications. It is part of the IEC 60320 standard and is widely found in computer equipment, power supplies, and other electronic devices. The plug features a rectangular housing with three pins (live, neutral, and ground) and is designed to mate with a C13 male connector. Its robust design ensures secure and reliable power connections.








The following table outlines the key technical details of the C14 Female Plug:
| Parameter | Specification |
|---|---|
| Manufacturer | Generic |
| Manufacturer Part ID | C14 Female |
| Standard Compliance | IEC 60320 |
| Rated Voltage | 250V AC |
| Rated Current | 10A or 15A (depending on model) |
| Operating Temperature | -25°C to +70°C |
| Housing Material | Thermoplastic (UL94 V-0 flame retardant) |
| Contact Material | Brass or Copper Alloy (Nickel-plated) |
| Mounting Style | Panel Mount |
| Dimensions | 34.5mm x 23.5mm x 29mm (approximate) |
The C14 Female Plug has three pins, as described in the table below:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Live (L) | Connects to the live wire of the AC power source |
| 2 | Neutral (N) | Connects to the neutral wire of the AC power source |
| 3 | Ground (G) | Provides a safety ground connection |
Mounting the Plug:
Wiring the Plug:
Testing the Connection:
Connecting to a C13 Male Plug:
While the C14 Female Plug is not directly connected to an Arduino UNO, it can be used to supply power to an external power supply that powers the Arduino. Below is an example of how to use the plug in such a setup:
// Example Arduino code to blink an LED
// This assumes the Arduino is powered via a 5V DC power supply connected to the C14 plug.
const 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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No power output from the plug | Loose or incorrect wiring | Verify wiring connections and tighten screws. |
| Overheating of the plug | Exceeding current rating or poor connections | Ensure load does not exceed the plug's rating and check for secure connections. |
| Plug does not fit the C13 connector | Mismatched or damaged connectors | Ensure both connectors comply with IEC 60320 standards and inspect for damage. |
| Ground connection not working | Improper grounding or broken wire | Check the ground wire and ensure proper connection. |
Can the C14 Female Plug handle 110V AC?
Yes, the plug is rated for up to 250V AC, so it can safely handle 110V AC.
Is the C14 Female Plug waterproof?
No, the standard C14 Female Plug is not waterproof. Use it in dry environments or consider a waterproof variant for outdoor applications.
Can I use the C14 Female Plug for DC power?
While it is designed for AC power, it can be used for DC applications if the voltage and current ratings are within the specified limits.
What wire gauge should I use with the C14 Female Plug?
Use wires with a gauge suitable for the current rating of the plug (e.g., 16 AWG for 10A applications).
By following this documentation, users can safely and effectively integrate the C14 Female Plug into their projects and devices.