

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, appliances, and equipment to a power source, ensuring a stable and safe power supply. These cables are essential in residential, commercial, and industrial settings, where they serve as a critical link between devices and electrical outlets.








| Parameter | Specification |
|---|---|
| Voltage Rating | 120V AC |
| Current Rating | Typically 10A to 15A (varies by model) |
| Frequency | 50Hz or 60Hz |
| Cable Type | 2-prong or 3-prong (grounded) |
| Insulation Material | PVC or rubber |
| Connector Type | NEMA 1-15P (2-prong) or NEMA 5-15P (3-prong) |
| Cable Length | Varies (commonly 3ft, 6ft, 10ft, etc.) |
| Operating Temperature | -20°C to 60°C |
| Safety Certifications | UL, CSA, or equivalent |
| Pin Number | Name | Description |
|---|---|---|
| 1 | Hot (Live) | Carries the current to the device. |
| 2 | Neutral | Returns the current to the source. |
| Pin Number | Name | Description |
|---|---|---|
| 1 | Hot (Live) | Carries the current to the device. |
| 2 | Neutral | Returns the current to the source. |
| 3 | Ground | Provides a safety path for excess current. |
While the 120V AC Power Cable itself is not directly connected to an Arduino UNO, it can be used to power devices like AC-to-DC adapters or power supplies that provide the necessary DC voltage for the Arduino. Below is an example of how to use an AC adapter with an Arduino UNO:
// Example: Blinking an LED with Arduino UNO powered via an AC adapter
// Define the pin for the LED
const int ledPin = 13;
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Note: Ensure the AC adapter provides a regulated 5V or 9V DC output compatible with the Arduino UNO's power input.
Cable Does Not Power the Device:
Device Trips Circuit Breaker:
Cable Feels Hot During Use:
Ground Pin Missing or Broken:
By following these guidelines and best practices, you can ensure the safe and effective use of the 120V AC Power Cable in your applications.