

The Signal-Relais AZ832-2C-5DE by Zettler is a compact, high-performance electromechanical relay designed for low-power signal switching applications. It operates on a 5 V DC control signal and can handle currents of up to 3 A. This relay features 2 changeover (CO) contacts, making it suitable for versatile switching configurations. Its small size and reliable performance make it ideal for applications in telecommunications, industrial control systems, home automation, and more.








| Parameter | Value |
|---|---|
| Manufacturer | Zettler |
| Part Number | AZ832-2C-5DE |
| Coil Voltage | 5 V DC |
| Contact Configuration | 2 Changeover (2 CO) |
| Maximum Switching Current | 3 A |
| Maximum Switching Voltage | 250 V AC / 30 V DC |
| Coil Resistance | 178 Ω ±10% |
| Power Consumption | Approximately 140 mW |
| Dielectric Strength | 1000 V AC (coil to contacts) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 20.2 mm x 10.2 mm x 10.6 mm |
The AZ832-2C-5DE relay has a total of 8 pins. The pinout is as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (Positive) |
| 2 | Coil Terminal 2 (Negative) |
| 3 | Common Contact 1 (COM1) |
| 4 | Normally Closed Contact 1 (NC1) |
| 5 | Normally Open Contact 1 (NO1) |
| 6 | Common Contact 2 (COM2) |
| 7 | Normally Closed Contact 2 (NC2) |
| 8 | Normally Open Contact 2 (NO2) |
The AZ832-2C-5DE relay can be controlled using an Arduino UNO. Below is an example circuit and code to toggle the relay:
// Define the relay control pin
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(1000); // Keep the relay ON for 1 second
// Turn the relay OFF
digitalWrite(relayPin, LOW);
delay(1000); // Keep the relay OFF for 1 second
}
Relay Not Switching
Contacts Not Conducting
Voltage Spikes Damaging the Circuit
Relay Heating Up
Q1: Can this relay switch AC loads?
A1: Yes, the relay can switch AC loads up to 250 V, provided the current does not exceed 3 A.
Q2: Can I use this relay with a 3.3 V microcontroller?
A2: Yes, but you will need a transistor or relay driver circuit to step up the control voltage to 5 V.
Q3: What is the lifespan of this relay?
A3: The relay has a mechanical lifespan of approximately 10 million operations and an electrical lifespan of around 100,000 operations under rated load conditions.
Q4: Is the relay polarity-sensitive?
A4: The coil terminals (pins 1 and 2) are polarity-sensitive. Ensure correct polarity when connecting the power supply.