

The 120V AC Power Cable is a robust and reliable cable designed to carry alternating current (AC) at a standard voltage of 120 volts. It is commonly used to connect electrical devices, such as household appliances, power tools, and electronic equipment, to a power source. This cable ensures safe and efficient power delivery, making it an essential component in residential, commercial, and industrial applications.








| Parameter | Specification |
|---|---|
| Voltage Rating | 120V AC |
| Current Rating | Typically 10A to 15A (varies by model) |
| Power Rating | Up to 1800W (depending on current rating) |
| Cable Type | 2-prong or 3-prong (grounded) |
| Conductor Material | Copper (standard) |
| Insulation Material | PVC or rubber |
| Cable Length | Varies (commonly 3ft, 6ft, 10ft, etc.) |
| Plug Type | NEMA 1-15 (2-prong) or NEMA 5-15 (3-prong) |
| Operating Temperature | -20°C to 60°C |
| Safety Certifications | UL Listed, CSA Certified (varies by manufacturer) |
| Pin Name | Description |
|---|---|
| Hot (Live) | Carries the 120V AC current to the device. |
| Neutral | Completes the circuit and returns current. |
| Ground | Provides a safety path for fault currents. |
| Pin Name | Description |
|---|---|
| Hot (Live) | Carries the 120V AC current to the device. |
| Neutral | Completes the circuit and returns current. |
While the 120V AC Power Cable itself is not directly connected to an Arduino UNO, it can be used to power a 5V DC power adapter, which in turn powers the Arduino. Below is an example of how to use the cable indirectly:
// Example Arduino code to blink an LED
// This assumes the Arduino is powered via a 5V adapter connected to the 120V AC cable.
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
}
Cable Overheating:
Loose Connections:
Device Not Powering On:
Sparks or Burning Smell:
Q: Can I use a 120V AC Power Cable for 240V appliances?
A: No, 120V AC Power Cables are not designed for 240V appliances. Using them in such applications can result in damage or safety hazards.
Q: How do I know if my cable is grounded?
A: A grounded cable has three prongs on the plug. The round prong is the ground connection.
Q: Can I use this cable outdoors?
A: Only if the cable is specifically rated for outdoor use. Check the manufacturer's specifications for details.
Q: What should I do if the cable gets wet?
A: Unplug the cable immediately and allow it to dry completely before reuse. If the insulation is damaged, replace the cable.