Arduino And Ac Devices - Automatic Lights

About the project

Learn how to use Relay, Ultrasonic sensor and Arduino in one cool and easy project

Project info

Difficulty: Easy

Platforms: ArduinoMicrosoft

Estimated time: 1 hour

License: GNU General Public License, version 3 or later (GPL3+)

Items used in this project

Hardware components

Tiny Breadboard Tiny Breadboard x 1
Jumper Wire Kit - 140pcs Jumper Wire Kit - 140pcs x 1
XBEE ADAPTER 5V XBEE ADAPTER 5V x 1
Origami LED Lamp Shade Kit Origami LED Lamp Shade Kit x 1
Genuino Uno Rev3 Genuino Uno Rev3 x 1

Software apps and online services

Arduino IDE Arduino IDE
Microsoft Visual Studio 2015 Microsoft Visual Studio 2015

Hand tools and fabrication machines

Screwdriver Screwdriver x 1

Story

Smart House Lights

In this project we'll learn how to use the relay with ultrasonic sensor and Arduino to make our home lights ( or any device ) smarter.

Our target is to make an energy saving light bulb turn off when you go out of the room and turn on when you come back in. It's so easy to implement and takes a small amount of time.

This tutorial assumes basic Arduino knowledge. If you've used Arduino before you're cool to go.

Safety First

Caution : this project uses AC high voltage power supply, if you're less than 16   or don't have enough experience you must have an experienced person to help you with the AC part.

However,  you can complete the project using DC devices which run on low voltage and will prove the same concept. I'll state the warning clearly when it starts to be dangerous.

Components

1) Arduino Uno

2) Multimeter

3) Jumper Wires

4) Breadboard

5) Realy Module

6) Ultrasonic sensor ( HC-SR04 ) and Ultrasonic library for the Arduino you can find it here it's called ( New Ping ) library, if it's your first time to install an external library to the Arduino check this link.

7) DC power source ( optional )

8) Screwdriver ( + type for the relay module )

9) Energy saving light bulb with its mounting and wall plug attached ( I used an old radio power cable to get the plug ).

caption (optional)

I also used a glue gun to attach the ends of wires, you should use an insulator tape.

10) Visual Studio for writing Arduino code, wanna know how ? check this link, it's totally free or you can use Arduino IDE.

Let's get started.

caption (optional)

Preparing the Ultrasonic

Firstly, we'll know how to attach the ultrasonic sensor to the Arduino which is illustrated in the image below, We'll later describe how to test the ultrasonic sensor.

Ultrasonic circuit

The Relay Module

Then we'll connect one channel of the relay module ( as the one I have has 2 channels ), the Vcc pin goes to 5v and the IN1 goes to Arduino Pin 8 ( or any pin of your choice ).

It's worth noting that my relay module is active-low, to know what's the difference between active-low and active-high check this link. So, before continuing you should know your relay's active mode, to do that you simply connect the Vcc and GND normally then connect the IN pin to 5V if nothing happens then it's active low to ensure it connect the IN pin to GND.

Relay and Ultrasonic sensor connected to Arduino

The Lamp

Then prepare the lamp to be hooked up to the wall plug and the relay one terminal will be connected directly to the plug, the other one will have a cut in the middle of the way, one end of the cut will go to the Normally Open pin (NO1 ) in the relay module, the other one will go to the COM1 pin and then the plug.

caption (optional)

Please make sure that EVERYTHING is well insulated, I made sure by using the glue gun on each of the components especially the ones connected to the AC power source any short circuit might cause severe damage to you and / or your components.

The final circuit becomes ( The lamp is simplified :) )

Complete circuit

Now we're done with the hardware.

The code does the following

  • Measures the distance from ultrasonic
  • Checks if someone passed by the door
  • Switches the state of the light

Reading Values from the Ultrasonic

Now let's try the ultrasonic sensor, this is the example from thee library, it's very simple and straight forward as it just prints the distance it reads.

When using the example make sure to set the baud rate in the serial monitor to the one inside the code as it uses 115200

You can obtain the distance in Centimeter or Inches using ( sonar is the ultrasonic instance name).

sonar.ping_cm();
// Or
sonar.ping_inch();

As we can see it also sets the pins of the Ultrasonic sensor and the max desired range.

Unfortunately, sometimes the ultrasonic sensor reads a faulty distance every now and then.

Which can keep the light switching on and off unintentionally, to fix this problem we should get a number of reading and select their average, another way to fix it is to use the median filter which simply takes a number of readings, sorts them in an array and selects the value in the middle which is so cool to remove the noise if it occurs frequently.

Luckily the NewPing library has this filter implemented in a function called

sonar.ping_median(unsigned byte numReadings); 

You simply pass the number of readings that you want to consider as a sample maximum 512 as they're using unsigned byte.

this function returns the time the echo used to bounce back which should be converted to the unit of length you're using, this is also readily implemented in the library by using

sonar.convert_cm(unsigned int echoTime);
// Or
sonar.convert_in(unsigned int echoTime);

The last catch about the ultrasonic is that it reads 0 if nothing is in front of it, this is simply solved by telling it to set distance to MAX_DISTANCE if it reads 0, finally the code for reading the sensor becomes ( distance is a global variable ) :

Detecting that Something has Passed By

Now let's start coding, to know that someone has passed by the ultrasonic must read a critical distance which can simply be half of the door's width. so we're always sure that someone is passing the door.

One other thing that I want to keep in mind is that the light will only switch when something has passed in front of the ultrasonic, this means that if someone is standing still in front of it, nothing will happen. The code to do this is as follows

caption (optional)

Congratulations !! you're now done, I'll attach the whole Visual Studio project as I made a small edit to the library ( used dynamic memory allocation instead of variable size arrays -as Visual Studio doesn't allow them- ) and added some documentation.

Please respect this project if you find it useful, other projects:

Arduino color mixer

RC Car using 1Sheeld

Articles

Developing Arduino using Visual Studio

Schematics, diagrams and documents

Full circuit

This is the full circuit describing the whole project

Code

Smart House Light

This code takes the input reading from the ultrasonic and controls the relay accordingly

Ultrasonic test

Code to make the ultrasonic prints the value it's reading

Smart House Lights

This is the full project for Visual Studio with the edited library

Credits

Leave your feedback...