• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » What Are Arduino Relay Modules, What They Do?

By Abhishek Ghosh July 24, 2017 12:02 pm Updated on July 24, 2017

What Are Arduino Relay Modules, What They Do?

Advertisement

Definitely you have noticed the Arduino Relay Modules on Ebay, Amazon like online shops or may be on some blog sites. Many obviously wonder and ask what are Arduino Relay Modules, what they do? In very short, these relay modules isolate two circuits so that we can control 230V appliances with Arduino using relay. As the matter is with live 230V connection, not 9V battery, usage must be by adults. There is no mercy with electric shock. Always use fuse like we said in fuse guide, get used with various switches and follow proper precaution while using relay. In this article, we will only explain the basics around these Arduino relay modules. Actually there are various types of relays and usage of relay is quite wider. We are remaining within the basic and around Arduino.

 

What Are Arduino Relay Modules, What They Do?

 

Relay is a device that can work analogous to switch with the benefit of isolation of circuits and easy designing of the circuits. The relays for Arduino available are solid state relays (SSR), not what those electromagnetic things we were taught in Twelfth grade. These relays have types of mounting, cars and Arduino use Chassis Mounting relays.

The solid state relays can be based on a single MOSFET or multiple MOSFETs in a paralleled array, can work well for DC loads. Arduino relays usually have two MOSFETs which are arranged back-to-back with their source pins tied together while their drain pins are connected to either side of the output.

Advertisement

---

Arduino relays no necessarily for controlling the AC peripherals. We can control DC peripherals too and below is such example, definitely better to get used :

What Are Arduino Relay Modules What They Do

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* ===============================================================
      Project: 4 Channel 5V Relay Module
       Author: Scott C
      Created: 7th Sept 2014
  Arduino IDE: 1.0.5
      Website: http://arduinobasics.blogspot.com.au
  Description: Explore the difference between NC and NO terminals.
================================================================== */
 
/*
  Connect 5V on Arduino to VCC on Relay Module
  Connect GND on Arduino to GND on Relay Module
  Connect GND on Arduino to the Common Terminal (middle terminal) on Relay Module. */
#define CH1 8   // Connect Digital Pin 8 on Arduino to CH1 on Relay Module
#define CH3 7   // Connect Digital Pin 7 on Arduino to CH3 on Relay Module
#define LEDgreen 4 //Connect Digital Pin 4 on Arduino to Green LED (+ 330 ohm resistor) and then to "NO" terminal on relay module
#define LEDyellow 12 //Connect Digital Pin 12 on Arduino to Yellow LED (+ 330 ohm resistor) and then to "NC" terminal on relay module
void setup(){
   //Setup all the Arduino Pins
   pinMode(CH1, OUTPUT);
   pinMode(CH3, OUTPUT);
   pinMode(LEDgreen, OUTPUT);
   pinMode(LEDyellow, OUTPUT);
  
   //Provide power to both LEDs
   digitalWrite(LEDgreen, HIGH);
   digitalWrite(LEDyellow, HIGH);
  
   //Turn OFF any power to the Relay channels
   digitalWrite(CH1,LOW);
   digitalWrite(CH3,LOW);
   delay(2000); //Wait 2 seconds before starting sequence
}
void loop(){
   digitalWrite(CH1, HIGH);  //Green LED on, Yellow LED off
   delay(1000);
   digitalWrite(CH1, LOW);   //Yellow LED on, Green LED off
   delay(1000);
   digitalWrite(CH3, HIGH);  //Relay 3 switches to NO
   delay(1000);
   digitalWrite(CH3,LOW);    //Relay 3 switches to NC
   delay(1000);
}

This China company’s :

Vim
1
http://www.songle.com/en/

relays are commonly sold at very cheap rate for Arduino. As for their function – you can control any AC operated devices like electric bulb, motor to anything possible. Obviously their pricing makes them practical to use an Arduino project in to reality by building Arduino from the basic electronic components.

Cost of these Arduino Relay Modules are just less – starts from $1.5 and hundreds of guides with schematics and code are available all over the Internet. You can look at these two detailed guides for understanding the usage, circuit with Arduino relay module :

Vim
1
2
https://blog.siliconstraits.vn/relay-what-is-it-and-how-to-use-it/
http://www.instructables.com/id/Controlling-AC-light-using-Arduino-with-relay-modu/

Tagged With WHY DO WE USE relay in arduino , what do you use arduino relays for , what do relay modules do , what do arduino relays do , what can you do with a relay arduino , relays and arduino , relay on arduino what does it do , arduino what is a relay , arduino relay what does it do , arduino relay module types
Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to What Are Arduino Relay Modules, What They Do?

  • Arduino and LED Bar Display : Circuit Diagram, Code

    Here is a Guide Explaining the Basics, Circuit Diagram, Code on Arduino and LED Bar Display. LED Bar Display is Actually Like Multiple LED.

  • How to Control Multiple Relays With Single Arduino ESP32?

    Before How to Control Multiple Relays With Single Arduino ESP32 Testing, You Need to Learn How to Create Multiple MQTT Channels & Fetch Data.

  • Arduino Basic Piano For Children (Pushbutton & Buzzer)

    Here is Arduino Basic Piano For Children With Pushbutton & Buzzer as Components. In Early ’90s Technology Was Limited and Worldwide there Were Few Electronic Toys.

  • Arduino Door Bell With Push Button With 3 LED

    Here is Circuit Diagram, Code, List of Components & Demonstration Video of Arduino Door Bell With Push Button With 3 LED. It is easy project.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy