Stufin
Home Quick Cart Profile

5V 1 Channel made in INDIA - GL Make

Buy Now on Stufin

Component Name

5V 1 Channel Relay Module (Made in India - GL Make)

Description

The 5V 1 Channel Relay Module is a widely used Internet of Things (IoT) component designed to control high-power devices using a low-power signal. This module is manufactured in India by GL Make, a reputable electronics manufacturing company. It is a single-channel relay module, meaning it can control one device at a time.

Functionality

The primary function of this relay module is to act as a switch that can be controlled electronically. It allows a low-voltage signal (typically 5V) from a microcontroller or other electronic device to switch a higher-voltage circuit (up to 250V AC or 30V DC) on and off. This enables the control of devices that require more power than a microcontroller can provide, such as lights, motors, and pumps.

Key Features

  • Voltage Rating:

Input Voltage

5V DC

Output Voltage

250V AC or 30V DC

  • Channel:

Single-channel relay module, controlling one device at a time

  • Relay Type:

Electromagnetic relay with a high-switching capacity

  • Operating Mode:

Normally Open (NO) and Normally Closed (NC) contacts available

  • Interface:

3-pin screw terminal for connecting the load (device to be controlled)

3-pin header for connecting to a microcontroller or other control device

  • Indicator:

Onboard LED indicator shows the relay's status (on or off)

  • Power Consumption:

Low power consumption, making it suitable for battery-powered devices

  • Dimensions:

Compact size, ideal for use in small projects and prototypes

  • Certifications:

Compliant with relevant Indian and international safety standards

Operating Temperature

-20C to 75C

Storage Temperature

-40C to 125C

Humidity

5% to 95% RH (non-condensing)

Relay Life

100,000 cycles (min.)

Insulation Resistance

100 M (min.)

Dielectric Strength

2500 V AC (min.)

Applications

  • Home automation systems
  • Industrial control systems
  • IoT projects (e.g., smart home devices, robotics, and automation)
  • Prototyping and development projects
  • LED lighting control systems

Important Notes

Ensure proper wiring and connection to avoid damage to the relay module or other devices.

Use a suitable heat sink or enclosure to prevent overheating.

Follow proper safety precautions when working with high-voltage devices.

By understanding the features and functionality of the 5V 1 Channel Relay Module, you can effectively integrate it into your IoT projects and control devices with ease.

Pin Configuration

  • Component Documentation: 5V 1-Channel Relay Module (Made in India - GL Make)
  • Pinout Description:
  • The 5V 1-Channel Relay Module is a compact, cost-effective solution for controlling high-power devices using a microcontroller or other low-voltage systems. This module features a single relay, which can be controlled by a 5V digital signal. Below is a detailed description of each pin on the module:
  • Pin 1: VCC (5V Power Input)
  • Function: Provides power to the relay module
  • Voltage: 5V DC
  • Current: Up to 70mA (dependent on relay coil resistance)
  • Connection: Connect to a 5V power supply (e.g., a USB port, battery, or regulated power supply)
  • Pin 2: GND (Ground)
  • Function: Provides a common ground reference for the module
  • Connection: Connect to the ground terminal of the power supply and other components in the circuit
  • Pin 3: IN (Input/Trigger)
  • Function: Receives the digital control signal from a microcontroller or other logic device
  • Voltage: 5V DC (TTL-compatible)
  • Logic: Active HIGH (relay turns on when IN is high, typically 3.3V to 5V)
  • Connection: Connect to a digital output pin of a microcontroller or other logic device
  • Pin 4: NO (Normally Open)
  • Function: Provides a normally open contact that closes when the relay is energized
  • Connection: Connect to the load's positive terminal (e.g., a light bulb or motor)
  • Pin 5: COM (Common)
  • Function: Provides a common terminal for the relay contacts
  • Connection: Connect to the load's negative terminal (e.g., a light bulb or motor)
  • Pin 6: NC (Normally Closed)
  • Function: Provides a normally closed contact that opens when the relay is energized
  • Connection: Not typically used in single-pole, single-throw (SPST) configurations; can be used for special applications or for fault detection
  • Connection Structure:
  • To connect the module, follow these steps:
  • 1. Connect VCC (Pin 1) to a 5V power supply.
  • 2. Connect GND (Pin 2) to the ground terminal of the power supply and other components in the circuit.
  • 3. Connect IN (Pin 3) to a digital output pin of a microcontroller or other logic device.
  • 4. Connect NO (Pin 4) to the load's positive terminal (e.g., a light bulb or motor).
  • 5. Connect COM (Pin 5) to the load's negative terminal (e.g., a light bulb or motor).
  • 6. Connect NC (Pin 6) only if required for specific applications or fault detection.
  • Important Notes:
  • Ensure the power supply can provide the required current for the relay coil (up to 70mA).
  • Use a flyback diode or snubber circuit to protect the relay and surrounding components from back-EMF when the relay is switched off.
  • Avoid exceeding the recommended voltage and current ratings to prevent damage to the module.
  • By following these connection guidelines and taking necessary precautions, the 5V 1-Channel Relay Module can be safely and effectively used in a variety of IoT applications.

