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

How to Use Relay 5v 1 channel: Examples, Pinouts, and Specs

Image of Relay 5v 1 channel
Cirkit Designer LogoDesign with Relay 5v 1 channel in Cirkit Designer

Introduction

The Relay 5V 1 Channel module is an electronic component designed to control high-voltage devices using low-voltage signals. It operates at 5 volts and features a single channel for switching, making it ideal for simple on/off control applications. This module is commonly used in home automation, industrial control systems, and DIY electronics projects to safely interface low-power microcontrollers with high-power devices such as lights, fans, or motors.

Explore Projects Built with Relay 5v 1 channel

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
ESP32 Wi-Fi Controlled Relay Switch
Image of nyoba: A project utilizing Relay 5v 1 channel in a practical application
This circuit uses an ESP32 microcontroller to control a 1-channel 5V relay. The ESP32 toggles the relay on and off every 5 seconds, allowing it to control an external device connected to the relay's output.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered IR Sensor Controlled Relay Module
Image of New: A project utilizing Relay 5v 1 channel 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 4-Channel Relay Control with LED Indicators
Image of RELLAY BOARD TEST: A project utilizing Relay 5v 1 channel in a practical application
This circuit consists of a 5V battery powering a 4-channel relay module, which controls four LEDs (red, yellow, green, and blue) through individual resistors. Each relay channel is activated by a corresponding SPST toggle switch, allowing manual control of the LEDs.
Cirkit Designer LogoOpen Project in Cirkit Designer
DC Motor Control Using 1-Channel Relay and DC Power Source
Image of h: A project utilizing Relay 5v 1 channel 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

Explore Projects Built with Relay 5v 1 channel

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 nyoba: A project utilizing Relay 5v 1 channel in a practical application
ESP32 Wi-Fi Controlled Relay Switch
This circuit uses an ESP32 microcontroller to control a 1-channel 5V relay. The ESP32 toggles the relay on and off every 5 seconds, allowing it to control an external device connected to the relay's output.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of New: A project utilizing Relay 5v 1 channel 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 RELLAY BOARD TEST: A project utilizing Relay 5v 1 channel in a practical application
Battery-Powered 4-Channel Relay Control with LED Indicators
This circuit consists of a 5V battery powering a 4-channel relay module, which controls four LEDs (red, yellow, green, and blue) through individual resistors. Each relay channel is activated by a corresponding SPST toggle switch, allowing manual control of the LEDs.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of h: A project utilizing Relay 5v 1 channel 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

Common Applications

  • Home automation (e.g., controlling lights or appliances)
  • Industrial equipment control
  • DIY electronics projects
  • Robotics and IoT systems
  • Motor and pump control

Technical Specifications

Below are the key technical details and pin configuration for the Relay 5V 1 Channel module:

Key Technical Details

Parameter Specification
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 Method Optocoupler
Dimensions ~50mm x 26mm x 18mm
Indicator LED Yes (indicates relay status)

Pin Configuration

Pin Name Description
VCC Connect to the 5V power supply (positive terminal).
GND Connect to the ground (negative terminal) of the power supply.
IN Signal pin to control the relay (HIGH to activate, LOW to deactivate).
COM Common terminal for the relay switch.
NO Normally Open terminal (connected to COM when the relay is activated).
NC Normally Closed terminal (connected to COM when the relay is deactivated).

Usage Instructions

How to Use the Relay 5V 1 Channel 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 device you want to control (e.g., a light bulb) to the relay's COM and NO terminals if you want the device to turn on when the relay is activated.
    • Alternatively, use the COM and NC terminals if you want the device to turn off when the relay is activated.
  4. Signal Activation: Send a HIGH signal (5V) to the IN pin to activate the relay and switch the connected load.

Important Considerations

  • Isolation: The relay module uses an optocoupler for isolation, ensuring safe operation when controlling high-voltage devices.
  • Power Supply: Ensure the power supply can provide sufficient current for the relay coil (typically ~70mA).
  • Flyback Diode: The module includes a built-in flyback diode to protect against voltage spikes when the relay coil is de-energized.
  • Load Ratings: Do not exceed the maximum voltage and current ratings of the relay (250V AC / 30V DC, 10A).

Example: Connecting to an Arduino UNO

Below is an example of how to use the Relay 5V 1 Channel module with an Arduino UNO to control a light bulb.

Circuit Connections

  • Connect the relay module's VCC pin to the Arduino's 5V pin.
  • Connect the relay module's GND pin to the Arduino's GND pin.
  • Connect the relay module's IN pin to Arduino digital pin 7.
  • Connect the light bulb to the relay's COM and NO terminals.
  • Connect the other terminal of the light bulb to the AC power supply.

Arduino Code

// Define the relay control pin
const int relayPin = 7;

void setup() {
  pinMode(relayPin, OUTPUT); // Set the relay pin as an output
  digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}

void loop() {
  digitalWrite(relayPin, HIGH); // Turn the relay on (light bulb ON)
  delay(5000); // Keep the relay on for 5 seconds
  digitalWrite(relayPin, LOW); // Turn the relay off (light bulb OFF)
  delay(5000); // Keep the relay off for 5 seconds
}

Best Practices

  • Always double-check your wiring before powering the circuit.
  • Use proper insulation and safety precautions when working with high-voltage devices.
  • Avoid switching inductive loads (e.g., motors) without additional protection circuits like snubber networks.

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
Relay does not activate Insufficient control signal voltage Ensure the IN pin receives 3.3V to 5V.
Relay activates but load does not Incorrect load wiring Verify connections to COM, NO, and NC.
Module overheats Exceeding load current rating Ensure the load does not exceed 10A.
Indicator LED does not light up No power to the module Check VCC and GND connections.

FAQs

  1. Can I use this relay with a 3.3V microcontroller?

    • Yes, the relay can be triggered with a 3.3V signal, but ensure the power supply to the module is 5V.
  2. Is the relay safe for switching AC devices?

    • Yes, the relay is designed for AC loads up to 250V, but always follow safety precautions when working with high voltage.
  3. Can I control multiple relays with one Arduino?

    • Yes, you can control multiple relays by connecting their IN pins to different digital pins on the Arduino.
  4. What happens if I exceed the relay's load ratings?

    • Exceeding the load ratings can damage the relay and pose a safety hazard. Always stay within the specified limits.

By following this documentation, you can safely and effectively use the Relay 5V 1 Channel module in your projects.