

The IEC320 C14 Power Inlet is a standardized electrical connector commonly used for connecting power cords to electronic devices. It features a rectangular shape with three pins and a locking mechanism to ensure a secure and reliable connection. This component is widely used in power supplies, desktop computers, servers, and other electronic equipment requiring AC power input.








| Parameter | Specification |
|---|---|
| Connector Type | IEC 60320 C14 |
| Rated Voltage | 250V AC |
| Rated Current | 10A (varies by model) |
| Number of Pins | 3 (Line, Neutral, Ground) |
| Mounting Style | Panel Mount |
| Operating Temperature | -25°C to +70°C |
| Material | Thermoplastic (flame-retardant) |
| Compliance Standards | IEC 60320, UL, CSA, VDE |
| Pin Name | Description |
|---|---|
| Line (L) | Connects to the live wire of the AC power source |
| Neutral (N) | Connects to the neutral wire of the AC power source |
| Ground (G) | Connects to the ground wire for safety |
Mounting the Connector:
Wiring the Connector:
Connecting to a Circuit:
Testing:
While the IEC320 C14 Power Inlet is not directly connected to an Arduino UNO, it can be used as part of the power supply system. For example, you can use it to provide AC power to a 5V DC power adapter, which then powers the Arduino UNO.
// Example Arduino code for a simple LED blink program
// This assumes the Arduino is powered via a 5V adapter connected to the IEC320 C14 inlet
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 Connections:
Overheating:
No Power to Device:
Electrical Noise or Interference:
By following these guidelines, the IEC320 C14 Power Inlet can be safely and effectively used in a wide range of applications.