![](https://electroboat.in/uploads/media/2024/images_(5).jpg)
![](https://electroboat.in/media/image?path=uploads/media/2024/images_(6).jpg&width=620&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/images_(5).jpg&width=175&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/images_(6).jpg&width=172&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/images_(5).jpg&width=300&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/images_(6).jpg&width=300&quality=80)
Single relay
The Single Channel Relay Module is a convenient board which can be used to control high voltage, high current load such as motor, solenoid valves, lamps and AC load. It is designed to interface with microcontroller such as Arduino, NodeMCU, etc
₹ 22 ₹32
32
Add FAQ
A single relay is an electrical component that acts as a switch, allowing you to control a circuit with a separate low-voltage signal. It consists of an electromagnet that, when energized, physically moves a switch to open or close a contact. This makes it useful for controlling larger or higher-power circuits with smaller control signals, such as those from microcontrollers, switches, or sensors.
Key Components and Working of a Single Relay:
-
Electromagnet (Coil):
- When current flows through the coil, it creates a magnetic field that attracts a lever mechanism, changing the position of the contacts.
-
Contacts:
- These are the switch points that open or close to control the circuit. There are typically three types of contacts:
- Normally Open (NO): The contact is open (disconnected) when the relay is not energized. When energized, it closes.
- Normally Closed (NC): The contact is closed (connected) when the relay is not energized. When energized, it opens.
- Common (COM): This is the connection point that can either be connected to the NO or NC contact.
- These are the switch points that open or close to control the circuit. There are typically three types of contacts:
-
Armature:
- The armature is a moving part that is attracted or repelled by the electromagnet. It connects the NO or NC contacts to the COM contact when the relay is energized.
-
Spring:
- A spring is used to return the armature to its default position when the relay is not energized.
Types of Relays:
A single relay can be further classified based on its configuration and use:
-
SPDT (Single Pole Double Throw) Relay:
- The most common type of single relay.
- Has three terminals: Common (COM), Normally Open (NO), and Normally Closed (NC).
- When energized, it connects COM to NO, and when de-energized, it connects COM to NC.
-
SPST (Single Pole Single Throw) Relay:
- Has two terminals: Common (COM) and Normally Open (NO).
- Simple on/off switch, the relay either connects or disconnects the circuit when energized.
Working Principle of a Single Relay:
-
Relay Energized:
- When a small current is passed through the coil (usually from a low-voltage control circuit like a microcontroller), the electromagnet is energized.
- The magnetic field moves the armature, which changes the position of the contacts (COM to NO or NC).
- This action either opens or closes the high-power circuit, depending on the relay configuration.
-
Relay De-energized:
- When the control current is turned off, the electromagnet loses its magnetic field, and the armature returns to its default position (usually with the help of a spring).
- This restores the original state of the contacts (COM to NC or remains open if SPST).
Applications of a Single Relay:
-
Switching High-Power Devices:
- Relays are commonly used to control high-power devices like motors, lamps, fans, or appliances with low-power control signals, such as from a microcontroller or switch.
-
Automated Systems:
- Relays are integral parts of automated systems like home automation, industrial control systems, and robotics, where they are used to control and switch various components or devices.
-
Signal Isolation:
- Relays can be used to isolate different parts of a system. For example, you can control a high-voltage circuit (like an AC appliance) from a low-voltage control circuit (like a microcontroller or sensor) using a relay.
-
Time Delay Relays:
- A single relay can also be used in circuits that require a time delay. When the relay is triggered, it can either stay on or off for a specific amount of time before switching back.
-
Safety Circuits:
- Relays are used in safety applications to control systems like alarms, automatic shutdowns, and other safety mechanisms where it’s critical to isolate or activate certain devices based on specific conditions.
Example Circuit: Using a Single Relay with a Microcontroller (e.g., Arduino)
In this example, a relay is used to control an LED light from a microcontroller like an Arduino.
- Microcontroller: Sends a low-voltage signal (typically 5V or 3.3V) to control the relay.
- Relay: The relay will switch a high-power device, in this case, an LED light, when the microcontroller outputs a signal.
- LED Light: A higher voltage source (e.g., 12V or 120V AC, depending on the LED power requirement) is used to power the LED.
Circuit Connections:
- The control signal from the microcontroller (Arduino) is sent to the relay coil (via a transistor or a relay driver).
- When the relay is energized, the NO (Normally Open) contact closes, and the high-power circuit is completed to power the LED light.
- When the relay is de-energized, the circuit is broken, and the LED turns off.
Simple Example Code for Arduino:
int relayPin = 7; // Relay is connected to digital pin 7 on the Arduino
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the relay (and LED light)
delay(1000); // Wait for 1 second
digitalWrite(relayPin, LOW); // Turn off the relay (and LED light)
delay(1000); // Wait for 1 second
}
Advantages of Using a Single Relay:
-
Control High-Power Circuits with Low Power:
- Allows small control signals (like from a microcontroller) to control larger power circuits.
-
Electrical Isolation:
- Provides electrical isolation between the control circuit and the load, helping to protect sensitive electronics from high-voltage spikes.
-
Versatile and Cost-Effective:
- Relays are inexpensive, widely available, and can be used in many applications to switch a variety of loads (AC, DC, low or high power).
-
Durability:
- Relays are reliable and can handle frequent switching cycles. Mechanical relays are durable, though solid-state relays have longer life spans with fewer moving parts.
Considerations When Using a Single Relay:
-
Current and Voltage Rating:
- Ensure that the relay you choose can handle the current and voltage requirements of your load. Check both the coil rating (for control) and contact rating (for the load).
-
Inductive Loads:
- When switching inductive loads (like motors or transformers), the relay contacts may experience high voltage spikes when turning off. A flyback diode across the relay contacts can help protect the relay from these spikes.
-
Relay Triggering:
- Relays often need a certain voltage or current level to activate. Ensure that your control circuit provides enough power to energize the relay’s coil.
-
Relay Power Consumption:
- Relays consume power when energized. This should be considered in low-power circuits or battery-operated systems, as it can drain the power source.
Conclusion:
A single relay is a versatile and widely used component that enables low-power circuits (such as microcontrollers or sensors) to control high-power loads. It works by using an electromagnet to switch contacts, which can either open or close a circuit. Relays are crucial for applications requiring electrical isolation, control of high-power devices, and automation.
0 Reviews For this Product
![](https://electroboat.in/uploads/seller/electroboat_logo3.jpeg)