0% found this document useful (0 votes)
8 views15 pages

Microcontroller Project Report

The document outlines a project titled 'House Automation System Using Microcontroller' developed by students at Central Polytechnic College, aimed at automating household appliances through an IoT-based system using the ESP8266 microcontroller and Blynk platform. The project enhances convenience, energy efficiency, and safety by allowing remote control of devices via a smartphone application. Future expansions include integrating additional sensors and voice control capabilities.

Uploaded by

dayaanidi8
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views15 pages

Microcontroller Project Report

The document outlines a project titled 'House Automation System Using Microcontroller' developed by students at Central Polytechnic College, aimed at automating household appliances through an IoT-based system using the ESP8266 microcontroller and Blynk platform. The project enhances convenience, energy efficiency, and safety by allowing remote control of devices via a smartphone application. Future expansions include integrating additional sensors and voice control capabilities.

Uploaded by

dayaanidi8
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING

CENTRAL POLYTECHNIC COLLEGE

HOUSE AUTOMATION SYSTEM USING MICROCONTROLLER

2024-2027

BATCH – 01

PROJECT WORK DONE BY

[Link] REGISTER NUMBER NAME

1 401125545 SRI DHINESH KUMAR M

2 401124065 TAMILARASAN S

PROJECT GUIDE HEAD OF THE DEPARTMENT

Mr. S. NASEER MOHAMED Mrs. M. J. ANITHA


CENTRAL POLYTECHNIC COLLEGE

THARAMANI, CHENNAI -600113

DEPARTMENT OF ELECTRONICS AND COMMUNICATION

ENGINEERRING (2022-2025)

BONAFIDE CERTIFCATE

This is to certify that the project report titled HOUSE AUTOMATION SYSTEM USING

MICROCONTROLLER is the Bonafide record of work done by…………………………………………..

in partial fulfilment of the Requirement for the Diploma in Electronics and Communication

Engineering during the year 2024-2027.

REGISTER NUMBER: ………………………….

MARK AWARDED : ………………………….

Submitted for the board examinations held at central polytechnic college, Tharamani , Chennai
-600113 on ………………………….

INTERNAL EXAMINER EXTERNAL EXAMINER


ACKNOWLEDGEMENT

First of all, we would like to thank to our parent for creating us a Diploma Engineers.

We would like to thank our respectable principal of Dr. O.G. DHARANIPATHI M.E, PhD, who
leads our college in respectable manner.

We express to thank to Head of our Department of Mrs M.J. ANITHA M.E, and Mrs.
K. KAVITHA M.E, PhD, for providing us more facilities and also for great encouragement
while doing our project.

We would like thank to our loveable project guide of Mr S. NASEER MOHAMED [Link]. And
their guidance and encouragement as helpful to do our project.

We would like thank to our department of staff members for providing to us a great
supported and helped to finish our project.
ABSTRACT:

The House Automation System is an Internet of Things (IoT) based project designed to
automate and remotely control household electrical appliances using a smartphone
application. The system utilizes the ESP8266 Wi-Fi module in combination with a two-
channel relay module to control electrical loads such as lights and fans. The Blynk IoT
platform is used to create a user-friendly mobile interface that enables real-time monitoring
and control.

The primary objective of this project is to enhance convenience, improve energy efficiency,
and increase safety in residential environments. By integrating Wi-Fi connectivity, the
system allows users to operate appliances from anywhere in the world using internet
connectivity.

This project demonstrates practical implementation of embedded systems, wireless


communication, and cloud-based IoT platforms. The solution is cost-effective, scalable, and
easy to install. The proposed system can be expanded to include additional sensors such as
temperature, gas, motion, and security cameras for complete smart home functionality.

The House Automation System provides an efficient and reliable solution for modern smart
living and contributes to the advancement of IoT applications in residential environments.
INTRODUCTION:

In recent years, home automation has become one of the most important applications of the
Internet of Things (IoT). With the rapid growth of smart devices and wireless technologies,
controlling household appliances remotely has become easier and more affordable.

Traditional home electrical systems require manual operation. This can be inconvenient,
especially when users forget to switch off appliances. It also leads to unnecessary energy
consumption. Smart home systems solve these problems by enabling remote access and
automation.

The House Automation System designed in this project uses the ESP8266 NodeMCU
microcontroller with built-in Wi-Fi capabilities. The Blynk application provides a graphical
interface for controlling devices. The relay module acts as a switching device to turn
electrical appliances ON or OFF.

This project combines hardware and software integration to create a reliable smart home
solution. The system architecture includes a microcontroller, Wi-Fi connectivity, cloud
server, and mobile application interface.
EXISTING SYSTEM:

In traditional home electrical systems, appliances are controlled manually using switches.
This system does not provide remote access or automation features.