Code Examples

Component Documentation: 5V 1 Channel Relay Module (Made in India - GL Make)
Overview
The 5V 1 Channel Relay Module is a popular IoT component used to switch high-voltage devices (up to 250V AC/DC) using a low-voltage signal from a microcontroller or other electronic devices. This module is made in India by GL Make and features a single relay channel, making it an ideal choice for various IoT projects.
Technical Specifications
Operating Voltage: 5V
 Relay Type: Single Pole Double Throw (SPDT)
 Maximum Contact Rating: 10A, 250V AC/DC
 Operating Temperature: -40C to 85C
 Dimensions: 44.5mm x 17.5mm x 18.5mm
Pinout Diagram
The 5V 1 Channel Relay Module has the following pinout:
| Pin | Function |
| --- | --- |
| VCC | 5V Power Supply |
| GND | Ground |
| IN | Input Signal (Active Low) |
| NC | Normally Closed (Switched to COM when IN is Low) |
| COM | Common Terminal |
| NO | Normally Open (Switched to COM when IN is High) |
Example 1: Controlling a 220V AC Light Bulb using Arduino
In this example, we will use the 5V 1 Channel Relay Module to control a 220V AC light bulb using an Arduino Uno board.
Hardware Requirements:
5V 1 Channel Relay Module
 Arduino Uno board
 220V AC light bulb
 Breadboard and jumper wires
Software Code:
```c
const int relayPin = 2; // Pin connected to IN pin of relay module
void setup() {
  pinMode(relayPin, OUTPUT);
}
void loop() {
  digitalWrite(relayPin, HIGH); // Turn on the light bulb
  delay(1000);
  digitalWrite(relayPin, LOW); // Turn off the light bulb
  delay(1000);
}
```
Explanation:
In this example, we connect the IN pin of the relay module to digital pin 2 of the Arduino Uno board. We then use the `digitalWrite()` function to send a HIGH signal to the relay module, which closes the NO and COM contacts, allowing the 220V AC light bulb to turn on. Conversely, when we send a LOW signal, the relay module opens, and the light bulb turns off.
Example 2: Controlling a 12V DC Fan using Raspberry Pi
In this example, we will use the 5V 1 Channel Relay Module to control a 12V DC fan using a Raspberry Pi.
Hardware Requirements:
5V 1 Channel Relay Module
 Raspberry Pi
 12V DC fan
 Breadboard and jumper wires
 12V power supply
Software Code:
```python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
relay_pin = 17
GPIO.setup(relay_pin, GPIO.OUT)
while True:
    GPIO.output(relay_pin, GPIO.HIGH) # Turn on the fan
    time.sleep(1)
    GPIO.output(relay_pin, GPIO.LOW) # Turn off the fan
    time.sleep(1)
```
Explanation:
In this example, we connect the IN pin of the relay module to GPIO pin 17 of the Raspberry Pi. We then use the `GPIO.output()` function to send a HIGH signal to the relay module, which closes the NO and COM contacts, allowing the 12V DC fan to turn on. Conversely, when we send a LOW signal, the relay module opens, and the fan turns off.
These examples demonstrate the basic operation of the 5V 1 Channel Relay Module and its ability to control high-voltage devices using a low-voltage signal. This module is an excellent addition to any IoT project requiring relay control.