SlideShare a Scribd company logo
A
PROJECT REPORT
ON
HOME AUTOMATION USING ARDUINO
SubmittedBy: - SubmittedTo:-
Eklavya Sharma SatishKumar Rai
Roll No.- 12EBKEE031 AssistantProfessor(The
Branch- Electrical EngineeringI Departmentof Electronics)
B K BirlaInstitute of Engineering&Technology,Pilani B K BirlaInstitute of
Engineering& Technology,
Pilani
Mobile:+91 9785551210
1. INTRODUCTION
Home automation is becoming more and more popular day by day due to its numerous advantages.
This can be achieved by local networking or by remote control. Our Aim is to design a kit that can be
used for controlling AC Loads from Android phone by using Arduino as microcontroller. Home
automation refers to the use of computer and information technology to control home Appliances
and features (such as windows or lighting).Systems can range from simple remote control of lighting
through to complex computer/micro-controller based networks with varying degrees of intelligence
and automation. Home automation is adopted for reasons of ease, security and energy efficiency.
In modern construction in industrialized nations, most homes have been wired for electrical powe r,
telephones,TV outlets (cable or antenna), and a doorbell.Many household tasks were automated by
the development of specialized Appliances. For instance, automatic washing machines were
developed to reduce the manual labor of cleaning clothes, and water heaters reduced the labor
necessary for bathing.
2. LIST OF COMPONENTS REQUIRED
2.1 STEP DOWN TRANSFORMER
A single phase 230:18 V step down transformer is required for 12v dc power supply.
Figure 1: Step down transformer
2.2 MICROCONTROLLER
We have used Arduino as microcontroller for giving signals to the relays and taking signal from HC
06.Which takes 5 V dc power supply.
Figure 2: Arduino Microcontroller
2.3 DC RELAYS
Required no of relays of 12 V DC are used for switching purposes.
Figure 3: DC Relays
2.4 DIODES
Diodes are used in the circuit for rectification and a single diode is used as freewheeling diode. All
diodes are 1N4007.
Figure 4: Diodes
2.5 MOSFET
General purpose NMOS IRF510 is required for switching operation.
2.6 BLUETOOTH RECEIVER HC 06
A Bluetooth receiver HC 06 is required for catching signal from android phone.
Figure 6: Bluetooth Receiver
2.7 VOLTAGE REGULATOR IC
LM 7812 a voltage regulator IC is used in the 12V DC Power supply.
2.8 LOAD
A single phase 230 V, 50 Hz, load is required.
2.9 ELECTRICAL WIRE AND JUMPER WIRES
Electrical wire is used in the AC power supply and Jumper wire in the DC power Supply.
2.10 RESISTANCE AND CAPACITANCES
Resistances are used for current limiting and capacitances are used for reducing ripples in DC power
supply as per specifications.
3. CIRCUIT DIAGRAM
Fig. Arduino Controlled Relay
Fig. Full-Wave Bridge Rectifier
WORKING-
When the button is pressed in the application then it will send a signal to the Arduino board
through HC-06 which will put pin 13 in HIGH state, meaning 5V on pin 13. This voltage is used to
drive the MOSFET that willswitch ON the relay and the load will be powered from the main power
supply.
We use an external power supply (Vcc) that is between 7 to 12 volts to power up the Arduino
board and the transistor + relay. For that purpose we’ve made a full wave bridge rectifier. The
load uses its own power supply, for instance if you use a light bulb then you might connect it to
the 110/220V mains or any other power source.
ARDUINO CODE-
const int relay = 13;
int val;
// thesetup routine runs once when youpress reset:
voidsetup() {
// initializethedigitalpinas an output.
pinMode(relay,OUTPUT);
Serial.begin (9600);
}
// theloop routine runs over and over againforever:
voidloop()
{
if(Serial)
{
if(Serial.available()>0)
{
val=Serial.read();
Serial.println(val,DEC);
relaycontrol(val);
}
}
}
voidrelaycontrol(int val)
{
switch(val)
{ case 97 : turnon();
break;
case 101 : turnoff();
break;
default: turnoff();
}
}
voidturnon()
{
digitalWrite(relay,HIGH);
delay(1000);
}
voidturnoff()
{
digitalWrite(relay,LOW);
delay(1000);
}
ANDROID APPLICATION
A smart phone is a mobile phone with an operating system. Smart phones typically include the
features of a phone with those of another popular consumer device, such as a personal digital
assistant, a digital camera, a media player or a GPS navigation unit. Later smartphones include all of
those plus a touchscreen interface, broadband internet, web browsing, Wi-Fi, 3rd-party Apps, motion
sensors and mobile payment mechanism.
Even with limited programming experience, you can easily learn to create Apps for the Android
platform with this complete guide to App Inventor for Android. App Inventor for Android is a visual
language that relies on simple programming blocks that users can drag and drop to create Apps.
CODE BLOCKS-
CONCLUSION
The systemasthe name indicates,‘Androidbasedhomeautomation’makesthe systemmore flexibleand
provides attractive user interface compared to other home automation systems. In this system we
integrate mobile devices into home automation systems. A novel architecture for a home automation
systemis proposedusingthe relativelynew communicationtechnologies.The systemconsistsof mainly
three componentsisaBluetoothmodule,Arduinomicrocontrollerandrelaycircuits.Bluetoothisusedas
the communication channel between android phone and the Arduino microcontroller. We hide the
complexityof the notionsinvolvedinthe home automationsystemby includingthemintoa simple,but
comprehensive setof relatedconcepts.Thissimplificationisneededtofitasmuchof the functionalityon
the limited space offered by a mobile device’s display.

