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).
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:
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) |
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. |
Wiring the Connector:
Mounting:
Testing:
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:
// 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
}
Loose Connection:
No Power Output:
Overheating:
Sparking or Short Circuit:
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.