Home Automation Using Microcontroller Arduino Uno
Home Automation Using Microcontroller Arduino Uno
case '6':blub1Off();
VII. ALGORITHM USED blub2Off();
char ch; Serial.print("Both Off");
void blub1On(){ break;
digitalWrite(6,1); }
digitalWrite(7,0); }
} }
void blub2On(){ VIII. ADVANTAGES
digitalWrite(8,1);
digitalWrite(9,0); It is robust and easy to use system.
} No extra training is required for new users. It is
void blub1Off(){ user friendly.
digitalWrite(6,0);
digitalWrite(7,1); All the control would be in your hands .
} A wide range of appliances can be controlled
void blub2Off(){ within the range of Bluetooth.
digitalWrite(8,0);
digitalWrite(9,1); There is a scope for future advancement through
} the use of IOT.
void setup() {
// put your setup code here, to run once: I X. ACKNOWLEDGEMENT
pinMode(6,OUTPUT); We are grateful to our department of electrical and
pinMode(7,OUTPUT); electronics engineering for helping us to complete our paper.
pinMode(8,OUTPUT);
pinMode(9,OUTPUT); X. CONCLUSION
Serial.begin(9600); This project is based on Android and Arduino platform both
blub1Off(); of which are FOSS (Free Open Source Software)[5]. So the
blub2Off(); overall implementation cost is very cheap and it is affordable
} by a common person. Looking at the current scenario we
have chosen Android platform so that most of the people can
void loop() {
get benefit.
// put your main code here, to run repeatedly:
if(Serial.available()>0) XI. REFERENCES
[1] The Bluetooth based LED control for arduino test platform using
{ mobile app published in International Journal Of Scientific &
ch=Serial.read(); Technology Research Volume 4, Issue 06, JUNE 2015.
switch(ch) [2] Home Automation System Using Android and Arduino Board
{ published in International Journal of Innovative Research in Science,
case '1':blub1On(); Engineering and Technology (An ISO 3297: 2007 Certified
Serial.print("Bulb1 On"); Organization) Vol. 5, Issue 4, April 2016.
[3] Arduino Based Bluetooth Controlled Robot published In International
break;
Journal of Engineering Trends and Technology (IJETT) – Volume 32
case '2':blub2On(); Number 5- February 2016.
Serial.print("Bulb2 On"); [4] Arduino Based: Smart Light Control System published in
break; International Journal of Engineering Research and General Science
case '3':blub1Off(); Volume 4, Issue 2, March- April, 2016 ISSN 2091-2730 784.
Serial.print("Bulb1 Off"); [5] Bluetooth Remote Controlled Car using Arduino published in
break; International Journal of Engineering Trends and Technology (IJETT) –
Volume 33 Number 8- March 2016.
case '4':blub2Off(); [6] Arduino Based Automatic Plant Watering System published in
Serial.print("Bulb2 Off"); International Journal of Advanced Research in Computer Science and
break; Software Engineering 4(10), October - 2014, pp. 449-456.
case '5':blub1On();
blub2On();
Serial.print("Both On");
break;