

The RELAY 5 PIN, manufactured by DEWA with part ID AUDI VARIASI, is an electromechanical switch designed to control high-power circuits using low-power signals. This component provides electrical isolation between the control circuit and the load circuit, ensuring safe and efficient operation. It is widely used in automotive, industrial, and home automation applications.








The following table outlines the key technical details of the RELAY 5 PIN:
| Parameter | Value |
|---|---|
| Manufacturer | DEWA |
| Part ID | AUDI VARIASI |
| Coil Voltage | 12V DC |
| Coil Resistance | 160 Ω |
| Contact Rating | 30A at 250V AC / 30V DC |
| Contact Configuration | SPDT (Single Pole Double Throw) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 28mm x 28mm x 25mm |
| Weight | 30g |
The RELAY 5 PIN has the following pinout:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil (+) | Positive terminal of the relay coil. Connect to the control signal (e.g., 12V). |
| 2 | Coil (-) | Negative terminal of the relay coil. Connect to ground. |
| 3 | Common (COM) | Common terminal for the load circuit. |
| 4 | Normally Open (NO) | Open when the relay is inactive; closes when the relay is activated. |
| 5 | Normally Closed (NC) | Closed when the relay is inactive; opens when the relay is activated. |
Connect the Coil Terminals:
Connect the Load Circuit:
Activate the Relay:
Below is an example of how to control the RELAY 5 PIN using an Arduino UNO:
// Define the pin connected to the relay's coil
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is off at startup
digitalWrite(relayPin, LOW);
}
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:
Relay Not Activating:
Load Not Switching:
Voltage Spikes Damaging the Circuit:
Relay Overheating:
Q1: Can I use the RELAY 5 PIN with a 5V control signal?
A1: No, the RELAY 5 PIN requires a 12V DC control signal. Use a transistor or relay driver circuit to step up the control signal voltage.
Q2: Is the RELAY 5 PIN suitable for AC loads?
A2: Yes, the relay can handle AC loads up to 30A at 250V AC.
Q3: How do I know if the relay is activated?
A3: You can hear a clicking sound when the relay switches. Additionally, some relays include an LED indicator to show activation status.
Q4: Can I use the RELAY 5 PIN for switching low-power signals?
A4: While possible, it is not recommended. For low-power signals, consider using a solid-state relay or a smaller mechanical relay.