The Rele 220 con Zocalo (Manufacturer: Schneider, Part ID: 0007) is a 220V relay with an integrated socket, designed to control high-voltage circuits by switching them on or off using a low-voltage signal. This component is widely used in automation, industrial control systems, and home automation projects. Its socket simplifies installation and replacement, making it a reliable and user-friendly solution for various applications.
Parameter | Value |
---|---|
Manufacturer | Schneider |
Part ID | 0007 |
Operating Voltage (Coil) | 220V AC |
Switching Voltage | Up to 250V AC / 30V DC |
Maximum Switching Current | 10A |
Contact Configuration | SPDT (Single Pole Double Throw) |
Socket Type | DIN rail mountable |
Operating Temperature | -40°C to +70°C |
Insulation Resistance | ≥ 100 MΩ at 500V DC |
Mechanical Life | 10 million operations |
Electrical Life | 100,000 operations (at full load) |
The relay socket has the following pin layout:
Pin Number | Description |
---|---|
1 | Coil Terminal 1 (AC Live) |
2 | Coil Terminal 2 (AC Neutral) |
3 | Common (COM) |
4 | Normally Open (NO) |
5 | Normally Closed (NC) |
Note: Pins 1 and 2 are used to energize the relay coil, while pins 3, 4, and 5 are used for switching the load.
Wiring the Coil:
Wiring the Load:
Mounting:
Testing:
The Rele 220 con Zocalo can be controlled using an Arduino UNO by adding an intermediate transistor circuit to drive the 220V AC coil. Below is an example circuit and code:
// Define the pin connected to the transistor base
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Turn the relay ON
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay OFF for 5 seconds
}
Note: Ensure proper isolation between the Arduino and the high-voltage side of the circuit to avoid damage or safety hazards.
Issue | Possible Cause | Solution |
---|---|---|
Relay does not switch | Coil not receiving power | Check the coil connections (pins 1, 2) |
Load not turning on/off | Incorrect wiring of load terminals | Verify connections to COM, NO, and NC |
Relay buzzing or chattering | Insufficient coil voltage | Ensure 220V AC is supplied to the coil |
Overheating of relay | Exceeding current rating | Reduce load current or use a higher-rated relay |
Arduino not controlling the relay | Missing transistor or incorrect wiring | Add a transistor circuit to drive the relay |
Can this relay be used with DC loads?
Is the relay socket replaceable?
Can I use this relay for motor control?
What safety precautions should I take?
By following this documentation, you can effectively use the Rele 220 con Zocalo in your projects while ensuring safety and reliability.