A 120V outlet is a standard electrical component that provides 120 volts of alternating current (AC) at a frequency of 60 Hz. It is widely used in residential, commercial, and industrial settings to power a variety of household appliances, electronic devices, and tools. The outlet typically features two vertical slots and a round grounding hole, ensuring compatibility with most standard plugs.
Below are the key technical details and pin configuration for a standard 120V outlet:
Parameter | Value |
---|---|
Voltage Rating | 120V AC |
Frequency | 60 Hz |
Current Rating | Typically 15A or 20A |
Power Rating | 1800W (15A) or 2400W (20A) |
Grounding | Yes (via grounding pin) |
Outlet Type | NEMA 5-15 (most common) |
Material | Thermoplastic or metal |
Operating Temperature | -20°C to 60°C |
Pin Name | Description |
---|---|
Hot (Live) | Supplies 120V AC power. Typically connected to the narrower vertical slot. |
Neutral | Returns current to the power source. Connected to the wider vertical slot. |
Ground | Provides a safety path for fault currents. Connected to the round hole. |
Wiring the Outlet:
Mounting the Outlet:
Powering Devices:
While an Arduino UNO cannot directly interface with a 120V outlet, you can use a relay module to control devices powered by the outlet. Below is an example code snippet for controlling a lamp connected to a 120V outlet via a relay:
// Example: Controlling a 120V outlet using a relay and Arduino UNO
// Note: Ensure proper isolation between the Arduino and the high-voltage circuit.
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() {
digitalWrite(relayPin, HIGH); // Turn on the relay (power the outlet)
delay(5000); // Keep the outlet powered for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (cut power to the outlet)
delay(5000); // Wait for 5 seconds before repeating
}
Warning: Always use a relay module rated for 120V AC and ensure proper insulation to prevent electrical hazards.
Outlet Not Providing Power:
Device Not Working When Plugged In:
Sparks or Burning Smell:
Grounding Issues:
Q1: Can I use a 120V outlet for 240V appliances?
A1: No, 120V outlets are not designed for 240V appliances. Using a 240V device with a 120V outlet can damage the device and pose safety risks.
Q2: How do I know if my outlet is 15A or 20A?
A2: Check the outlet's faceplate or the circuit breaker. A 20A outlet typically has a horizontal slot in addition to the vertical slots.
Q3: Is it safe to use a power strip with a 120V outlet?
A3: Yes, but ensure the total power draw of connected devices does not exceed the outlet's capacity (e.g., 1800W for a 15A outlet).
Q4: Can I install a 120V outlet outdoors?
A4: Yes, but use a weatherproof outlet and enclosure rated for outdoor use. Ensure proper grounding and GFCI protection.