Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use RELAY 1CH: Examples, Pinouts, and Specs

Image of RELAY 1CH
Cirkit Designer LogoDesign with RELAY 1CH in Cirkit Designer

Introduction

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.

Explore Projects Built with RELAY 1CH

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
DC Motor Control Using 1-Channel Relay and DC Power Source
Image of h: A project utilizing RELAY 1CH in a practical application
This circuit controls a DC motor using a 1-channel relay. The relay is powered by a DC power source, and it switches the motor on and off by connecting or disconnecting the motor's power supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered IR Sensor Controlled Relay Module
Image of New: A project utilizing RELAY 1CH in a practical application
This circuit uses an IR sensor to control a 1 Channel 5V Relay Module, which is powered by a 9V battery. The IR sensor detects an object and sends a signal to the relay module to switch its state, enabling or disabling the connected load.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered IR Sensor Controlled Motor with Relay
Image of Ir sensor car: A project utilizing RELAY 1CH in a practical application
This circuit uses an IR sensor to control a motor via a 1-channel relay. The IR sensor detects an object and sends a signal to the relay, which then switches the motor on or off based on the sensor input. The entire system is powered by two 18650 Li-Ion batteries.
Cirkit Designer LogoOpen Project in Cirkit Designer
WeMos D1 R2 Controlled Relay Switching Circuit for AC Bulb and USB Charger
Image of Hand Gesture Light: A project utilizing RELAY 1CH in a practical application
This circuit uses a WeMos D1 R2 microcontroller to control a 5V 2-relay module, which in turn controls the power to an AC bulb and a cellphone charger. The microcontroller also interfaces with a line tracking sensor, which likely provides input to control the relay states. The AC bulb and cellphone charger are powered by an AC wire connection, with the relay acting as a switch for the bulb.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with RELAY 1CH

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of h: A project utilizing RELAY 1CH in a practical application
DC Motor Control Using 1-Channel Relay and DC Power Source
This circuit controls a DC motor using a 1-channel relay. The relay is powered by a DC power source, and it switches the motor on and off by connecting or disconnecting the motor's power supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of New: A project utilizing RELAY 1CH in a practical application
Battery-Powered IR Sensor Controlled Relay Module
This circuit uses an IR sensor to control a 1 Channel 5V Relay Module, which is powered by a 9V battery. The IR sensor detects an object and sends a signal to the relay module to switch its state, enabling or disabling the connected load.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Ir sensor car: A project utilizing RELAY 1CH in a practical application
Battery-Powered IR Sensor Controlled Motor with Relay
This circuit uses an IR sensor to control a motor via a 1-channel relay. The IR sensor detects an object and sends a signal to the relay, which then switches the motor on or off based on the sensor input. The entire system is powered by two 18650 Li-Ion batteries.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Hand Gesture Light: A project utilizing RELAY 1CH in a practical application
WeMos D1 R2 Controlled Relay Switching Circuit for AC Bulb and USB Charger
This circuit uses a WeMos D1 R2 microcontroller to control a 5V 2-relay module, which in turn controls the power to an AC bulb and a cellphone charger. The microcontroller also interfaces with a line tracking sensor, which likely provides input to control the relay states. The AC bulb and cellphone charger are powered by an AC wire connection, with the relay acting as a switch for the bulb.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Home automation (e.g., controlling lights, fans, or appliances)
  • Industrial equipment control
  • Motor control systems
  • IoT projects for remote device management
  • DIY projects requiring high voltage switching

Technical Specifications

The RELAY 1CH module is built to handle a wide range of control and load requirements. Below are its key technical details:

General 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 Configuration and Descriptions

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.

Usage Instructions

How to Use the RELAY 1CH in a Circuit

  1. Power the Module: Connect the VCC pin to a 5V DC power source and the GND pin to the ground.
  2. Control Signal: Connect the IN pin to a microcontroller (e.g., Arduino UNO) or any other control circuit capable of providing a 3.3V to 5V signal.
  3. Load Connection:
    • Connect the load's live wire to the COM terminal.
    • Depending on the desired default state of the load:
      • Use the NO terminal if the load should be OFF when the relay is inactive.
      • Use the NC terminal if the load should be ON when the relay is inactive.
  4. Activate the Relay: Send a HIGH signal to the IN pin to activate the relay and switch the load.

Important Considerations and Best Practices

  • Electrical Isolation: Ensure proper isolation between the control circuit and the high voltage load to prevent damage or hazards.
  • Power Ratings: Do not exceed the relay's maximum voltage and current ratings (250V AC / 30V DC, 10A).
  • Flyback Diode: If controlling an inductive load (e.g., a motor), use a flyback diode across the load to protect the relay from voltage spikes.
  • Secure Connections: Ensure all connections are secure to avoid loose wires, which can cause malfunction or hazards.

Example: Connecting RELAY 1CH to an Arduino UNO

Below is an example of how to control the RELAY 1CH using an Arduino UNO:

Circuit Diagram

  • Connect the VCC pin of the relay module to the 5V pin on the Arduino.
  • Connect the GND pin of the relay module to the GND pin on the Arduino.
  • Connect the IN pin of the relay module to digital pin 7 on the Arduino.
  • Connect the load (e.g., a light bulb) to the COM and NO terminals of the relay.

Arduino Code

// 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
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. Relay Not Activating:

    • Cause: Insufficient control signal voltage.
    • Solution: Ensure the IN pin receives a signal between 3.3V and 5V.
  2. Load Not Switching:

    • Cause: Incorrect wiring of the load to the relay terminals.
    • Solution: Verify the load is connected to the correct terminals (COM, NO, or NC).
  3. Relay Stuck in One State:

    • Cause: Exceeding the relay's voltage or current ratings.
    • Solution: Check the load's specifications and ensure they are within the relay's limits.
  4. Noise or Flickering in the Load:

    • Cause: Electrical noise or loose connections.
    • Solution: Use proper decoupling capacitors and ensure all connections are secure.

FAQs

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.