Introduction: Water Level Monitoring on ESP12 Using Blynk

We often face the problem of water getting spilled out from our overhead water tanks. So, let us make a solution to monitor water level of our tank. It is a very simple DIY project which can make our life simple. It is as simple drinking a glass of water. Take out your mobile phone,open the app and see the depth of water.

There are many online blogs, forums and Instructables out there on how to communicate with ESP12 and Blynk. But everything is scattered here and there. So I want to share my experience and problems faced. I am sure I will show you a perfect way probably the best solution available online.

Step 1: Componenets Required

1. ESP12 (WiFi Module). Buy on Amazon here.

2. ESP break out board (Optional) .

3. HC SR04 (Ultra Sonic Sensor). Buy on ebay here.

4. CP2102 (USB to UART converter). Buy on ebay here.

5. LM1117 (3.3v Regulator)

Step 2: Setting Up Arduino to Program ESP

You just need Arduino IDE to do all the stuff.

1. Download and install the Arduino IDE from here.

2. Start Arduino and go to File -> Preferences.

3. Enter "http://arduino.esp8266.com/stable/package_esp8266com_index.json" into Additional Board Manager URLs field. You can add multiple URLs, separating them with commas.

4. Open Tools -> Board -> Boards Manager and install "esp8266 by ESP8266 community" platform.

5. Select your board as "NodeMCU 1.0(ESP-12E)" from Tools-> Board.

Step 3: Setting Up the ESP12

First we need to make connections between ESP12 and CP2102. Give LM1117 an input power of 5V.


VCC ----> 3.3V Power supply (Vout of LM1117)

GND ----> Ground of power supply

CH_PD(or EN) ----> HIGH (3.3V)

GPIO15 ----> LOW (GND)

There are two different modes of operation for ESP12.

1. AT commands mode GPIO0 ----> HIGH (3.3V)

2. Flashing the firmware or uploading the code GPIO0 ----> LOW (GND)


Step 4: Setting Up the CP2102

Insert CP2102 to USB of computer.The CP2102 is a USB to serial converter that lets us communicate with the ESP-12 over UART. The CP2102 will be detected as a serial device,if you have used a serial device before, you ideally should not need the drivers. In case you need the drivers, you can find the Drivers here. Mostly you will not need them anyways.

Now let us see the connection between CP2102 and ESP12.

Rx <----------------> Tx

Tx <----------------> Rx

GND <----------------> GND

Do not take power from CP2102, neither 5V pin nor 3.3V pin. This power is insufficient and will not work although the voltage given by that is 5V and 3.3 V. Trust me, I read many blogs and forums for this. I struggled with it for almost a week. So, use an external constant power source.

Step 5: Pin Configuration and Blynk App Configuration

ESP12 to HCSR04 :

VCC ------> VCC

GND ------> GND

GPIO4 ----> Echo

GPIO5 -----> Trig

Blynk App Configuration:

1.Open Blynk App and Create New Project

2. Give a project title and select Hardware Model as "NodeMCU"

3. You will be given AUTH TOKEN which you can change by using "Refresh" or you can mail it.

4. Create the Project.

5. You can see a "+" on the Top. There you can add Controller, Displays and other Widgets.


Step 6: Uploading the Arduino Code to ESP

Depending on your OS, you can download and install a Serial Terminal to communicate with the ESP-12.

If you have Arduino IDE installed, you can just use the Serial Monitor present inside. For that, you have to navigate to Tools > Ports , select the Port that the CP2102 was detected on, and then open the Serial Monitor.

Step 7: ​Adding Widgets to Project

1. Add two "Value Display S" Display Widgets.

2. Tap on the Display Widgets to Name them and assign Virtual Pins as per your code. (V8 for Depth and V9 for Percentage in my code).

3. Add three "LED" Widgets.

4. Tap on LED Widget to name it and assign Virtual Pins for it (V6 and V7 in my Code). You can change the colour of the LED as well.

5. Add "Push" Notification Widget to constantly monitor the water level.

6. After uploading the code to ESP12 or NodeMCU tap "Run" (Play button) on the top.

That's it !! Now you can constantly monitor the water level sitting anywhere in the world.