More Related Content

What's hot

Home automation based iot
Home automation based iotHome automation based iot
Home automation based iot
tashushy
 
SMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONSMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATION
Eklavya Sharma
 
Home automation with arduino
Home automation with arduinoHome automation with arduino
Home automation with arduino
Lakshminarayan Solanki
 
Arduino based Home Automation System with Android
Arduino based Home Automation System with AndroidArduino based Home Automation System with Android
Arduino based Home Automation System with Android
Sayan Seth
 
iot based home automation
iot based home automationiot based home automation
iot based home automation
parvathy s m
 
Smart Home Automation And security System
Smart Home Automation And security SystemSmart Home Automation And security System
Smart Home Automation And security System
Amit Kundu
 
Voice Control Home Automation
Voice Control Home AutomationVoice Control Home Automation
Voice Control Home Automation
Abhishek Neb
 
IOT: Home Automation using Android Application
IOT: Home Automation using Android ApplicationIOT: Home Automation using Android Application
IOT: Home Automation using Android Application
Nikhil Jadav
 
Bluetooth based home automation using Arduino UNO
Bluetooth based home automation using Arduino UNOBluetooth based home automation using Arduino UNO
Bluetooth based home automation using Arduino UNO
parameshwar koneti
 
Iot based home automation
Iot based home automationIot based home automation
Iot based home automation
geetha chandrathi
 
Home automation using wifi
Home automation using wifiHome automation using wifi
Home automation using wifi
Khairunnisa Naaz
 
Home Automation Using Arduino Uno and HC-05
Home Automation Using Arduino Uno and HC-05Home Automation Using Arduino Uno and HC-05
Home Automation Using Arduino Uno and HC-05
Vidhi Shah
 
Home automation using IOT
Home automation using IOTHome automation using IOT
Home automation using IOT
Maneesh Devanaboyina
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino
AMIT SANPUI
 
Android Based Home Automation Control
Android Based Home Automation ControlAndroid Based Home Automation Control
Android Based Home Automation Control
Vivek Porwal
 
Bluetooth based home automation system
Bluetooth based home automation systemBluetooth based home automation system
Bluetooth based home automation system
Veer Singh shakya
 
home automation using esp8266
home automation using esp8266home automation using esp8266
home automation using esp8266
smit bakori
 
Home automation using android mobiles
Home automation using android mobilesHome automation using android mobiles
Home automation using android mobiles
Durairaja
 
bluetooth controlled home automation using arduino by shubham sinha
bluetooth controlled home automation using arduino by shubham sinhabluetooth controlled home automation using arduino by shubham sinha
bluetooth controlled home automation using arduino by shubham sinha
Shubham Sinha
 
Controlling Home Appliances Using Voice
 Controlling Home Appliances Using Voice Controlling Home Appliances Using Voice
Controlling Home Appliances Using Voice
Edgefxkits & Solutions
 

What's hot (20)

Home automation based iot
Home automation based iotHome automation based iot
Home automation based iot
 
SMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONSMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATION
 
Home automation with arduino
Home automation with arduinoHome automation with arduino
Home automation with arduino
 
Arduino based Home Automation System with Android
Arduino based Home Automation System with AndroidArduino based Home Automation System with Android
Arduino based Home Automation System with Android
 
iot based home automation
iot based home automationiot based home automation
iot based home automation
 
Smart Home Automation And security System
Smart Home Automation And security SystemSmart Home Automation And security System
Smart Home Automation And security System
 
Voice Control Home Automation
Voice Control Home AutomationVoice Control Home Automation
Voice Control Home Automation
 
IOT: Home Automation using Android Application
IOT: Home Automation using Android ApplicationIOT: Home Automation using Android Application
IOT: Home Automation using Android Application
 
