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

How to Use 1 Channel Relay 5V: Examples, Pinouts, and Specs

Image of 1 Channel Relay 5V
Cirkit Designer LogoDesign with 1 Channel Relay 5V in Cirkit Designer

Introduction

The 1 Channel Relay 5V is an electromechanical switch that allows a low voltage control signal (e.g., from a microcontroller) to control a higher voltage circuit. This module is widely used in automation, home appliances, and industrial control systems. It is ideal for switching devices such as lights, fans, motors, or other high-power loads while isolating the control circuit from the high-power circuit.

Explore Projects Built with 1 Channel Relay 5V

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered 4-Channel Relay Control with LED Indicators
Image of RELLAY BOARD TEST: A project utilizing 1 Channel Relay 5V 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
ESP32 Wi-Fi Controlled Relay Switch
Image of nyoba: A project utilizing 1 Channel Relay 5V 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 1 Channel Relay 5V 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
ESP32 Wi-Fi Controlled Dual Relay Module
Image of esp: A project utilizing 1 Channel Relay 5V in a practical application
This circuit features an ESP32 microcontroller connected to a two-channel 5V relay module. The ESP32 controls the relay channels via its GPIO pins D23 and D22, allowing it to switch external devices on and off. The relay module is powered by the 3.3V and GND pins of the ESP32.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with 1 Channel Relay 5V

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 RELLAY BOARD TEST: A project utilizing 1 Channel Relay 5V 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 nyoba: A project utilizing 1 Channel Relay 5V 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 1 Channel Relay 5V 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 esp: A project utilizing 1 Channel Relay 5V in a practical application
ESP32 Wi-Fi Controlled Dual Relay Module
This circuit features an ESP32 microcontroller connected to a two-channel 5V relay module. The ESP32 controls the relay channels via its GPIO pins D23 and D22, allowing it to switch external devices on and off. The relay module is powered by the 3.3V and GND pins of the ESP32.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications

  • Home automation systems (e.g., controlling lights or appliances)
  • Industrial control systems
  • Robotics and motor control
  • IoT (Internet of Things) projects
  • Safety systems requiring electrical isolation

Technical Specifications

Key Technical Details

  • Operating Voltage: 5V DC
  • Trigger Voltage: 3.3V to 5V (compatible with most microcontrollers)
  • Relay Type: SPDT (Single Pole Double Throw)
  • Maximum Load:
    • AC: 250V at 10A
    • DC: 30V at 10A
  • Isolation: Optocoupler for electrical isolation
  • Indicator: LED to show relay status
  • Dimensions: ~50mm x 26mm x 18mm

Pin Configuration and Descriptions

Input Pins (Control Side)

Pin Name Description
VCC Connect to 5V power supply (positive terminal).
GND Connect to ground (negative terminal).
IN Control signal input. A HIGH signal activates the relay, and a LOW signal deactivates it.

Output Pins (Load Side)

Pin Name Description
COM Common terminal for the load circuit.
NO Normally Open terminal. Connect the load here if you want it to be OFF by default.
NC Normally Closed terminal. Connect the load here if you want it to be ON by default.

Usage Instructions

How to Use the 1 Channel Relay 5V in a Circuit

  1. Power the Relay Module: Connect the VCC pin to a 5V power supply and the GND pin to ground.
  2. Connect the Control Signal: Connect the IN pin to a digital output pin of your microcontroller (e.g., Arduino).
  3. Connect the Load:
    • For a device that should be OFF by default, connect it between the COM and NO terminals.
    • For a device that should be ON by default, connect it between the COM and NC terminals.
  4. Control the Relay:
    • Send a HIGH signal (e.g., 5V) to the IN pin to activate the relay and switch the load.
    • Send a LOW signal (e.g., 0V) to deactivate the relay and return it to its default state.

Important Considerations

  • Electrical Isolation: The relay module uses an optocoupler to isolate the control circuit from the high-power circuit. This ensures safety and prevents damage to the microcontroller.
  • Power Supply: Ensure the relay module is powered with a stable 5V DC supply.
  • Load Ratings: Do not exceed the maximum load ratings (250V AC at 10A or 30V DC at 10A) to avoid damage or hazards.
  • Flyback Diode: If controlling an inductive load (e.g., a motor), use a flyback diode across the load to suppress voltage spikes.

Example: Connecting to an Arduino UNO

Below is an example of how to control the relay module using an Arduino UNO:

// Define the pin connected to the relay module
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 (activates the connected load)
  digitalWrite(relayPin, HIGH);
  delay(5000); // Keep the relay ON for 5 seconds

  // Turn the relay OFF (deactivates the connected load)
  digitalWrite(relayPin, LOW);
  delay(5000); // Keep the relay OFF for 5 seconds
}

Notes:

  • Replace relayPin with the actual pin number connected to the IN pin of the relay module.
  • Ensure the Arduino is powered properly and shares a common ground with the relay module.

Troubleshooting and FAQs

Common Issues and Solutions

  1. Relay Not Activating:

    • Cause: Insufficient voltage or current to the relay module.
    • Solution: Ensure the VCC pin is connected to a stable 5V power supply and the IN pin receives a proper HIGH signal.
  2. Load Not Switching:

    • Cause: Incorrect wiring of the load circuit.
    • Solution: Verify the connections between the COM, NO, and NC terminals. Ensure the load is within the relay's rated capacity.
  3. Microcontroller Resetting When Relay Activates:

    • Cause: Voltage spikes or insufficient power supply.
    • Solution: Use a separate power supply for the relay module or add a capacitor to stabilize the power supply.
  4. LED Indicator Not Lighting Up:

    • Cause: Faulty relay module or incorrect wiring.
    • Solution: Check the wiring and ensure the module is receiving power. Replace the module if necessary.

FAQs

Q1: Can I use the relay module with a 3.3V microcontroller?
A1: Yes, the relay module can be triggered with a 3.3V control signal, but ensure the VCC pin is still powered with 5V.

Q2: Is the relay module safe for high-power loads?
A2: Yes, as long as the load does not exceed the rated capacity (250V AC at 10A or 30V DC at 10A). Always follow safety precautions when working with high voltages.

Q3: Can I control multiple relays with one microcontroller?
A3: Yes, you can control multiple relay modules by connecting each IN pin to a separate digital output pin on the microcontroller.

Q4: Why is the relay clicking but not switching the load?
A4: This could be due to incorrect wiring on the load side. Double-check the connections to the COM, NO, and NC terminals.

By following this documentation, you can effectively use the 1 Channel Relay 5V module in your projects for safe and reliable control of high-power devices.