The RELAY 1CH is a single-channel relay module designed to control high-power devices using a low-power 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 specifications:
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 power supply. |
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. |
The RELAY 1CH module is simple to use and can be integrated into various circuits. Below are the steps and best practices for using the module:
Below is an example of how to control the RELAY 1CH module using an Arduino UNO:
// RELAY 1CH Example Code
// This code toggles the relay ON and OFF every 2 seconds.
#define RELAY_PIN 7 // Define the pin connected to the relay module
void setup() {
pinMode(RELAY_PIN, OUTPUT); // Set the relay pin as an output
digitalWrite(RELAY_PIN, LOW); // Ensure the relay is OFF initially
}
void loop() {
digitalWrite(RELAY_PIN, HIGH); // Turn the relay ON
delay(2000); // Wait for 2 seconds
digitalWrite(RELAY_PIN, LOW); // Turn the relay OFF
delay(2000); // Wait for 2 seconds
}
Relay Not Activating:
Load Not Switching:
Relay Stuck in One State:
Q: Can I use the RELAY 1CH module with a 3.3V microcontroller?
A: Yes, the module can be triggered with a 3.3V control signal, but ensure the power supply to the module is 5V.
Q: Is the relay safe for switching high-power devices?
A: Yes, the relay is designed for high-power devices up to 250V AC or 30V DC at 10A. However, always follow safety guidelines and ensure proper isolation.
Q: Can I control multiple relays with one microcontroller?
A: Yes, you can control multiple relays by connecting each relay's IN pin to a separate GPIO pin on the microcontroller.
By following this documentation, you can effectively use the RELAY 1CH module in your projects while ensuring safety and reliability.