Bluetooth based home automation using Arduino UNO
Bluetooth based home automation using Arduino UNOBluetooth based home automation using Arduino UNO
Bluetooth based home automation using Arduino UNO
 
Iot based home automation
Iot based home automationIot based home automation
Iot based home automation
 
Home automation using wifi
Home automation using wifiHome automation using wifi
Home automation using wifi
 
Home Automation Using Arduino Uno and HC-05
Home Automation Using Arduino Uno and HC-05Home Automation Using Arduino Uno and HC-05
Home Automation Using Arduino Uno and HC-05
 
Home automation using IOT
Home automation using IOTHome automation using IOT
Home automation using IOT
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino
 
Android Based Home Automation Control
Android Based Home Automation ControlAndroid Based Home Automation Control
Android Based Home Automation Control
 
Bluetooth based home automation system
Bluetooth based home automation systemBluetooth based home automation system
Bluetooth based home automation system
 
home automation using esp8266
home automation using esp8266home automation using esp8266
home automation using esp8266
 
Home automation using android mobiles
Home automation using android mobilesHome automation using android mobiles
Home automation using android mobiles
 
bluetooth controlled home automation using arduino by shubham sinha
bluetooth controlled home automation using arduino by shubham sinhabluetooth controlled home automation using arduino by shubham sinha
bluetooth controlled home automation using arduino by shubham sinha
 
Controlling Home Appliances Using Voice
 Controlling Home Appliances Using Voice Controlling Home Appliances Using Voice
Controlling Home Appliances Using Voice
 

Viewers also liked

Bluetooth controlled home appliances
Bluetooth controlled home appliancesBluetooth controlled home appliances
Bluetooth controlled home appliances
ADARSH KUMAR
 
Machine électrique
Machine électriqueMachine électrique
Machine électrique
lolekeshungu
 
Smart homes
Smart homesSmart homes
Smart homes
Brad Fitzpatrick
 
introduction automatisme industriel
introduction automatisme industrielintroduction automatisme industriel
introduction automatisme industriel
Adnane Ahmidani
 
advanced low cost voice recognition based smart home automation using android
advanced low cost voice recognition based smart home automation using androidadvanced low cost voice recognition based smart home automation using android
advanced low cost voice recognition based smart home automation using android
kiranrocks
 
Home Automation System
Home Automation SystemHome Automation System
Smartify Home Automation - Client Presentation
Smartify Home Automation - Client PresentationSmartify Home Automation - Client Presentation
Smartify Home Automation - Client Presentation
Abhi Bavishi
 
Home Automation using Android Phones-Project first phase
Home Automation using Android Phones-Project first phaseHome Automation using Android Phones-Project first phase
Home Automation using Android Phones-Project first phase
thrishma reddy
 
Voice recognition based home automation system for paralyzed people
Voice recognition based home automation system for paralyzed peopleVoice recognition based home automation system for paralyzed people
Voice recognition based home automation system for paralyzed people
lal ahmed shaik
 
205044990 M Mphego Presentation
205044990 M Mphego Presentation205044990 M Mphego Presentation
205044990 M Mphego Presentation
Mpho Mphego
 
Smart Home Automation by LDCE student
Smart Home Automation by LDCE studentSmart Home Automation by LDCE student
Smart Home Automation by LDCE student
Mitul Lakhani
 
DTMF (Mobile) Based Automation
DTMF (Mobile) Based AutomationDTMF (Mobile) Based Automation
DTMF (Mobile) Based Automation
Yogesh Kumar
 
A. Attou Commande scalaire MAS
A. Attou  Commande scalaire MASA. Attou  Commande scalaire MAS
A. Attou Commande scalaire MAS
Attou
 
IoTeaTime #3 : Smart Home | De la maison connectée à la maison intelligente
IoTeaTime #3 : Smart Home | De la maison connectée à la maison intelligenteIoTeaTime #3 : Smart Home | De la maison connectée à la maison intelligente
IoTeaTime #3 : Smart Home | De la maison connectée à la maison intelligente
USERADGENTS
 
Smart Home • Sabrina Delale • Soutenance thèse pro MBA DMB
Smart Home • Sabrina Delale • Soutenance thèse pro MBA DMB Smart Home • Sabrina Delale • Soutenance thèse pro MBA DMB
Smart Home • Sabrina Delale • Soutenance thèse pro MBA DMB
Sabrina Delale
 
Presentation Smart Home With Home Automation
Presentation Smart Home With Home AutomationPresentation Smart Home With Home Automation
Presentation Smart Home With Home Automation
Arifur Rahman
 
