

A 220V outlet is a power receptacle designed to supply electrical power at 220 volts. It is commonly used for high-power appliances and equipment, such as air conditioners, electric dryers, ovens, and industrial machinery. These outlets are prevalent in residential, commercial, and industrial settings where higher voltage is required to operate energy-intensive devices efficiently.








| Parameter | Specification |
|---|---|
| Voltage Rating | 220V AC |
| Current Rating | Typically 15A, 20A, or 30A |
| Frequency | 50Hz or 60Hz (region-dependent) |
| Number of Pins | 3 or 4 (depending on the outlet type) |
| Grounding | Yes (ground pin included) |
| Material | Heat-resistant plastic and metal |
| Mounting Style | Wall-mounted or flush-mounted |
| Pin Name | Description |
|---|---|
| Line (L) | Supplies the live 220V AC voltage |
| Neutral (N) | Returns current to complete the circuit |
| Ground (G) | Provides safety by grounding the circuit |
| Pin Name | Description |
|---|---|
| Line 1 (L1) | Supplies one phase of the 220V AC voltage |
| Line 2 (L2) | Supplies the second phase of the 220V AC voltage |
| Neutral (N) | Returns current to complete the circuit |
| Ground (G) | Provides safety by grounding the circuit |
If you are using an Arduino to control a 220V appliance via a relay, ensure the relay module is rated for 220V AC. Below is an example code snippet for controlling a relay:
// Arduino code to control a relay for a 220V outlet
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 initially
}
void loop() {
// Turn on the relay (activates the 220V outlet)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the outlet on for 5 seconds
// Turn off the relay (deactivates the 220V outlet)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the outlet off for 5 seconds
}
Note: Always use an optocoupled relay module for safety when working with high voltages. Never directly connect 220V to the Arduino.
No Power at the Outlet:
Appliance Not Working:
Sparks or Burning Smell:
Multimeter Shows Incorrect Voltage:
By following this documentation, you can safely and effectively use a 220V outlet in your projects or installations.