

The Signal-Relais AZ832-2C-5DE by Zettler is a compact, high-performance electromagnetic relay designed for low-power signal switching applications. It operates on a 5 V DC coil voltage and features a double changeover (2 CO) contact configuration, making it suitable for a wide range of applications requiring reliable signal control.








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 can be controlled using an Arduino UNO. Below is an example circuit and code to toggle the relay:
// Define the relay 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 Properly:
Noise or Chattering:
Arduino Cannot Drive the Relay:
Q: Can I use this relay for AC loads?
A: Yes, the relay supports up to 3 A at 250 V AC. Ensure proper isolation and safety precautions.
Q: What is the maximum switching frequency?
A: The relay can handle up to 20 operations per second for signal-level loads.
Q: Is the relay polarity-sensitive?
A: Yes, the coil terminals (pins 1 and 2) must be connected with the correct polarity.
Q: Can I use this relay in high-temperature environments?
A: Yes, the relay operates reliably within a temperature range of -40°C to +85°C.