Engineers Garage

  • Projects and Tutorials
    • Circuit Design
    • Electronic Projects
      • 8051
      • Arduino
      • ARM
      • AVR
      • PIC
      • Raspberry pi
      • STM32
    • Tutorials
    • Components
    • Contributions
  • Articles
    • EG Blogs
    • Insight
    • Invention Stories
    • How to
    • What Is
    • News
      • EE Design News
      • DIY Reviews
      • Guest Post
      • Sponsored Content
  • Forums
    • EG Forum Archive
    • EDABoard.com
    • Electro-Tech-Online
  • Digi-Key Store
    • Cables, Wires
    • Connectors, Interconnect
    • Discrete
    • Electromechanical
    • Embedded Computers
    • Enclosures, Hardware, Office
    • Integrated Circuits (ICs)
    • Isolators
    • LED/Optoelectronics
    • Passive
    • Power, Circuit Protection
    • Programmers
    • RF, Wireless
    • Semiconductors
    • Sensors, Transducers
    • Test Products
    • Tools
  • EE Resources
    • DesignFast
    • LEAP Awards
    • Oscilloscope Product Finder
    • Video
    • White Papers
    • Webinars
  • EE Learning Center
  • Women in Engineering

Home appliance control using Android phone

December 24, 2020 By Deepesh Verma

With enhancement in technology, automation has become a need whether it is home, office or some other place. At home we come across many appliances be it  fan, AC, TV,  lights, etc. What if you could operate all of them with the Android Phone you’re holding in your hand.

Prototype of Android Mobile controlled Home Automation System

Fig. 1: Prototype of Android Mobile controlled Home Automation System

This project aims to incorporate android phone control over electrical appliances. We use Bluetooth communication between Android phone and a Receiver (control unit) that is connected to the appliances.
Bluetooth is a wireless technology standard for exchanging data over short distances (using short-wavelength UHF radio waves in the ISM band from 2.4 to 2.485 GHz) from fixed and mobile devices and building personal area networks (PANs). Invented by telecom vendor Ericsson in 1994, it was originally conceived as a wireless alternative to RS-232 data cables. It can connect several devices, overcoming problems of synchronization.

HC-05 module is an easy to use Bluetooth SPP (Serial Port Protocol) module, designed for transparent wireless serial connection setup.  It contains 6 pins that are labelled on the back but most modules only have 4 of those populated with pogo pins.  KEY & STATE  are not required, as KEY is used for flashing the device and STATE simply indicates  whether the device is awake or not.  So that leaves only GND, VCC, TXD, RXD.

Typical image of HC-05 Bluetooth Module

Fig. 2: Typical image of HC-05 Bluetooth Module

For connecting the module with Arduino, we need to use the Serial (Tx and Rx) pins provided on the board.

Connections & Working

Making Connections with HC-05:

Some modules have VCC labelled for working voltages up to ~6 volts.  These modules DO NOT like anything except 3.3 volts on the VCC line. We should use a level converter to 3.3V on the RXD line.  Use two resistors, as a simple voltage divider to make the TTL level conversion.  Wire  one 2.2k ohm resistor to ground and another 1k ohm resistor to the TXD line on the MCU. Connect the RXD pin in between the two resistors for an output of approx 3.4 volts.
Connect RXD pin of module to TXD of Arduino (Digital Pin 1), through the voltage divider configuration shown below:

Image showing circuit connections of Arduino Uno and HC-05 Bluetooth Module

Fig. 3: Image showing circuit connections of Arduino Uno and HC-05 Bluetooth Module

Now connect TXD of module to RXD of Arduino (Digital Pin 0).
To operate the appliances, we can’t connect them directly to Arduino. We need something called RELAY which is driven with the help of Transistor based driver circuit.

Circuit Diagram of Transistor based Relay Driver

Fig. 4: Circuit Diagram of Transistor based Relay Driver

The ‘Input’ is from Arduino I/O pin. RB is the current limiting resistor at the base of the transistor. Its value is typically 10K Ohm. ‘VS’ is the supply voltage needed to trigger the Relay coil (It depends on the Relay rating). A diode is connected in Reverse in parallel to the relay. This is done to avoid the back e.m.f. generated by coil that can damage the transistor or the Arduino.

A simplified Block diagram of the complete system is shown below:

Block Diagram of Android Mobile controlled Home Automation System

Fig. 5: Block Diagram of Android Mobile controlled Home Automation System

