Smallest IoT Home Automation using ESP8266 – 01 with Videos (Hindi & English)

In this project, we will be using the ESP8266 – 01 Wi-Fi Development board to make asmall home automation that has Wi-Fi featured in it.

kunal verma

The system operates on a local web server and is easy to use for the novice. With this project, we can control at most two AC appliances which suit best for your small IoT projects.

Espressif developed Wi-Fi enabled microchip – ESP8266 proved to be a boon in the IoT field. This caused the arrival of various other ESPs and Open Source Development boards thereby allowing even a novice to make Wi-Fi featuring applications.

ESP-01 1MB version(extreme left) and 0.5MB version(extreme right)

ESP-01 1MB version(extreme left) and 0.5MB version(extreme right)

On a local web server, we do not require Internet and handling everything over Wi-Fi is possible. Here, we will be handling the two Input & Output pins and switching relays on a web page of the local server. We can connect our home appliances with the Relay Module that will be driven by ESP8266 – 01.

Material required for the IoT project

ESP8266 – 01: It will serve as the brain of our project.

ESP8266 – 01

ESP8266 – 01

FTDI Board (USB to TTL): To upload code in ESP8266 – 01.

FTDI Board

FTDI Board

2 AC Appliances

One(1) 2-Channel Relay Module

Channel relay module

Channel relay module

Breadboard with some wires.

Steps for the ESP8266 Setup in Arduino IDE

(Ignore this step if you already have the setup for Arduino IDE)

To code the ESP8266 we need an Integrated Development Environment and we will use Arduino IDE software. Arduino IDE is a cross-platform application. It is written in Java and coded in C/C++ with some special rules. To download the latest Arduino IDE click here.

Arduino IDE does not contain support of ESP8266 family so to install the ESP8266 Boards library in Arduino IDE, follow the instructions below.

Open Arduino IDE. Go to File > Preferences.

Preferences in Arduino IDE

Preferences in Arduino IDE

Enter http://arduino.esp8266.com/stable/package_esp8266com_index.json into the “Additional Board Manager URLs” field. Now, click the “OK” button.

Go to Tools > Board > Boards Manager.

Boards manager in Arduino IDE

Boards manager in Arduino IDE

Search and scroll down ESP8266 board in menu and install “esp8266 by Esp8266 community”.

Select your ESP8266 board from Tools > Board > Generic ESP8266 Module.

Board Selection in Arduino IDE

Board Selection in Arduino IDE

Restart your Arduino IDE.

Source Code of the IoT project

Download the Code from the link below and Open it in Arduino IDE. Before uploading you need to make some changes in the code. Let’s understand the code.

Place your Wi-Fi credentials here within the double quotes. The <ESP8266WiFi.h> library helps to run the functions of Wi-Fi in Arduino IDE.

Wifi credentials

Wifi credentials

In the void setup(), we place all the one-time setup codes. All the instructions written here will run only once or after every Reset.

Void Setup()

Void Setup()

So, the GPIOs 0 and 2 of ESP8266 are made OUTPUT here and the server is started.

Void loop() is the place for the main executable instructions. The GPIO values are changed here as per the request of the client connected.

Void Loop()

Void Loop()

This request is displayed via this HTML page.

HTML Web page in the source code

HTML Web page in the source code

Save the Code. To Upload the code, follow the instructions below.

  • Connect the FTDI pins to ESP8266 as shown below.

Flashing ESP8266 – 01

Flashing ESP8266 – 01

  • Select your COM Port from Tools > Port after connecting FTDI USB to your PC or Laptop.
  • Also, check if your ESP8266 supports 9600 or any other Baud Rate.
  • Now Click Upload.

The code in ESP8266 is uploaded in Flash Mode, which is when GPIO 0 is grounded.

Now, to run the code in it, we need to remove it from Flash Mode. For this, simply remove GPIO 0 from the ground and Reset.

To Reset ESP8266, simply touch the Reset Pin of ESP8266 to Ground for half a second. Its Blue LED will flicker.

Circuit diagram for Home automation

Flow the circuit diagram for making the home automation system.

GPIO 0 -> Relay IN 1

GPIO 2 -> Relay IN 2

We will use 5 volts input supply for driving the Relay Module and 3.3 Volts Input for the ESP8266.

Circuit diagram for Home Automation

Circuit diagram for Home Automation

Connecting to the web using the IP address

After uploading the code, go to Open Tools>Serial Monitor. ESP8266 will try to connect to Wi-Fi and display its IP address on Arduino serial monitor. This IP is needed only the first time.

Read More Detail :Smallest IoT Home Automation using ESP8266 – 01 with Videos (Hindi & English)


About The Author

Ibrar Ayyub

I am an experienced technical writer with a Master's degree in computer science from BZU Multan University. I have written for various industries, mainly home automation and engineering. My writing style is clear and simple, and I am skilled in using infographics and diagrams. I am a great researcher and am able to present information in a well-organized and logical manner.

Follow Us:
LinkedinTwitter
Scroll to Top