Presentation on home automation
Presentation on home automationPresentation on home automation
Presentation on home automation
Subhash Kumar Yadav
 
Smart Home technologies
Smart Home technologiesSmart Home technologies
Smart Home technologies
loggcity
 
Voice controlled home appliances
Voice controlled home appliancesVoice controlled home appliances
Voice controlled home appliances
Edgefxkits & Solutions
 

Viewers also liked (19)

Bluetooth controlled home appliances
Bluetooth controlled home appliancesBluetooth controlled home appliances
Bluetooth controlled home appliances
 
Machine électrique
Machine électriqueMachine électrique
Machine électrique
 
Smart homes
Smart homesSmart homes
Smart homes
 
introduction automatisme industriel
introduction automatisme industrielintroduction automatisme industriel
introduction automatisme industriel
 
advanced low cost voice recognition based smart home automation using android
advanced low cost voice recognition based smart home automation using androidadvanced low cost voice recognition based smart home automation using android
advanced low cost voice recognition based smart home automation using android
 
Home Automation System
Home Automation SystemHome Automation System
Home Automation System
 
Smartify Home Automation - Client Presentation
Smartify Home Automation - Client PresentationSmartify Home Automation - Client Presentation
Smartify Home Automation - Client Presentation
 
Home Automation using Android Phones-Project first phase
Home Automation using Android Phones-Project first phaseHome Automation using Android Phones-Project first phase
Home Automation using Android Phones-Project first phase
 
Voice recognition based home automation system for paralyzed people
Voice recognition based home automation system for paralyzed peopleVoice recognition based home automation system for paralyzed people
Voice recognition based home automation system for paralyzed people
 
205044990 M Mphego Presentation
205044990 M Mphego Presentation205044990 M Mphego Presentation
205044990 M Mphego Presentation
 
Smart Home Automation by LDCE student
Smart Home Automation by LDCE studentSmart Home Automation by LDCE student
Smart Home Automation by LDCE student
 
DTMF (Mobile) Based Automation
DTMF (Mobile) Based AutomationDTMF (Mobile) Based Automation
DTMF (Mobile) Based Automation
 
A. Attou Commande scalaire MAS
A. Attou  Commande scalaire MASA. Attou  Commande scalaire MAS
A. Attou Commande scalaire MAS
 
IoTeaTime #3 : Smart Home | De la maison connectée à la maison intelligente
IoTeaTime #3 : Smart Home | De la maison connectée à la maison intelligenteIoTeaTime #3 : Smart Home | De la maison connectée à la maison intelligente
IoTeaTime #3 : Smart Home | De la maison connectée à la maison intelligente
 
Smart Home • Sabrina Delale • Soutenance thèse pro MBA DMB
Smart Home • Sabrina Delale • Soutenance thèse pro MBA DMB Smart Home • Sabrina Delale • Soutenance thèse pro MBA DMB
Smart Home • Sabrina Delale • Soutenance thèse pro MBA DMB
 
Presentation Smart Home With Home Automation
Presentation Smart Home With Home AutomationPresentation Smart Home With Home Automation
Presentation Smart Home With Home Automation
 
Presentation on home automation
Presentation on home automationPresentation on home automation
Presentation on home automation
 
Smart Home technologies
Smart Home technologiesSmart Home technologies
Smart Home technologies
 
Voice controlled home appliances
Voice controlled home appliancesVoice controlled home appliances
Voice controlled home appliances
 

Similar to HOME AUTOMATION USING ARDUINO

DTMF base Mobile controlled appliances control
DTMF base Mobile controlled  appliances controlDTMF base Mobile controlled  appliances control
DTMF base Mobile controlled appliances control
Gopal Bardhan
 
A project report on Remote Monitoring of a Power Station using GSM and Arduino
A project report on Remote Monitoring of a Power Station using GSM and ArduinoA project report on Remote Monitoring of a Power Station using GSM and Arduino
A project report on Remote Monitoring of a Power Station using GSM and Arduino
Jawwad Sadiq Ayon
 
Substation monitoring1
Substation monitoring1Substation monitoring1
Substation monitoring1
buckky
 
IR BASED HOME AUTOMATION USING ARDUINO UNO
IR BASED HOME AUTOMATION USING ARDUINO UNOIR BASED HOME AUTOMATION USING ARDUINO UNO
IR BASED HOME AUTOMATION USING ARDUINO UNO
Mln Phaneendra
 
GSM-BASED-HOME-AUTOMATION-PPT
GSM-BASED-HOME-AUTOMATION-PPTGSM-BASED-HOME-AUTOMATION-PPT
GSM-BASED-HOME-AUTOMATION-PPT
Tapan Kumar Mohanta
 