After making above connections, you’ll see blinking led on the module. This just ensures your device is powered properly. After that pick your Android Phone, and get the App- “Arduino Bluetooth Terminal” from the Google Play Store. This app is available for free, and is easy to use.

Screenshot of Android App used to control Home Appliances

Fig. 6: Screenshot of Android App used to control Home Appliances

After installation, turn ON Bluetooth of phone. Now search for devices until you find HC-05 and then start pairing with it. Enter Password 1234, when asked.

If properly paired, the LED blinking on Bluetooth module will  stop.  If not check the connections again. Get back to the app you just downloaded. It’ll automatically find the device, match the key it displays, and start conversation. Make sure, the phone’s Bluetooth remains ON.

Prototype of Android Mobile controlled Home Automation System

Fig. 7: Image showing complete prototype of Arduino based Android phone controlled Home Automation System

 

System Operation:

When we send ‘1’ to the Arduino, the Appliance 1 connected to Arduino Turns ON and when ‘2’ is sent, Appliance 2 turns ON. The serial data is read by Arduino, through Serial.read () function and is stored in the integer type variable state declared in the program. After this in the loop(), we just compare state value with 1, 2, 3 and so on till 8 to check the ON condition of 8 Appliances. Then we compare state value with a, b, c and so on till h to check the OFF condition of appliances and perform respective operation.

In addition to this we can also monitor the physical state such as  temperature,  pressure, etc., through the android phone. Say, we need to monitor the temperature of the room. We connect the LM35 Temperature sensor to the Arduino. Now read the sensor value and send it to the phone via serial link established over Bluetooth between  the phone and Arduino.

 

Project Source Code

###



int led1 = 2;
int led2 = 3;
int led3 = 4;
int led4 = 5;
int led5 = 6;
int led6 = 7;
int led7 = 8;
int led8 = 9;
int state;
int flag=0;       
void setup()
{
    pinMode(led1, OUTPUT);
    pinMode(led2, OUTPUT);
    pinMode(led3, OUTPUT);
    pinMode(led4, OUTPUT);
    pinMode(led5, OUTPUT);
    pinMode(led6, OUTPUT);
    pinMode(led7, OUTPUT);
    pinMode(led8, OUTPUT);
Serial.begin(9600);
}
void loop() {
    if(Serial.available() > 0)
    {    
      state = Serial.read();  
      flag=0;
    }  
    if (state == '1')
    {
       digitalWrite(led1, HIGH);
       if(flag == 0){
        Serial.println("Appliance 1 is ON");
          flag=1;
        }
    }
  
   else if (state == '2')
    {
        digitalWrite(led2, HIGH);
        if(flag == 0){
        Serial.println("Appliance 2 is ON");
        flag=1;
        }
    }
    else if (state == '3')
    {
        digitalWrite(led3, HIGH);
        if(flag == 0){
        Serial.println("Appliance 3 is ON");
        flag=1;
        }
    }
    else if (state == '4')
    {
        digitalWrite(led4, HIGH);
        if(flag == 0){
        Serial.println("Appliance 4 is ON");
        flag=1;
        }
    }
    else if (state == '5')
    {
       digitalWrite(led5, HIGH);
        if(flag == 0){
          Serial.println("Appliance 5 is ON");
          flag=1;
        }
    }
  
   else if (state == '6')
    {

        digitalWrite(led6, HIGH);
        if(flag == 0){
          Serial.println("Appliance 6 is ON");
          flag=1;
        }
    }
    else if (state == '7')
    {
        digitalWrite(led7, HIGH);
        if(flag == 0){
         Serial.println("Appliance 7 is ON");
          flag=1;
        }
    }
    else if (state == '8')
    {
        digitalWrite(led8, HIGH);
        if(flag == 0){
        Serial.println("Appliance 8 is ON");
         flag=1;
        }
    }
    else if (state == 'a')
    {
        digitalWrite(led1, LOW);
        if(flag == 0){
         Serial.println("Appliance 1 is OFF");
         flag=1;
        }
    }
    else if (state == 'b')
    {
        digitalWrite(led2, LOW);
        if(flag == 0){
          Serial.println("Appliance 2 is OFF");
          flag=1;
        }
    }
   else if (state == 'c')
    {
        digitalWrite(led3, LOW);
        if(flag == 0){
          Serial.println("Appliance 3 is OFF");
          flag=1;
        }
    }
  else if (state == 'd')
    {
       digitalWrite(led4, LOW);
        if(flag == 0){
          Serial.println("Appliance 4 is OFF");
          flag=1;
        }
    }
   else if (state == 'e')
    {
         digitalWrite(led5, LOW);
        if(flag == 0){
          Serial.println("Appliance 5 is OFF");
          flag=1;
        }
    }
    else if (state == 'f')
    {
         digitalWrite(led6, LOW);
        if(flag == 0){
          Serial.println("Appliance 6 is OFF");
          flag=1;

        }
    }
    else if (state == 'g')
    {
         digitalWrite(led7, LOW);
        if(flag == 0){
          Serial.println("Appliance 7 is OFF");
          flag=1;
        }
    }
    else if (state == 'h')
   {
         digitalWrite(led8, LOW);
        if(flag == 0){
          Serial.println("Appliance 8 is OFF");
          flag=1;
        }
    }
}

