Skip to main content

IOT BASED SMART HOME


IOT BASED SMART HOME DESIGN USING POWER ANDSECURITY MANAGEMENT
ABSTRACT
This project presents the design and implementation of an IoT-based smart home intelligent system for monitoring the electrical energy consumption based upon the real time tracking of the devices at home. The proposed outcome of this project aims as multiple benefits of saving on electricity bills of the home as well as keep the users updated about their home security with an option of controlling the switching of the devices by using their voice or simple toggle touch on their Smartphone. Finally, this project conserves the precious natural resources byreducing electrical energy consumption.














BLOCK DIAGRAM
TRANSMITTER


 




















CONTROL
                                                                               

MOBILE
 
 







EXISTING SYSTEM:
·       User monitoring is necessary and voice control is not possible
·       Lack of power management, leads to increase in electricity bills
·       Lack in security needs

PROPOSED SYSTEM:
·       By voice control the electrical devices and the switches can be controlled and monitored.
·       Due to power management, it reduces the electricity bills.
·       High Security is maintained.





HARDWARE REQUIREMENTS
·        ATMEL MICROCONTROLLER
·        GAS SENSOR
·        PIR SENSOR
·        IOT BOARD
·        RELAY
·        AC LOAD
·        LCD

SOFTWARE REQUIREMENTS
·        KEIL  IDE
·        EMBEDDED C
·        VB


Comments

Popular posts from this blog

PUNCHING MACHINE

ACCIDENT AVOIDING SYSTEM FOR PUNCHING MACHINE SYNOPSIS The aim of our project is to take a system-wide approach to preventing the machine accident. The system includes not just the machine and the operator; but rather, it includes everything from the initial design of the machine to the training of everyone that is responsible for any aspect of it, to the documentation of all changes, to regular safety audits and a finally a corporate culture of safety-first. Design is the part of a machine's life where the greatest impact can be made in relation to avoiding accidents. The designer should ensure that the machine is safe to set up and operate, safe to install, safe to maintain, safe to repair, and safe to decommission. Although safe operation is usually at the forefront of a designer's mind, safe maintenance and repair should also be a high priority. Around 50% of fatal accidents involving industrial equipment are associated with maintenance activities, and design...

Inverted Linear Quadtree: Efficient Top K Spatial Keyword Search

Inverted Linear Quadtree: Efficient Top K Spatial Keyword Search ABSTRACT: In this paper, With advances in geo-positioning technologies and geo-location services, there are a rapidly growing amount of spatiotextual objects collected in many applications such as location based services and social networks, in which an object is described by its spatial location and a set of keywords (terms). Consequently, the study of spatial keyword search which explores both location and textual description of the objects has attracted great attention from the commercial organizations and research communities. In the paper, we study two fundamental problems in the spatial keyword queries: top k spatial keyword search (TOPK-SK), and batch top k spatial keyword search (BTOPK-SK). Given a set of spatio-textual objects, a query location and a set of query keywords, the TOPK-SK retrieves the closest k objects each of which contains all keywords in the query. BTOPK-SK is the batch processing of sets...

A simple and reliable touch sensitive security system CODING

#include <REGX51.H> #include "lcd.c" #define MAX_DELAY() delay(65000) sbit Vibra_Sense=P3^1; sbit Buz=P1^0; void intro() {  lcd_init();  lcd_str("Touch Sensitive ",0x80);  lcd_str("Security System ",0xc0);  MAX_DELAY();MAX_DELAY();  lcd_clr();  }  void main()  { unsigned int i = 0, j= 0; intro();    while(1)    { lcd_str("Security Syst On",0x80); lcd_str("No Vibra Detectd",0xc0); Buz = 1; if(Vibra_Sense == 1) { while(Vibra_Sense == 1) delay(1000); } else { while(Vibra_Sense == 0) delay(1000); } Buz = 0; lcd_str("Vibraton Detectd",0xc0);delay(65000); while(1);    }  }