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

How to Use IEC320 C14 Power Inlet: Examples, Pinouts, and Specs

Image of IEC320 C14 Power Inlet
Cirkit Designer LogoDesign with IEC320 C14 Power Inlet in Cirkit Designer

Introduction

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.

Explore Projects Built with IEC320 C14 Power Inlet

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Modular Power Distribution System with Multiple SMPS Units and 120V Outlet
Image of Cellion-Tesla: A project utilizing IEC320 C14 Power Inlet in a practical application
This circuit is designed to convert 240V AC power to both 12V and 24V DC outputs using multiple SMPS units. Terminal blocks are used to organize and distribute the power, while a 120V outlet provides additional AC power access. The circuit is likely used for powering various electronic devices that require different voltage levels.
Cirkit Designer LogoOpen Project in Cirkit Designer
Industrial Power Distribution and Safety Control System
Image of Control Diagram: A project utilizing IEC320 C14 Power Inlet in a practical application
This circuit is designed for power distribution and safety control in an industrial setting. It features a main isolator and circuit breaker for power management, multiple PSUs for 5V, 12V, and 24V outputs, and a safety relay system that interfaces with E-stop buttons and a start switch to control a main contactor, ensuring safe operation and emergency power cut-off capabilities.
Cirkit Designer LogoOpen Project in Cirkit Designer
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
Image of rfdriver: A project utilizing IEC320 C14 Power Inlet 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
240V to 12V Power Conversion Circuit with Stopkontak
Image of daya PLN: A project utilizing IEC320 C14 Power Inlet in a practical application
This circuit converts a 240V AC power source to a 12V DC output using a 12V adapter. The 240V AC power source is connected to a stopkontak, which then supplies the 12V adapter with the necessary AC voltage to produce a 12V DC output.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with IEC320 C14 Power Inlet

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 Cellion-Tesla: A project utilizing IEC320 C14 Power Inlet in a practical application
Modular Power Distribution System with Multiple SMPS Units and 120V Outlet
This circuit is designed to convert 240V AC power to both 12V and 24V DC outputs using multiple SMPS units. Terminal blocks are used to organize and distribute the power, while a 120V outlet provides additional AC power access. The circuit is likely used for powering various electronic devices that require different voltage levels.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Control Diagram: A project utilizing IEC320 C14 Power Inlet in a practical application
Industrial Power Distribution and Safety Control System
This circuit is designed for power distribution and safety control in an industrial setting. It features a main isolator and circuit breaker for power management, multiple PSUs for 5V, 12V, and 24V outputs, and a safety relay system that interfaces with E-stop buttons and a start switch to control a main contactor, ensuring safe operation and emergency power cut-off capabilities.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of rfdriver: A project utilizing IEC320 C14 Power Inlet 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 daya PLN: A project utilizing IEC320 C14 Power Inlet in a practical application
240V to 12V Power Conversion Circuit with Stopkontak
This circuit converts a 240V AC power source to a 12V DC output using a 12V adapter. The 240V AC power source is connected to a stopkontak, which then supplies the 12V adapter with the necessary AC voltage to produce a 12V DC output.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Power input for desktop computers, servers, and monitors
  • Power supplies for industrial and consumer electronics
  • Test equipment and laboratory devices
  • Audio and video equipment
  • Uninterruptible Power Supplies (UPS)

Technical Specifications

Key Technical Details

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 Configuration and Descriptions

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

Usage Instructions

How to Use the Component in a Circuit

  1. Mounting the Connector:

    • The IEC320 C14 Power Inlet is designed for panel mounting. Cut a rectangular hole in the panel according to the dimensions specified in the datasheet of the specific model.
    • Secure the connector using screws or snap-fit mechanisms, depending on the design.
  2. Wiring the Connector:

    • Identify the pins: Line (L), Neutral (N), and Ground (G). These are typically labeled on the back of the connector.
    • Use appropriately rated wires for the current and voltage requirements of your application.
    • Solder or crimp the wires to the corresponding pins. Ensure a secure and reliable connection.
  3. Connecting to a Circuit:

    • Connect the Line (L) and Neutral (N) pins to the input terminals of your device's power supply.
    • Connect the Ground (G) pin to the chassis or ground terminal of your device for safety.
  4. Testing:

    • After wiring, test the connections with a multimeter to ensure there are no short circuits or loose connections.
    • Plug in the power cord and verify that the device powers on correctly.

Important Considerations and Best Practices

  • Always ensure the connector is rated for the voltage and current of your application.
  • Use insulated tools and follow proper safety procedures when working with AC power.
  • Verify that the ground connection is properly secured to prevent electrical hazards.
  • Avoid over-tightening screws during installation to prevent damage to the connector.

Example: Connecting to an Arduino UNO Power Supply

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
}

Troubleshooting and FAQs

Common Issues Users Might Face

  1. Loose Connections:

    • Problem: The power cord does not fit securely into the inlet.
    • Solution: Ensure the power cord is compatible with the IEC320 C14 inlet. Check for debris or damage in the connector.
  2. Overheating:

    • Problem: The connector becomes hot during operation.
    • Solution: Verify that the current does not exceed the rated capacity of the connector. Check for loose or poor connections.
  3. No Power to Device:

    • Problem: The device does not power on after connecting the inlet.
    • Solution: Check the wiring for continuity and ensure the Line (L), Neutral (N), and Ground (G) are correctly connected.
  4. Electrical Noise or Interference:

    • Problem: The device experiences electrical noise or interference.
    • Solution: Ensure the ground connection is properly secured. Use shielded cables if necessary.

Solutions and Tips for Troubleshooting

  • Use a multimeter to check for continuity and proper voltage levels at the connector pins.
  • Inspect the connector and power cord for physical damage or wear.
  • Ensure the panel mounting is secure and does not cause stress on the connector or wires.
  • If the connector is part of a larger system, verify that other components (e.g., fuses, power supplies) are functioning correctly.

By following these guidelines, the IEC320 C14 Power Inlet can be safely and effectively used in a wide range of applications.