home appliance control using gsm
home appliance control using gsmhome appliance control using gsm
home appliance control using gsm
Chinmoy Jena
 
Development of a Low Cost, Reliable & Scalable Home Automation System.
Development of a Low Cost, Reliable & Scalable Home Automation System.Development of a Low Cost, Reliable & Scalable Home Automation System.
Development of a Low Cost, Reliable & Scalable Home Automation System.
imtiyazEEE
 
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALAfault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
MAHESH294
 
KAGITHALA YASASWINI
KAGITHALA YASASWINIKAGITHALA YASASWINI
KAGITHALA YASASWINI
MAHESH294
 
Zigbee based two way wireless chatting system
Zigbee based two way wireless chatting systemZigbee based two way wireless chatting system
Zigbee based two way wireless chatting system
Shashidhar Reddy
 
Street light controlling using Microcontroller
Street light controlling using MicrocontrollerStreet light controlling using Microcontroller
Street light controlling using Microcontroller
9989476539
 
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENTSTREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
m sivareddy
 
Home automation control system using dtmf technology
Home automation control system using dtmf technologyHome automation control system using dtmf technology
Home automation control system using dtmf technology
Govind Ekshinge
 
IRJET- Smart Home Automation System using 8051 Micro-Controller
IRJET- Smart Home Automation System using 8051 Micro-ControllerIRJET- Smart Home Automation System using 8051 Micro-Controller
IRJET- Smart Home Automation System using 8051 Micro-Controller
IRJET Journal
 
smart home automation system
smart home automation systemsmart home automation system
smart home automation system
MdSaifuddinQuader
 
Dtmf based appliances control system for rural and agricultural applications
Dtmf based appliances control system for rural and agricultural applicationsDtmf based appliances control system for rural and agricultural applications
Dtmf based appliances control system for rural and agricultural applications
Sa Saikiran
 
home automation.pptx
home automation.pptxhome automation.pptx
home automation.pptx
18037MANOJKUMAR
 
IRJET- IoT based Industrial Automation
IRJET-  	  IoT based Industrial AutomationIRJET-  	  IoT based Industrial Automation
IRJET- IoT based Industrial Automation
IRJET Journal
 
CONTROLLING HOME APPLIANCES USING REMOTE(1)
CONTROLLING HOME APPLIANCES USING REMOTE(1)CONTROLLING HOME APPLIANCES USING REMOTE(1)
CONTROLLING HOME APPLIANCES USING REMOTE(1)
Ambar Gupta
 
Pc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb applicationPc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb application
Edgefxkits & Solutions
 

Similar to HOME AUTOMATION USING ARDUINO (20)

DTMF base Mobile controlled appliances control
DTMF base Mobile controlled  appliances controlDTMF base Mobile controlled  appliances control
DTMF base Mobile controlled appliances control
 
A project report on Remote Monitoring of a Power Station using GSM and Arduino
A project report on Remote Monitoring of a Power Station using GSM and ArduinoA project report on Remote Monitoring of a Power Station using GSM and Arduino
A project report on Remote Monitoring of a Power Station using GSM and Arduino
 
Substation monitoring1
Substation monitoring1Substation monitoring1
Substation monitoring1
 
IR BASED HOME AUTOMATION USING ARDUINO UNO
IR BASED HOME AUTOMATION USING ARDUINO UNOIR BASED HOME AUTOMATION USING ARDUINO UNO
IR BASED HOME AUTOMATION USING ARDUINO UNO
 
GSM-BASED-HOME-AUTOMATION-PPT
GSM-BASED-HOME-AUTOMATION-PPTGSM-BASED-HOME-AUTOMATION-PPT
GSM-BASED-HOME-AUTOMATION-PPT
 
home appliance control using gsm
home appliance control using gsmhome appliance control using gsm
home appliance control using gsm
 
Development of a Low Cost, Reliable & Scalable Home Automation System.
Development of a Low Cost, Reliable & Scalable Home Automation System.Development of a Low Cost, Reliable & Scalable Home Automation System.
Development of a Low Cost, Reliable & Scalable Home Automation System.
 
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALAfault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
 
KAGITHALA YASASWINI
KAGITHALA YASASWINIKAGITHALA YASASWINI
KAGITHALA YASASWINI
 
Zigbee based two way wireless chatting system
Zigbee based two way wireless chatting systemZigbee based two way wireless chatting system
Zigbee based two way wireless chatting system
 
Street light controlling using Microcontroller
Street light controlling using MicrocontrollerStreet light controlling using Microcontroller
Street light controlling using Microcontroller
 
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENTSTREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
 
Home automation control system using dtmf technology
Home automation control system using dtmf technologyHome automation control system using dtmf technology
Home automation control system using dtmf technology
 
