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 is an electromechanical switch that operates at a 5V input signal, enabling the control of high-voltage devices using a low-voltage signal. This relay module is widely used in automation, home appliances, and DIY electronics projects. It is particularly suitable for applications requiring simple on/off control, such as controlling lights, fans, or other high-power devices.

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 and Use Cases

  • Home automation systems (e.g., controlling lights or appliances)
  • Industrial control systems
  • DIY electronics projects
  • Robotics and IoT applications
  • Motor control and switching high-power loads

Technical Specifications

The following table outlines the key technical details of the Relay 5V 1 Channel module:

Parameter Specification
Operating Voltage 5V DC
Trigger Voltage 3.3V to 5V DC
Maximum Load Voltage 250V AC / 30V DC
Maximum Load Current 10A
Channels 1
Relay Type SPDT (Single Pole Double Throw)
Isolation Optocoupler isolation for safety
Dimensions ~50mm x 26mm x 18mm
Indicator LED Yes (indicates relay activation)

Pin Configuration and Descriptions

The Relay 5V 1 Channel module has the following pin configuration:

Input Pins (Low Voltage Side)

Pin Name Description
1 VCC Connect to 5V DC power supply.
2 GND Connect to ground.
3 IN Control signal input. A HIGH signal activates the relay, and a LOW signal deactivates it.

Output Terminals (High Voltage Side)

Terminal Name Description
1 COM Common terminal. Connect to the load or power source.
2 NO Normally Open terminal. Connect to the load for default OFF state.
3 NC Normally Closed terminal. Connect to the load for default ON state.

Usage Instructions

How to Use the Relay in a Circuit

  1. Power the Relay Module:

    • Connect the VCC pin to a 5V DC power supply.
    • Connect the GND pin to the ground of your circuit.
  2. Control Signal:

    • Connect the IN pin to a microcontroller (e.g., Arduino UNO) or any other control circuit.
    • A HIGH signal (3.3V to 5V) on the IN pin will activate the relay, switching the connected load.
  3. Connect the Load:

    • Identify whether you want the load to be normally ON or OFF.
    • For a normally OFF state, connect the load between COM and NO.
    • For a normally ON state, connect the load between COM and NC.
  4. Safety Precautions:

    • Ensure the load voltage and current do not exceed the relay's maximum ratings (250V AC / 30V DC, 10A).
    • Use proper insulation and avoid touching the high-voltage side while the relay is powered.

Example: Connecting to an Arduino UNO

Below is an example of how to control the Relay 5V 1 Channel using an Arduino UNO:

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 load (e.g., a light bulb) to the relay's COM and NO terminals.

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 at startup
  digitalWrite(relayPin, LOW);
}

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

Important Considerations and Best Practices

  • Always use an optocoupler-isolated relay module for added safety when working with high voltages.
  • Avoid switching loads that exceed the relay's maximum ratings to prevent damage.
  • Use a flyback diode across inductive loads (e.g., motors) to protect the relay from voltage spikes.
  • Ensure proper ventilation and heat dissipation when switching high-power loads.

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 ON/OFF State:

    • Cause: Faulty relay or excessive load current.
    • Solution: Check the load current and replace the relay if necessary.
  4. Indicator LED Not Lighting Up:

    • Cause: No power to the relay module.
    • Solution: Ensure the VCC and GND pins are properly connected to a 5V power source.

FAQs

  • Q: Can I use this relay with a 3.3V microcontroller?
    A: Yes, the relay can be triggered with a 3.3V control signal, but ensure the VCC pin is powered with 5V.

  • Q: Is the relay safe for switching AC loads?
    A: Yes, the relay is designed for AC loads up to 250V, but always follow safety precautions when working with high voltages.

  • Q: Can I control multiple relays with one Arduino?
    A: Yes, you can control multiple relays by connecting each relay's IN pin to a separate digital pin on the Arduino.

  • Q: What happens if I exceed the relay's maximum ratings?
    A: Exceeding the ratings can damage the relay and pose safety risks. Always stay within the specified limits.

This concludes the documentation for the Relay 5V 1 Channel. Follow the guidelines and best practices to ensure safe and effective operation!