The SOCKET 3 GANG (Manufacturer: MK, Part ID: 13 AMP DOUBLE POLE) is a multi-socket connector designed to allow three devices to be plugged in simultaneously. It is commonly used for power distribution in electronic circuits, home appliances, and industrial setups. This component is ideal for applications requiring multiple power connections from a single source, ensuring convenience and efficient power management.
The following table outlines the key technical details of the SOCKET 3 GANG:
Parameter | Specification |
---|---|
Manufacturer | MK |
Part ID | 13 AMP DOUBLE POLE |
Rated Voltage | 250V AC |
Rated Current | 13A |
Number of Outlets | 3 |
Connector Type | UK 3-pin (BS 1363) |
Material | High-quality thermoplastic |
Safety Features | Double pole switch, childproof shutters |
Mounting Type | Wall-mounted or portable |
Dimensions | 86mm x 146mm x 30mm (approx.) |
Compliance | BS 1363, CE certified |
The SOCKET 3 GANG uses the standard UK 3-pin configuration. Below is a description of the pins:
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 by grounding the device. |
Installation:
Operation:
Testing:
The SOCKET 3 GANG is not directly compatible with Arduino UNO or other microcontrollers, as it is designed for high-voltage AC power distribution. However, it can be used in conjunction with relays or solid-state switches to control AC devices via an Arduino. Below is an example of how to control an AC device connected to the SOCKET 3 GANG using a relay module:
/*
Example: Controlling an AC device connected to SOCKET 3 GANG
using a relay module and Arduino UNO.
Note: Ensure proper isolation between the high-voltage AC circuit
and the low-voltage Arduino circuit. Use a relay module with optocoupler
for safety.
*/
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 on the relay (and the connected AC device)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the device on for 5 seconds
// Turn off the relay (and the connected AC device)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the device off for 5 seconds
}
No Power to Outlets:
Overheating:
Tripped Circuit Breaker:
Device Not Turning On:
By following this documentation, users can safely and effectively utilize the SOCKET 3 GANG for their power distribution needs.