

A 1 gang metal clad socket is a robust electrical outlet designed to accommodate a single plug. Constructed from durable metal, it offers enhanced protection against physical damage, wear, and environmental factors. This makes it ideal for industrial, commercial, and outdoor applications where durability and safety are paramount. Its sturdy design ensures reliable performance in demanding environments, such as workshops, factories, and garages.








| Parameter | Specification | 
|---|---|
| Material | Metal (typically steel or aluminum) | 
| Number of Gangs | 1 | 
| Voltage Rating | 220-250V AC (varies by region) | 
| Current Rating | 13A (standard for most regions) | 
| Socket Type | BS 1363 (UK) or other regional types | 
| Mounting Type | Surface-mounted | 
| IP Rating (Ingress Protection) | IP20 to IP66 (varies by model) | 
| Dimensions | Typically 86mm x 86mm x 45mm | 
| Earth Terminal | Yes (for safety grounding) | 
The 1 gang metal clad socket typically follows the BS 1363 standard (UK) or other regional standards. Below is the pin configuration for a BS 1363 socket:
| Pin Name | Description | 
|---|---|
| Live (L) | Supplies the active phase of the AC voltage. | 
| Neutral (N) | Completes the circuit for current flow. | 
| Earth (E) | Provides safety grounding to prevent shocks. | 
Preparation:
Wiring:
Mounting:
Testing:
While a 1 gang metal clad socket is not directly connected to an Arduino UNO, it can be used in projects where the Arduino controls devices powered through the socket. For example, you can use a relay module to control the socket's power supply. Below is an example code snippet for controlling a relay connected to an Arduino:
// Example: Controlling a relay to switch a 1 gang metal clad socket
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 socket ON
  digitalWrite(relayPin, HIGH); // Activate relay
  delay(5000); // Keep socket ON for 5 seconds
  // Turn the socket OFF
  digitalWrite(relayPin, LOW); // Deactivate relay
  delay(5000); // Keep socket OFF for 5 seconds
}
Note: Ensure the relay module is rated for the voltage and current of the socket. Use proper isolation techniques to separate the low-voltage Arduino circuit from the high-voltage socket.
Socket Not Working After Installation:
Tripped Circuit Breaker:
Electric Shocks from the Socket:
Water or Dust Ingress:
By following this documentation, users can safely and effectively install and use a 1 gang metal clad socket in various applications.