

The DIN Rail Mounted Power Socket is a specialized electrical component designed to be installed on standard DIN rails, commonly used in industrial and commercial environments. This socket provides a convenient and standardized way to connect electrical devices to the power supply, ensuring a secure and organized power distribution system. Its compact design and ease of installation make it an essential component in control panels, automation systems, and other electrical enclosures.








| Parameter | Specification |
|---|---|
| Input Voltage Range | 100-250V AC |
| Maximum Current Rating | 16A |
| Frequency Range | 50/60 Hz |
| Mounting Type | DIN Rail (35mm standard) |
| Socket Type | Varies (e.g., Type E, Type F, or universal) |
| Material | Flame-retardant thermoplastic |
| Operating Temperature | -20°C to 70°C |
| Dimensions | Typically 45mm width (1 module size) |
| Certifications | CE, RoHS, and other regional standards |
The DIN Rail Mounted Power Socket typically has three connection terminals for wiring:
| Terminal Label | Description |
|---|---|
| L | Live wire connection (input power) |
| N | Neutral wire connection (input power) |
| PE | Protective Earth (ground) connection |
Mounting the Socket:
Wiring the Socket:
Testing:
While the DIN Rail Mounted Power Socket itself does not directly interface with an Arduino UNO, it can be used to power devices like a 5V DC power supply, which in turn powers the Arduino. Below is an example of how to use the socket in such a setup:
// Example Arduino code to blink an LED
// Ensure the Arduino is powered via the 5V adapter connected to the DIN socket
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Socket does not provide power | Loose or incorrect wiring | Verify wiring connections and tighten screws. |
| Device plugged into the socket does not work | Overloaded socket or faulty device | Check the device and ensure the load does not exceed 16A. |
| Socket feels warm during operation | High current draw or poor connections | Ensure proper wiring and avoid overloading. |
| Difficulty mounting on the DIN rail | Misalignment or incompatible rail size | Verify the DIN rail size (35mm standard) and align the socket properly. |
Can this socket be used outdoors?
What wire gauge should I use?
Can I use this socket for DC power?
How do I ensure proper grounding?
By following this documentation, you can safely and effectively use the DIN Rail Mounted Power Socket in your electrical projects.