

The Jtron 1-Channel Optoisolated Relay Module is a versatile electronic component designed to control high-voltage devices using low-voltage signals. It features optoisolation, which ensures electrical isolation between the control circuit and the high-voltage load, protecting sensitive components from voltage spikes and interference. This module is widely used in home automation, industrial control systems, and DIY electronics projects.








Below are the key technical details of the Jtron 1-Channel Optoisolated Relay Module:
| Parameter | Specification |
|---|---|
| Operating Voltage | 5V DC |
| Trigger Voltage | 3.3V to 5V DC |
| Relay Type | SPDT (Single Pole Double Throw) |
| Maximum Load Voltage | 250V AC / 30V DC |
| Maximum Load Current | 10A |
| Optoisolation | Yes |
| Dimensions | 50mm x 26mm x 18.5mm |
| Mounting Holes | 2 x M3 holes for secure mounting |
The module has a total of 6 pins and terminals, as described below:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Connect to 5V DC power supply |
| 2 | GND | Connect to ground of the power supply |
| 3 | IN | Control signal input (3.3V to 5V logic level) |
| Terminal | Name | Description |
|---|---|---|
| 1 | COM | Common terminal for the relay switch |
| 2 | NO | Normally Open terminal (connected when relay is active) |
| 3 | NC | Normally Closed terminal (connected when relay is inactive) |
Below is an example of how to control the relay module using an Arduino UNO:
// Example: Controlling Jtron 1-Channel Relay Module with Arduino UNO
// Define the pin connected to the relay module's IN 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 (activates the connected device)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay on for 5 seconds
// Turn the relay OFF (deactivates the connected device)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay off for 5 seconds
}
relayPin with the actual pin number connected to the IN pin of the relay module.Relay Not Activating:
High Voltage Device Not Turning On/Off:
Interference or Noise in the Circuit:
Arduino Resets When Relay Activates:
Q: Can I use this module with a 3.3V microcontroller?
A: Yes, the module can be triggered with a 3.3V control signal, but ensure the VCC pin is powered with 5V DC.
Q: Is the relay module suitable for DC loads?
A: Yes, the relay can handle DC loads up to 30V and 10A.
Q: Can I control multiple relays with one Arduino?
A: Yes, you can control multiple relay modules by connecting each IN pin to a separate digital output pin on the Arduino.
Q: Does the module require an external flyback diode?
A: The module typically includes a built-in flyback diode, but you can add an external one for additional protection if needed.
By following this documentation, you can safely and effectively use the Jtron 1-Channel Optoisolated Relay Module in your projects.