

The RLYR998, manufactured by Reyax, is a relay component designed for use in electronic circuits to control high-power loads using low-power signals. It functions as an electrically operated switch, allowing users to open or close a circuit when a control signal is applied. This relay provides electrical isolation between the control circuit and the load circuit, ensuring safety and reliability in various applications.



![Image of [Circuit Design] RFID-Based Equipment Logger for DPWH : A project utilizing rlyr998 in a practical application](https://abacasstorageaccnt.blob.core.windows.net/cirkit/c81f4194-7010-43d8-91fe-f2eb970df771.png)



![Image of [Circuit Design] RFID-Based Equipment Logger for DPWH : A project utilizing rlyr998 in a practical application](https://abacasstorageaccnt.blob.core.windows.net/cirkit/c81f4194-7010-43d8-91fe-f2eb970df771.png)
The RLYR998 relay is designed to handle a wide range of applications with the following key specifications:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Coil Resistance | 70 Ω |
| Switching Voltage (Max) | 250V AC / 30V DC |
| Switching Current (Max) | 10A |
| Contact Configuration | SPDT (Single Pole Double Throw) |
| Contact Material | Silver Alloy |
| Insulation Resistance | ≥ 100 MΩ (at 500V DC) |
| Dielectric Strength | 1500V AC (between coil and contacts) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 19mm x 15mm x 15mm |
| Weight | 10g |
The RLYR998 relay has a standard 5-pin configuration. The table below describes each pin:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil+ | Positive terminal of the relay coil (connect to control signal or power source). |
| 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 circuit when the relay is inactive; closes when the relay is activated. |
| 5 | Normally Closed (NC) | Closed circuit when the relay is inactive; opens when the relay is activated. |
Coil+ pin to a control signal or power source (e.g., 5V DC) and the Coil- pin to ground. Ensure the control signal matches the relay's operating voltage.COM pin.NO pin if you want the load to be powered only when the relay is activated.NC pin if you want the load to be powered when the relay is inactive.Below is an example of how to control the RLYR998 relay using an Arduino UNO:
// Define the pin connected to the relay's Coil+ terminal
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Activate the relay (turn on the load)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay on for 5 seconds
// Deactivate the relay (turn off the load)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay off for 5 seconds
}
Note: Ensure the relay's Coil+ pin is connected to the Arduino's digital pin (e.g., pin 7), and the Coil- pin is connected to the Arduino's ground (GND). Use a transistor or relay driver circuit if the relay requires more current than the Arduino pin can supply.
Relay Not Activating:
Load Not Switching:
COM, NO, and NC pins. Ensure the load is properly connected and powered.Voltage Spikes Damaging the Circuit:
Coil+ and Coil- pins, with the cathode connected to Coil+.Relay Overheating:
Q: Can the RLYR998 be used with AC loads?
A: Yes, the RLYR998 can switch AC loads up to 250V, provided the current does not exceed 10A.
Q: Is the relay suitable for PWM control?
A: No, relays like the RLYR998 are not designed for high-speed switching. Use a solid-state relay or transistor for PWM applications.
Q: How do I know if the relay is activated?
A: You can use an LED in the control circuit to indicate when the relay is activated, or check the state of the load circuit (e.g., whether the load is powered).
Q: Can I use the RLYR998 with a 3.3V control signal?
A: No, the RLYR998 requires a 5V control signal. Use a level shifter or transistor to interface with 3.3V systems.