

The Schneider 00001 Rele 220V with Socket is an electromechanical relay designed for switching high-voltage AC loads. It is a versatile and reliable component commonly used in industrial automation, home automation, and control systems. The relay comes with a socket for easy installation and replacement, making it ideal for applications requiring frequent maintenance or upgrades.








| Parameter | Value |
|---|---|
| Manufacturer | Schneider |
| Part ID | 00001 |
| Operating Voltage | 220V AC |
| Coil Voltage | 220V AC |
| Contact Configuration | SPDT (Single Pole Double Throw) |
| Contact Rating | 10A @ 250V AC |
| Insulation Resistance | ≥ 100 MΩ |
| Dielectric Strength | 2000V AC for 1 minute |
| Operating Temperature | -40°C to +70°C |
| Mounting Type | Socket (DIN rail compatible) |
The relay socket has a standard pin layout for easy wiring. Below is the pin configuration:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (A1) |
| 2 | Coil Terminal 2 (A2) |
| 3 | Common Contact (COM) |
| 4 | Normally Open Contact (NO) |
| 5 | Normally Closed Contact (NC) |
The relay can be controlled using an Arduino UNO with the help of a relay driver circuit (e.g., a transistor). Below is an example code snippet:
// Example: Controlling a Schneider 220V relay with Arduino UNO
// Pin 7 is used to control the relay via a transistor driver circuit.
const int relayPin = 7; // Define the pin connected to the relay driver
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn relay on
delay(5000); // Keep relay on for 5 seconds
digitalWrite(relayPin, LOW); // Turn relay off
delay(5000); // Keep relay off for 5 seconds
}
Note: Use a transistor (e.g., 2N2222) and a base resistor (e.g., 1kΩ) to drive the relay coil safely from the Arduino.
Relay Not Switching:
Contacts Not Conducting:
Excessive Heat:
Socket Connection Issues:
Q1: Can this relay switch DC loads?
A1: Yes, but ensure the DC load does not exceed the contact rating. For DC loads, derating may apply.
Q2: Is the relay suitable for outdoor use?
A2: The relay itself is not weatherproof. Use it in a protected enclosure for outdoor applications.
Q3: Can I use this relay with a 12V DC control signal?
A3: No, the coil is designed for 220V AC. Use a relay with a 12V DC coil or a driver circuit to interface with 12V signals.
Q4: How do I know if the relay is working?
A4: Listen for a clicking sound when the coil is energized. You can also measure continuity between the COM and NO/NC terminals.