IRJET- Smart Home Automation System using 8051 Micro-Controller
IRJET- Smart Home Automation System using 8051 Micro-ControllerIRJET- Smart Home Automation System using 8051 Micro-Controller
IRJET- Smart Home Automation System using 8051 Micro-Controller
 
smart home automation system
smart home automation systemsmart home automation system
smart home automation system
 
Dtmf based appliances control system for rural and agricultural applications
Dtmf based appliances control system for rural and agricultural applicationsDtmf based appliances control system for rural and agricultural applications
Dtmf based appliances control system for rural and agricultural applications
 
home automation.pptx
home automation.pptxhome automation.pptx
home automation.pptx
 
IRJET- IoT based Industrial Automation
IRJET-  	  IoT based Industrial AutomationIRJET-  	  IoT based Industrial Automation
IRJET- IoT based Industrial Automation
 
CONTROLLING HOME APPLIANCES USING REMOTE(1)
CONTROLLING HOME APPLIANCES USING REMOTE(1)CONTROLLING HOME APPLIANCES USING REMOTE(1)
CONTROLLING HOME APPLIANCES USING REMOTE(1)
 
Pc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb applicationPc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb application
 

More from Eklavya Sharma

PROTECTION OF ELECTRICAL EQUIPMENT USING 3D THERMOGRAPHY AND IMAGE PROCESSING
PROTECTION OF ELECTRICAL EQUIPMENT USING 3D THERMOGRAPHY AND IMAGE PROCESSINGPROTECTION OF ELECTRICAL EQUIPMENT USING 3D THERMOGRAPHY AND IMAGE PROCESSING
PROTECTION OF ELECTRICAL EQUIPMENT USING 3D THERMOGRAPHY AND IMAGE PROCESSING
Eklavya Sharma
 
SMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONSMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATION
Eklavya Sharma
 
Three-Axis Auto Stabilizing Video Camera Platform
Three-Axis Auto Stabilizing Video Camera PlatformThree-Axis Auto Stabilizing Video Camera Platform
Three-Axis Auto Stabilizing Video Camera Platform
Eklavya Sharma
 
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
Eklavya Sharma
 
Design a Highly Efficient Push-Pull converter for Photovoltaic Applications
Design a Highly Efficient Push-Pull converter for Photovoltaic ApplicationsDesign a Highly Efficient Push-Pull converter for Photovoltaic Applications
Design a Highly Efficient Push-Pull converter for Photovoltaic Applications
Eklavya Sharma
 
High efficiency push pull converter for photovoltaic applications
High efficiency push pull converter for photovoltaic applicationsHigh efficiency push pull converter for photovoltaic applications
High efficiency push pull converter for photovoltaic applications
Eklavya Sharma
 
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
Eklavya Sharma
 
Three axis auto stabilizing video camera platform
Three axis auto stabilizing video camera platformThree axis auto stabilizing video camera platform
Three axis auto stabilizing video camera platform
Eklavya Sharma
 
3D Thermal Imaging
3D Thermal Imaging3D Thermal Imaging
3D Thermal Imaging
Eklavya Sharma
 
Input output , heat rate characteristics and Incremental cost
Input output , heat rate characteristics and Incremental costInput output , heat rate characteristics and Incremental cost
Input output , heat rate characteristics and Incremental cost
Eklavya Sharma
 
Infinite bus bar in power system
Infinite bus bar in power systemInfinite bus bar in power system
Infinite bus bar in power system
Eklavya Sharma
 
Smart grid technology
Smart grid technologySmart grid technology
Smart grid technology
Eklavya Sharma
 
Smart grid technology
Smart grid technologySmart grid technology
Smart grid technology
Eklavya Sharma
 
Coal based thermal power plant
Coal based thermal power plant Coal based thermal power plant
Coal based thermal power plant
Eklavya Sharma
 
Advanced Metering Infrastructure Standards and protocol
Advanced Metering Infrastructure Standards and protocolAdvanced Metering Infrastructure Standards and protocol
Advanced Metering Infrastructure Standards and protocol
Eklavya Sharma
 
Advanced Metering Infrastructure Standards and protocol
Advanced Metering Infrastructure Standards and protocolAdvanced Metering Infrastructure Standards and protocol
Advanced Metering Infrastructure Standards and protocol
Eklavya Sharma
 
Case study On KFC
Case study On KFCCase study On KFC
Case study On KFC
Eklavya Sharma
 
Smart grid Technology
Smart grid TechnologySmart grid Technology
Smart grid Technology
Eklavya Sharma
 
A case study On Microsoft
A case study On MicrosoftA case study On Microsoft
A case study On Microsoft
Eklavya Sharma
 
