Project 2: Voice control Home Automation with Bluetooth

Project 2 : Bluetooth Home Automation 

This Article helps you to make Bluetooth Based Home Automation project which allows you to control your home appliances through Mobile App and in Voice Command(features of the App).

 

Lets first see the Output of the Project:

 




 

In that App , you can also use voice command to  voice commands to trigger the outputs.


Components Required for this Project are:

  1. Arduino

  2. HC-05 Bluetooth Module

  3. Connecting wires

  4. PCB or BreadBoard

  5. Relay Module

     

     

    Step 1: 

    Make the circuit connections as described below:

    Note: Becareful while working with AC and HIGH voltage.


    Circuit Diagram :




After connecting the circuit as shown above , this the some what it look likes:

 

Note: here i only connected only one AC output just for show case purpose . You can connect more.



Step 2:


We have successfully configured the hardware part now ,it is the time to look on the software part. To make our easy we are going to install the Delta Library in Arduino .

In short , Delta Library is an Arduino library made by DeltaINC to reduce your workload. It is dedicated for Robotics projects and Arduino Projects.

To know more about the Delta Library , visit this link :Info_about_DeltaLibrary


To install the Delta Library , follow the steps below:

Installing the Delta Library:
1. Download the delta Library from the link below:
   https://github.com/DeltaINCnetwork/Delta-Library-for-Arduino-Robots
2. Extract it .
3. Open Arduino IDE.
4. Sketch-->Include library--> ADD .ZIP Library
5. Select  Delta.zip
6. Hurray you have successfully installed the Delta Library in        Arduuino IDE . Restart it if needed.

Below video will guide You to install the library ;

 

 
 
 
Step 3:
 
We are half done. The next we have to upload the code in the Arduino to perform the Home Automation task.  For that we can use a built in example in Delta Library to work our task.


Open Arduino IDE after installing delta Library -> Click File -> examples -> Delta ->HomeAutomation -> BluetoothHomeAutomation.
 
1.After installing the Delta Library , Click files 

 

2.Click example -> scroll down -> Delta -> HomeAutomation -> BluetoothHomeAutomation


The code is some what look like this:
 
#include<Delta.h>
HomeAutomation myAutomation(2,3,4,5);
void setup() {
  myAutomation.initiateBTAutomation();
}
void loop() {
 myAutomation.runBTAutomation();
}

Step 4 : The final and Simple step.

Now , we are done with the circuit and coding part . To fullfil our project we need an App to controll the appliances. For that we are suggest the HomeAutomation App below. On choosing this app you can control the appliance with button and also with voice command . 

Download and Install the App .
 
Click here to download the App : Home Automation App

That's it we have completed our project. Hope you find this article as support. If you have any questions ask in the comment section or mail us.

Comments

Popular posts from this blog

Introduction to Unicorn Library from DeltraINC