Introduction: ESP8266 Smart Plant Irrigation System

In this tutorial we will show how to build plant irrigation system with ESP8266 and EasyIoT Cloud. With web interface we can control water pump and soil moisture remotely. Now you can go on holiday and irrigate plant with your phone.

Step 1: Introduction

Irrigation system features:

  • remotely controlled water pump
  • automatic irrigation if soil moisture is low
  • automatic / manual mode
  • soil moisture and water pump status display
  • log soil moisture historical values

Irrigation can be triggered in WEB user interface. It this case pump will start for 10s. You can also use automatic mode. In this case you set threshold soil moisture in WEB interface. If soil moisture drops below this value pump will switch on for 10s. After 10 min will again check soil moisture and switch pump on if needed.

Step 2: Materials

  • ESP8266 module
  • water pump
  • soil moisture sensor module
  • regulator module 0-30V
  • 12V power supply
  • 2N2222 NPN transistor
  • 5K resistor

Step 3: EasyIoT Cloud Configuration

Register to EasyIoT Cloud service. We will need custom module type for irrigation system. Follow EasyIoT Cloud module configuration tutorial to add new ZMT_IRRIGATOR module type.

Step 4: Program

Program is written in ESP8266 Arduino IDE. It uses ESP8266 MQTT EasyIoT Cloud library to communicate and configure EasyIoT Cloud. Program can be downloaded from our GitHub.

In program change following lines:

#define AP_SSID "xxx"

#define AP_PASSWORD "xxx"
#define EIOTCLOUD_USERNAME "xxx"

#define EIOTCLOUD_PASSWORD "xxx"

In first two lines set access point name and password, then set EasyIoT Cloud username and password. Then upload program to ESP8266 NodeMCU. You can also use different type of ESP8266 - then you need additional power supply and FDTI USB adapter.

Step 5: Hardware

For the sake of simplicity we will use ESP8266 NodeMCU. You can user any other ESP8266 type with additional 3.3V power supply.

Connecting soil moisture sensor

Use ESP8266 3.3 V power supply to power soil moisture sensor module. This means that you connect ESP8266 3.3V to VCC on sensor and ESP8266 GND with sensor GND. Then connect soil moisture sensor analog output (mark AO) to analog input on ESP8266 board A0. Leve DO on soil moisture sensor unconnected.

Connecting water pump motor to ESP8266

To connect water pump motor we will need relay module. Because relay module uses 5V power supply and ESP8266 uses 3.3V power supply we will add transistor to drive 5V relay with 3.3V. Transistor is connected to ESP8266 D0 pin trough resistor. If you connect relay directly to ESP8266 you will fry ESP8266. Other side of relay is connected to motor pump and adjustable power supply. Set voltage of motor pump between 6 and 9V.

Connecting manual button

If you are using ESP8266 NodeMCU you can use on board flash button to manually switch on and off motor pump. If you are using other type of ESP8266 then use 10K resistor one side connected to 3.3V and other side to D3 pin. Then connect D3 to GND trough push button.

Internet of Things Contest 2017

Participated in the
Internet of Things Contest 2017