Enhancing The Quality Of Primary Education
Enhancing The Quality Of Primary EducationEnhancing The Quality Of Primary Education
Enhancing The Quality Of Primary Education
Eklavya Sharma
 

More from Eklavya Sharma (20)

PROTECTION OF ELECTRICAL EQUIPMENT USING 3D THERMOGRAPHY AND IMAGE PROCESSING
PROTECTION OF ELECTRICAL EQUIPMENT USING 3D THERMOGRAPHY AND IMAGE PROCESSINGPROTECTION OF ELECTRICAL EQUIPMENT USING 3D THERMOGRAPHY AND IMAGE PROCESSING
PROTECTION OF ELECTRICAL EQUIPMENT USING 3D THERMOGRAPHY AND IMAGE PROCESSING
 
SMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONSMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATION
 
Three-Axis Auto Stabilizing Video Camera Platform
Three-Axis Auto Stabilizing Video Camera PlatformThree-Axis Auto Stabilizing Video Camera Platform
Three-Axis Auto Stabilizing Video Camera Platform
 
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
 
Design a Highly Efficient Push-Pull converter for Photovoltaic Applications
Design a Highly Efficient Push-Pull converter for Photovoltaic ApplicationsDesign a Highly Efficient Push-Pull converter for Photovoltaic Applications
Design a Highly Efficient Push-Pull converter for Photovoltaic Applications
 
High efficiency push pull converter for photovoltaic applications
High efficiency push pull converter for photovoltaic applicationsHigh efficiency push pull converter for photovoltaic applications
High efficiency push pull converter for photovoltaic applications
 
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
 
Three axis auto stabilizing video camera platform
Three axis auto stabilizing video camera platformThree axis auto stabilizing video camera platform
Three axis auto stabilizing video camera platform
 
3D Thermal Imaging
3D Thermal Imaging3D Thermal Imaging
3D Thermal Imaging
 
Input output , heat rate characteristics and Incremental cost
Input output , heat rate characteristics and Incremental costInput output , heat rate characteristics and Incremental cost
Input output , heat rate characteristics and Incremental cost
 
Infinite bus bar in power system
Infinite bus bar in power systemInfinite bus bar in power system
Infinite bus bar in power system
 
Smart grid technology
Smart grid technologySmart grid technology
Smart grid technology
 
Smart grid technology
Smart grid technologySmart grid technology
Smart grid technology
 
Coal based thermal power plant
Coal based thermal power plant Coal based thermal power plant
Coal based thermal power plant
 
Advanced Metering Infrastructure Standards and protocol
Advanced Metering Infrastructure Standards and protocolAdvanced Metering Infrastructure Standards and protocol
Advanced Metering Infrastructure Standards and protocol
 
Advanced Metering Infrastructure Standards and protocol
Advanced Metering Infrastructure Standards and protocolAdvanced Metering Infrastructure Standards and protocol
Advanced Metering Infrastructure Standards and protocol
 
Case study On KFC
Case study On KFCCase study On KFC
Case study On KFC
 
Smart grid Technology
Smart grid TechnologySmart grid Technology
Smart grid Technology
 
A case study On Microsoft
A case study On MicrosoftA case study On Microsoft
A case study On Microsoft
 
Enhancing The Quality Of Primary Education
Enhancing The Quality Of Primary EducationEnhancing The Quality Of Primary Education
Enhancing The Quality Of Primary Education
 

Recently uploaded

DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
gerogepatton
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
171ticu
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
bijceesjournal
 
Casting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdfCasting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdf
zubairahmad848137
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
Textile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdfTextile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdf
NazakatAliKhoso2
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
camseq
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
IJNSA Journal
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
Rahul
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
wisnuprabawa3
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
171ticu
 

Recently uploaded (20)

DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
 
Casting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdfCasting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdf
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
 
Textile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdfTextile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdf
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
 

