The RELAY 1CH is a single-channel relay module designed to control high voltage or high current devices using a low voltage signal. It provides electrical isolation between the control circuit and the load, ensuring safety and reliability in various applications. This module is widely used in home automation, industrial control systems, and DIY electronics projects.
The RELAY 1CH module is built to handle a wide range of control and load requirements. Below are its key technical details:
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Trigger Voltage | 3.3V to 5V DC |
Maximum Load Voltage | 250V AC / 30V DC |
Maximum Load Current | 10A |
Relay Type | SPDT (Single Pole Double Throw) |
Isolation | Optocoupler-based electrical isolation |
Dimensions | ~50mm x 26mm x 18mm |
Pin Name | Description |
---|---|
VCC | Connect to the 5V DC power supply. Powers the relay module. |
GND | Connect to the ground of the power supply. |
IN | Control signal input. A HIGH signal activates the relay, and a LOW signal deactivates it. |
COM | Common terminal for the relay switch. |
NO | Normally Open terminal. Connect the load here if it should be OFF by default. |
NC | Normally Closed terminal. Connect the load here if it should be ON by default. |
Below is an example of how to control the RELAY 1CH 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 initially
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay ON (activates the load)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF (deactivates the load)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay OFF for 5 seconds
}
Relay Not Activating:
Load Not Switching:
Relay Stuck in One State:
Noise or Flickering in the Load:
Q1: Can I use the RELAY 1CH with a 3.3V microcontroller?
A1: Yes, the relay can be triggered with a 3.3V control signal, but ensure the VCC pin is powered with 5V.
Q2: Is the relay safe for switching high voltage AC loads?
A2: Yes, the relay is designed for high voltage AC loads up to 250V, but proper precautions must be taken to ensure safety.
Q3: Can I control multiple relays with one Arduino?
A3: Yes, you can control multiple relays by connecting their IN pins to different digital pins on the Arduino.
Q4: What happens if I connect both NO and NC terminals to a load?
A4: This is not recommended, as it can cause a short circuit or damage the relay. Only one terminal (NO or NC) should be used at a time.