Some early automation systems required complex wiring and expensive controllers, making
them unsuitable for common households. These systems also lacked internet connectivity.

Existing systems may also consume more power due to standby losses and lack of
monitoring. There is limited flexibility and scalability in such systems.

Therefore, there is a need for a cost-effective, internet-enabled, and user-friendly home


automation system.
PROPOSED SYSTEM:

The proposed House Automation System uses the ESP8266 microcontroller and Blynk IoT
platform to provide remote control functionality.

The system connects to a Wi-Fi network and communicates with the Blynk cloud server.
Users can control appliances through virtual buttons in the Blynk mobile application.

The relay module is connected to GPIO pins D0 and D1 of the ESP8266. When a user presses
a button in the Blynk app, the signal is sent to the ESP8266 which activates or deactivates
the relay accordingly.

The proposed system is low-cost, easy to install, and scalable. Additional relays and sensors
can be added to expand functionality.
BLOCK DIAGRAM:

The block diagram of the House Automation System consists of the following components:

The smartphone sends control commands to the Blynk server through the internet. The
ESP8266 retrieves commands from the server and controls the relays accordingly.
HARDWARE COMPONENTS:

1. ESP8266 NodeMCU: A Wi-Fi enabled microcontroller used to control relays.

2. Two-Channel Relay Module: Used to switch high-voltage appliances.

3. Power Supply: Provides regulated 5V/3.3V power.

4. Wi-Fi Router: Provides internet connectivity.

5. Electrical Loads: Such as lights or fans.

Each component plays a critical role in ensuring proper functionality of the system.
SOFTWARE COMPONENTS:

1. Arduino IDE: Used to write and upload code to ESP8266.

2. Blynk IoT Platform: Provides mobile app interface.

3. Embedded C Programming: Used for coding the microcontroller.

The software integrates Wi-Fi communication and GPIO control logic to operate relays
based on user input.
APPENDIX – SOURCE CODE:

#define BLYNK_TEMPLATE_ID "TMPL3-JWVlCzN"


#define BLYNK_TEMPLATE_NAME "SRIHARI"
#define BLYNK_AUTH_TOKEN "5DFNvqq1vXsI8DOpT52FwfeigbyaIkEr"
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

char ssid[] = "your wifi name";


char pass[] = "your wifi
password";

#define relay1 D0
#define relay2 D1

BLYNK_WRITE(V0)
{
int value = [Link]();
digitalWrite(relay1, value ? LOW : HIGH);
}

BLYNK_WRITE(V1)
{
int value = [Link]();
digitalWrite(relay2, value ? LOW : HIGH);
}

void setup()
{
[Link](115200);
pinMode(relay1, OUTPUT);
pinMode(relay2, OUTPUT);
digitalWrite(relay1, HIGH);
digitalWrite(relay2, HIGH);
[Link](BLYNK_AUTH_TOKEN, ssid, pass);
}

void loop()
{
[Link]();

}
RESULT:

The House Automation System was successfully implemented and tested.

The relays responded accurately to commands from the Blynk mobile application.

The system maintained stable Wi-Fi connectivity and demonstrated reliable performance.

The project proved that IoT-based home automation can be implemented at low cost with
high efficiency.
FUTURE SCOPE:

The system can be expanded to include temperature sensors, motion detection, gas sensors,
and security cameras.

Voice control using Google Assistant or Alexa can be integrated.

Energy monitoring features can be added for power consumption analysis.

Artificial Intelligence can be implemented for predictive automation.


CONCLUSION:

The House Automation System successfully demonstrates the application of IoT in smart
homes.

The project achieved remote control functionality using ESP8266 and Blynk platform.

The system is cost-effective, scalable, and user-friendly.

This project enhances convenience, safety, and energy efficiency in modern households.
REFERENCES:

1. L. Atzori, A. Iera, and G. Morabito, “The Internet of Things: A Survey,” Computer Networks,
vol. 54, no. 15, pp. 2787–2805, 2010.

2. J. Gubbi, R. Buyya, S. Marusic, and M. Palaniswami, “Internet of Things (IoT): A Vision,


Architectural Elements, and Future Directions,” Future Generation Computer Systems, vol.
29, no. 7, pp. 1645–1660, 2013.

3. S. Rajput and N. Sharma, “Design and Implementation of IoT Based Home Automation
System Using ESP8266,” International Journal of Engineering Research & Technology (IJERT),
vol. 8, no. 4, 2019.

4. A. Kumar, P. Kumar, and R. Singh, “IoT Based Smart Home Automation Using Wireless
Sensor Networks,” International Journal of Computer Applications, vol. 181, no. 18, pp. 1–5,
2018.

5. S. Sultana and M. A. Hossain, “A Survey on IoT Platforms: Architecture, Applications


and Challenges,” Journal of Network and Computer Applications, 2021.

You might also like