HOME AUTOMATION USING ARDUINO

  • 1. A PROJECT REPORT ON HOME AUTOMATION USING ARDUINO SubmittedBy: - SubmittedTo:- Eklavya Sharma SatishKumar Rai Roll No.- 12EBKEE031 AssistantProfessor(The Branch- Electrical EngineeringI Departmentof Electronics) B K BirlaInstitute of Engineering&Technology,Pilani B K BirlaInstitute of Engineering& Technology, Pilani Mobile:+91 9785551210
  • 2. 1. INTRODUCTION Home automation is becoming more and more popular day by day due to its numerous advantages. This can be achieved by local networking or by remote control. Our Aim is to design a kit that can be used for controlling AC Loads from Android phone by using Arduino as microcontroller. Home automation refers to the use of computer and information technology to control home Appliances and features (such as windows or lighting).Systems can range from simple remote control of lighting through to complex computer/micro-controller based networks with varying degrees of intelligence and automation. Home automation is adopted for reasons of ease, security and energy efficiency. In modern construction in industrialized nations, most homes have been wired for electrical powe r, telephones,TV outlets (cable or antenna), and a doorbell.Many household tasks were automated by the development of specialized Appliances. For instance, automatic washing machines were developed to reduce the manual labor of cleaning clothes, and water heaters reduced the labor necessary for bathing. 2. LIST OF COMPONENTS REQUIRED 2.1 STEP DOWN TRANSFORMER A single phase 230:18 V step down transformer is required for 12v dc power supply. Figure 1: Step down transformer 2.2 MICROCONTROLLER We have used Arduino as microcontroller for giving signals to the relays and taking signal from HC 06.Which takes 5 V dc power supply.
  • 3. Figure 2: Arduino Microcontroller 2.3 DC RELAYS Required no of relays of 12 V DC are used for switching purposes. Figure 3: DC Relays 2.4 DIODES Diodes are used in the circuit for rectification and a single diode is used as freewheeling diode. All diodes are 1N4007. Figure 4: Diodes 2.5 MOSFET General purpose NMOS IRF510 is required for switching operation. 2.6 BLUETOOTH RECEIVER HC 06 A Bluetooth receiver HC 06 is required for catching signal from android phone.
  • 4. Figure 6: Bluetooth Receiver 2.7 VOLTAGE REGULATOR IC LM 7812 a voltage regulator IC is used in the 12V DC Power supply. 2.8 LOAD A single phase 230 V, 50 Hz, load is required. 2.9 ELECTRICAL WIRE AND JUMPER WIRES Electrical wire is used in the AC power supply and Jumper wire in the DC power Supply. 2.10 RESISTANCE AND CAPACITANCES Resistances are used for current limiting and capacitances are used for reducing ripples in DC power supply as per specifications. 3. CIRCUIT DIAGRAM
  • 5. Fig. Arduino Controlled Relay Fig. Full-Wave Bridge Rectifier WORKING- When the button is pressed in the application then it will send a signal to the Arduino board through HC-06 which will put pin 13 in HIGH state, meaning 5V on pin 13. This voltage is used to drive the MOSFET that willswitch ON the relay and the load will be powered from the main power supply. We use an external power supply (Vcc) that is between 7 to 12 volts to power up the Arduino board and the transistor + relay. For that purpose we’ve made a full wave bridge rectifier. The load uses its own power supply, for instance if you use a light bulb then you might connect it to the 110/220V mains or any other power source. ARDUINO CODE- const int relay = 13; int val; // thesetup routine runs once when youpress reset: voidsetup() { // initializethedigitalpinas an output. pinMode(relay,OUTPUT); Serial.begin (9600); } // theloop routine runs over and over againforever: voidloop() { if(Serial) { if(Serial.available()>0)
  • 6. { val=Serial.read(); Serial.println(val,DEC); relaycontrol(val); } } } voidrelaycontrol(int val) { switch(val) { case 97 : turnon(); break; case 101 : turnoff(); break; default: turnoff(); } } voidturnon() { digitalWrite(relay,HIGH); delay(1000); } voidturnoff() { digitalWrite(relay,LOW); delay(1000); } ANDROID APPLICATION A smart phone is a mobile phone with an operating system. Smart phones typically include the features of a phone with those of another popular consumer device, such as a personal digital assistant, a digital camera, a media player or a GPS navigation unit. Later smartphones include all of those plus a touchscreen interface, broadband internet, web browsing, Wi-Fi, 3rd-party Apps, motion sensors and mobile payment mechanism. Even with limited programming experience, you can easily learn to create Apps for the Android platform with this complete guide to App Inventor for Android. App Inventor for Android is a visual language that relies on simple programming blocks that users can drag and drop to create Apps.
  • 7. CODE BLOCKS- CONCLUSION The systemasthe name indicates,‘Androidbasedhomeautomation’makesthe systemmore flexibleand provides attractive user interface compared to other home automation systems. In this system we integrate mobile devices into home automation systems. A novel architecture for a home automation systemis proposedusingthe relativelynew communicationtechnologies.The systemconsistsof mainly three componentsisaBluetoothmodule,Arduinomicrocontrollerandrelaycircuits.Bluetoothisusedas the communication channel between android phone and the Arduino microcontroller. We hide the complexityof the notionsinvolvedinthe home automationsystemby includingthemintoa simple,but comprehensive setof relatedconcepts.Thissimplificationisneededtofitasmuchof the functionalityon the limited space offered by a mobile device’s display.