

The 5V One Channel Relay with OPTO Isolation is a versatile and reliable module designed for controlling high-voltage devices using low-voltage signals. It features optical isolation, which enhances safety by electrically isolating the control circuit from the high-voltage load. This relay module can be triggered by either a high-level or low-level signal, making it compatible with a wide range of microcontrollers and control systems.








The module has a total of 6 pins and 3 terminal blocks. Below is the detailed pinout:
| Pin Name | Description |
|---|---|
| VCC | Connect to 5V DC power supply. |
| GND | Connect to ground. |
| IN | Control signal input. Can be triggered by high-level (H) or low-level (L). |
| Jumper Name | Description |
|---|---|
| H/L | Selects the trigger mode: High-level (H) or Low-level (L). |
| Terminal Name | Description |
|---|---|
| COM | Common terminal. Connect to the power source or load. |
| NO | Normally Open terminal. Connect to the load for activation when triggered. |
| NC | Normally Closed terminal. Connect to the load for activation when idle. |
Below is an example of how to connect and control the relay module using an Arduino UNO:
// Define the relay control pin
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(1000); // Keep the relay on for 1 second
// Turn the relay off
digitalWrite(relayPin, LOW);
delay(1000); // Keep the relay off for 1 second
}
relayPin variable if using a different digital pin.Relay Not Activating:
Erratic Behavior:
Load Not Switching:
Indicator LED Not Lighting:
Q: Can I use this relay module with a 3.3V microcontroller?
A: Yes, but ensure the trigger voltage matches the selected mode (H or L). For 3.3V systems, use the low-level trigger mode.
Q: Is it safe to control high-power devices with this module?
A: Yes, as long as the load does not exceed the relay's maximum ratings and proper isolation is maintained.
Q: Can I use this module to control DC motors?
A: Yes, but consider adding a flyback diode across the motor terminals to protect the relay from voltage spikes.
Q: What happens if I exceed the relay's load ratings?
A: Exceeding the load ratings can damage the relay and pose safety risks. Always stay within the specified limits.
This documentation provides a comprehensive guide to using the 5V One Channel Relay with OPTO Isolation effectively and safely.