

The 120V 5-15P Panel Outlet is a standard electrical outlet designed to deliver 120V AC power. It features a 5-15P configuration, which includes two flat parallel blades for line and neutral connections, along with a grounding pin for safety. This outlet is widely used in residential, commercial, and industrial applications to power a variety of devices, such as appliances, tools, and electronic equipment.
The following table outlines the key technical details of the 120V 5-15P Panel Outlet:
| Parameter | Specification |
|---|---|
| Voltage Rating | 120V AC |
| Current Rating | 15A |
| Power Rating | 1800W (at 120V) |
| Configuration | NEMA 5-15P |
| Number of Outlets | 1 |
| Material | Thermoplastic or Nylon |
| Mounting Style | Panel Mount |
| Grounding | Yes (Ground Pin Included) |
| Operating Temperature | -20°C to 60°C |
| Dimensions | Varies by manufacturer (e.g., 2"x1") |
| Pin Name | Description |
|---|---|
| Line (Hot) | Supplies the 120V AC power to the connected device. |
| Neutral | Returns current to complete the circuit. |
| Ground | Provides a safety path for fault currents. |
Mounting the Outlet:
Wiring the Outlet:
Testing the Outlet:
Powering Devices:
While the 120V 5-15P Panel Outlet is not directly connected to an Arduino UNO, it can be used in projects where the Arduino controls a relay to switch AC devices on and off. Below is an example of how to use the outlet with a relay module and an Arduino UNO.
/*
Example: Controlling a 120V Outlet with Arduino and Relay
This code demonstrates how to use an Arduino UNO to control a relay module
that switches a 120V 5-15P Panel Outlet on and off.
WARNING: Ensure proper safety precautions when working with high voltage.
Only qualified individuals should handle AC wiring.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
// Turn the outlet ON
digitalWrite(relayPin, HIGH); // Activate relay
delay(5000); // Keep outlet ON for 5 seconds
// Turn the outlet OFF
digitalWrite(relayPin, LOW); // Deactivate relay
delay(5000); // Keep outlet OFF for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Outlet does not provide power | Loose or incorrect wiring | Verify wiring connections and tighten. |
| Device trips circuit breaker | Overloaded circuit or short circuit | Reduce load or check for wiring faults. |
| Ground pin not connected properly | Faulty or missing ground connection | Ensure ground wire is securely connected. |
| Outlet feels warm during use | Excessive load or poor connections | Reduce load and check for loose wires. |
Can I use this outlet for 240V devices?
What wire gauge should I use for wiring this outlet?
Can I install this outlet outdoors?
How do I test if the outlet is working?
The 120V 5-15P Panel Outlet is a versatile and reliable component for delivering AC power in a variety of applications. By following proper installation and safety practices, you can ensure safe and efficient operation. Whether you're powering household appliances or integrating the outlet into a custom project, this documentation provides the essential information needed for successful use.







