

The AC Power Socket (Manufacturer: Generic, Part ID: Sockets) is a device designed to provide a secure and reliable connection point for electrical appliances to access an alternating current (AC) power supply. It is a fundamental component in electrical systems, enabling the safe transfer of power to various devices. AC power sockets are commonly found in residential, commercial, and industrial environments.








| Parameter | Value/Description |
|---|---|
| Rated Voltage | 110V - 250V AC |
| Rated Current | 6A - 16A (varies by model) |
| Frequency | 50Hz / 60Hz |
| Material | Flame-retardant plastic housing, metal pins |
| Mounting Style | Panel mount or wall mount |
| Operating Temperature | -20°C to 70°C |
| Safety Standards | Compliant with IEC and UL standards |
| Pin Name | Description |
|---|---|
| Line (L) | Connects to the live wire of the AC power supply. |
| Neutral (N) | Connects to the neutral wire of the AC power supply. |
| Ground (G) | Provides a safety ground connection to prevent electric shock. |
Mounting the Socket:
Wiring the Socket:
Testing the Connection:
Integrating with Other Components:
To control an AC appliance (e.g., a lamp) using an Arduino UNO, you can use a relay module to switch the AC power. Below is an example code snippet:
/*
Example: Controlling an AC appliance using an Arduino UNO and a relay module.
Note: Ensure proper isolation between the AC and DC circuits to avoid electric shock.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the relay (AC appliance ON)
delay(5000); // Keep the appliance ON for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (AC appliance OFF)
delay(5000); // Keep the appliance OFF for 5 seconds
}
Warning: Always use a relay module with optoisolation to protect the Arduino from high-voltage AC.
Socket Does Not Provide Power:
Overheating of the Socket:
Appliance Does Not Turn On:
Electric Shock When Touching the Socket:
By following this documentation, users can safely and effectively integrate the AC Power Socket into their electrical systems or projects.