Control Your Home Appliances Using Arduino and Relay

Hello everyone, In this instructable we will be using Arduino And Relay module to control home appliances.

This instructable covers:

  1. Basics of Relays.
  2. Connecting Relays with Arduino.
  3. Controlling AC appliances using Relays.

How it works:

  • The relay uses an electromagnet to mechanically switch electric appliances.
  • A relay can be operated by a relatively small electric current that can turn on or off a much larger electric current.
  • Using relays is safe as there is no any physical contact between Arduino and AC.

Step 1: Gather the Parts

In order to Control Your Home Appliances Using Arduino and Relay we’ll need:

  1. An Arduino UNO
  2. A 5V Relay module
  3. Female jumper wires

Step 2: Wiring

Hookup all the components according to the circuit diagram shown above.

In the above wiring diagram, The pins VCC, GND and IN on the Relay module may vary depending on your Relay module. So, Refer to the data-sheet of your Relay.

For, connecting the AC bulb to the relay properly:

  • Connect live wire from AC wall outlet to Common port on relay and one terminal of AC bulb to Normally open terminal of Relay.
  • Then, Connect the other terminal of AC bulb to GND on the AC wall outlet.

Take proper precautions and care while connecting any wire to mains.

Step 3: Arduino Sketch

Once you have hooked up everything properly upload the Relay.ino sketch to your arduino.

Unlike LEDs, Relays closes the circuit whenever the signal or input pin is connected to GND. (This may vary for other custom made relay modules.)

So, “digitalWrite(13, LOW);” turns on the bulb. While, “digitalWrite(13, HIGH);” turns off the bulb.

void setup() {
  pinMode(13, OUTPUT);
}
void loop() {
  digitalWrite(13,
LOW);
  delay(5000);              // wait for 5 seconds
  digitalWrite(13,
HIGH);
  delay(5000);              // wait for 5 seconds
}

The above code turns on the bulb for 5 sec and turns it off for the next 5 sec.

Step 4: Done

Now just power up your Arduino and the Relay to see your AC bulb turning on and off.

Thanks for viewing.

Source: Control Your Home Appliances Using Arduino and Relay


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top