###

 


Circuit Diagrams

Circuit-Diagram-Arduino-Based-Android-Controlled-Home-Automation-System

Project Video

Related Articles Read More >

How to build an IR remote-operated RGB LED strip using Arduino
A Bluetooth-controlled datalogger robot
How to build an automatic watering system for plants using Arduino
wireless sensor network
Wireless Sensor Network example using Arduino

Featured Tutorials

  • Capacitive Touch Controlled Robot using X-Bee Module
  • Keypad Controlled RF based Wireless Robot
  • A Bluetooth-controlled datalogger robot
  • Keypad Controlled And Industrial Gas Monitoring Wireless Robot
  • Joystick Controlled Wireless Robot
  • CAN Protocol – Understanding the Controller Area Network Protocol

Stay Up To Date

Newsletter Signup

EE Training Center Classrooms

“ee

“ee

“ee

“ee

Recent Articles

  • How to build an IR remote-operated RGB LED strip using Arduino
  • Maxim launches automotive-grade secure authenticator for enhanced vehicle safety
  • Samsung offers compact, WiFi-enabled VRF air-conditioning systems
  • Nexperia launches industry’s first 80-V RET family for high-voltage circuits
  • The Amazing World of Robotics and its Promising Future
...

RSS EDABOARD.com Discussions

  • Rippe current rating of aluminium electrolytic capacitor is very low.
  • Start-up resistor for offline flyback suffers overvoltage..but is it OK?
  • Why disabled autoCsEnable in SPI doesn't allow CS gpio control in EFR32FG14
  • Spice correlation issue
  • Mic preamp and Tx on MAX260x

RSS Electro-Tech-Online.com Discussions

  • new to Ardunio but trying to compile
  • Any Ideas As to why circuit keeps breaking
  • 12v zvs induction heater
  • First time using MOSFETs project
  • Engine Temperature using an AD590 on the Oil Pressure Wire to the engine
Engineers Garage
  • Analog IC TIps
  • Connector Tips
  • DesignFast
  • EDABoard Forums
  • EE World Online
  • Electro-Tech-Online Forums
  • Microcontroller Tips
  • Power Electronic Tips
  • Sensor Tips
  • Test and Measurement Tips
  • 5G Technology World
  • About Us
  • Contact Us
  • Advertise

Copyright © 2021 WTWH Media LLC. All Rights Reserved. The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of WTWH Media
Privacy Policy | Advertising | About Us

Search Engineers Garage

  • Projects and Tutorials
    • Circuit Design
    • Electronic Projects
      • 8051
      • Arduino
      • ARM
      • AVR
      • PIC
      • Raspberry pi
      • STM32
    • Tutorials
    • Components
    • Contributions
  • Articles
    • EG Blogs
    • Insight
    • Invention Stories
    • How to
    • What Is
    • News
      • EE Design News
      • DIY Reviews
      • Guest Post
      • Sponsored Content
  • Forums
    • EG Forum Archive
    • EDABoard.com
    • Electro-Tech-Online
  • Digi-Key Store
    • Cables, Wires
    • Connectors, Interconnect
    • Discrete
    • Electromechanical
    • Embedded Computers
    • Enclosures, Hardware, Office
    • Integrated Circuits (ICs)
    • Isolators
    • LED/Optoelectronics
    • Passive
    • Power, Circuit Protection
    • Programmers
    • RF, Wireless
    • Semiconductors
    • Sensors, Transducers
    • Test Products
    • Tools
  • EE Resources
    • DesignFast
    • LEAP Awards
    • Oscilloscope Product Finder
    • Video
    • White Papers
    • Webinars
  • EE Learning Center
  • Women in Engineering