0% found this document useful (0 votes)
37 views

IoT Report

The document is a project report on a home automation system submitted by Vinay Nalavade and others. It describes the development of a system using an Arduino Uno, Bluetooth, LED bulbs, and an Android application to remotely control lighting in a home. The report includes sections on requirements, diagrams, code, results, and a conclusion on the benefits of the system for enhancing living spaces and its potential for expansion.

Uploaded by

05 Dhiraj Aldar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views

IoT Report

The document is a project report on a home automation system submitted by Vinay Nalavade and others. It describes the development of a system using an Arduino Uno, Bluetooth, LED bulbs, and an Android application to remotely control lighting in a home. The report includes sections on requirements, diagrams, code, results, and a conclusion on the benefits of the system for enhancing living spaces and its potential for expansion.

Uploaded by

05 Dhiraj Aldar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

A

PROJECT REPORT
On

“Home Automation System”


Submitted in the fulfillment of the requirement for

THIRD YEAR

COMPUTER SCIENCE & ENGINEERING


By
Mr. Vinay Nalavade (33)
Miss. Sakshi Bansode (45)
Miss. Pratiksha Jagtap (42)
Miss. Anjali Varade (40)
Miss. Simran Sanadi (46)
Miss. Sukanya Mashalkar (43)
Under the guidance of

Dr.Thigale S.B

DEPARTMENT OF COMPUTER ENGINEERING

Fabtech Technical Campus,


College of Engineering and Research, Sangola

2022-2023
Fabtech Technical Campus,
College of Engineering and Research, Sangola

Certificate

This is to certify that, the Seminar entitled “Home Automation System” has
submitted by Mr. Vinay Nalavade, Miss.Sakshi Bansode, Miss.Pratiksha Jagtap,
Miss.Anjali Varade, Miss.Simran Sanadi & Miss.Sukanya Mashalkar for
fulfillment of C.S.E. Computer Engineering as per curriculum laid by the
DBATU University, Lonere during the academic
year 2022-23.

Dr. Thigale.S.B Dr. Thigale .S.B Prof.Shendge R.B.

(Guide) (HOD) (Principal)

Date:

Place: Sangola
ACKNOWLEDGEMENT

It was very exciting for me to work on the seminar report “House Price
Prediction”. During this work I have gained both practical as well as theoretical
knowledge of great significance. I am greatly thankful to all faculty members of
college to guide me through this work. I am greatly obliged to our respected guide
Dr.Thigale.S.B. for his valuable suggestions and help. It has been a highly
encouraging and knowledge gaining experience. He has been a source of
inspiration throughout the Report and has helped me in all our problems. Finally I
would like to thank Dr.Thigale.S.B Head of Department of Computer Engineering
Department, whose sincere and careful guidance led me to complete this project. I
express our deep sense of gratitude to Prof. Shendge R.B. our Principal for his
constant interest and encouragement throughout the completion of my report. I
also thankful to our friends for their extended support and valuable guidance

Mr. Vinay Nalavade


Miss. Sakshi Bansode
Miss. Pratiksha Jagtap
Miss. Anjali Varade
Miss. Simran Sanadi
Miss. Sukanya Mashalkar
CONTENT

SR.NO CHAPTERS PAGE.NO

1 Introduction 01

2 Requirement 02

3 Diagram 03

4 Code 04

5 Result 06

6 Conclusion 07
Introduction
Our home automation system combines the power of Arduino Uno, Bluetooth
technology, LED bulbs, cables, and an Android application to bring convenience
and control to our living spaces. With this setup, we can remotely manage and
monitor various aspects of our home environment, such as lighting, using our
smartphones. The Arduino Uno serves as the central control unit, communicating
with the Android application via Bluetooth. The LED bulbs provide energy-
efficient and customizable lighting options, while the cables establish the necessary
connections between the components. Together, this system offers an innovative
and user-friendly approach to home automation, allowing us to enhance comfort,
save energy, and simplify our daily routines.
REQUIREMENT

1. Software Required Tools


• Arduino cc
• Android Application : Bluetooth Controller for Arduino UNO

2. Hardware Required Tools


• Arduino UNO
• Female Cable Connector
• Soldering Weir
• Bluetooth HC-05 Module
• Power + Data Cable
DIAGRAM
CODE
int Green = 3;

int Orange = 4;

int Red = 5;

void setup() {

Serial.begin(9600);

pinMode(Green, OUTPUT);

pinMode(Orange, OUTPUT);

pinMode(Red, OUTPUT);

String voice;

void loop() {

if (Serial.available() > 0)

voice = Serial.readString();

Serial.println(voice);

if (voice.equals("green"))

digitalWrite(Green, HIGH);

}
else if (voice.equals("green off"))

digitalWrite(Green, LOW);

if (voice.equals("orange"))

digitalWrite(Orange, HIGH);

else if (voice.equals("orange off"))

digitalWrite(Orange, LOW);

if (voice.equals("red"))

digitalWrite(Red, HIGH);

else if (voice.equals("red off"))

digitalWrite(Red, LOW);

}
RESULTS

Project Demo link:

https://www.linkedin.com/posts/vinaynalavade_innovation-students-project-
activity-7071436425627340800-
zpnQ?utm_source=share&utm_medium=member_desktop
CONCLUSION

Our home automation system utilizing Arduino Uno, Bluetooth technology,


LED bulbs, cables, and an Android application offers a convenient and user-
friendly solution for controlling and managing various aspects of our home.
It provides the ability to remotely control and monitor our home
environment, particularly the lighting, through the Android application. The
integration of LED bulbs ensures energy efficiency and customizable
lighting options. The system's modular design allows for future expansion
and integration with other smart devices. As technology progresses, we can
expect further improvements and the potential for additional functionalities
in home automation systems. Overall, our home automation system
represents a practical and accessible approach to enhancing our living spaces
and offers a glimpse into the future of smart homes.

Reference Link:
https://chat.openai.com/
https://www.youtube.com/watch?v=k9ofnq-laVw

You might also like