

The CABLE AC 3 PIN is a widely used electrical component designed for connecting devices to an alternating current (AC) power source. It features three pins: live, neutral, and ground, ensuring safe and reliable power delivery. This cable is commonly used in household appliances, computers, power tools, and other electronic devices requiring a grounded connection for safety.








| Parameter | Specification |
|---|---|
| Voltage Rating | 110V - 250V AC |
| Current Rating | 6A - 16A (varies by cable type) |
| Frequency | 50Hz / 60Hz |
| Cable Length | Typically 1m to 3m (varies by model) |
| Connector Type | IEC 60320 C13 (common for devices) |
| Pin Configuration | Live, Neutral, Ground |
| Insulation Material | PVC or Rubber |
| Operating Temperature | -10°C to 70°C |
| Safety Standards | Compliant with IEC and UL standards |
| Pin Name | Description | Wire Color (Standard) |
|---|---|---|
| Live (L) | Carries the active current from the power source | Brown |
| Neutral (N) | Returns current to the power source | Blue |
| Ground (G) | Provides a safety path for fault currents | Green/Yellow |
While the CABLE AC 3 PIN itself does not directly interface with an Arduino UNO, it can be used to power an external power supply or adapter that provides DC power to the Arduino. Below is an example of how to use the cable indirectly:
// Simple LED Blink Test to Verify Arduino Power
// Connect an LED to pin 13 with a resistor in series
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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
}
Cable Does Not Fit the Device or Socket:
Device Does Not Power On:
Overheating of the Cable:
Electrical Shocks or Sparks:
By following this documentation, users can safely and effectively utilize the CABLE AC 3 PIN for powering their devices while ensuring proper operation and safety.