ESP8266 - Irrigation
This tutorial instructs you how to use ESP8266, soil moisture sensor, relay, and pump to build an automatic irrigation system for the garden with. Specifically:
- ESP8266 will be used to control the relay in order to switch on the pump when the soil moisture is dry.
- When the soil moisture is wet, ESP8266 will be used to control the relay to turn the pump off.
Hardware Preparation
Or you can buy the following sensor kits:
1 | × | DIYables Sensor Kit (30 sensors/displays) | |
1 | × | DIYables Sensor Kit (18 sensors/displays) |
Disclosure: Some of the links provided in this section are Amazon affiliate links. We may receive a commission for any purchases made through these links at no additional cost to you.
Additionally, some of these links are for products from our own brand, DIYables.
Additionally, some of these links are for products from our own brand, DIYables.
Overview of soil moisture sensor and Pump
If you are not familiar with pump and soil moisture sensor (including pinout, functioning, programming, etc.), the following tutorials will be helpful:
- ESP8266 - Soil Moisture Sensor tutorial
- ESP8266 - Controls Pump tutorial
Wiring Diagram
This image is created using Fritzing. Click to enlarge image
See more in ESP8266's pinout and how to supply power to the ESP8266 and other components.
ESP8266 Code
/*
* This ESP8266 NodeMCU code was developed by newbiely.com
*
* This ESP8266 NodeMCU code is made available for public use without any restriction
*
* For comprehensive instructions and wiring diagrams, please visit:
* https://newbiely.com/tutorials/esp8266/esp8266-irrigation
*/
#define RELAY_PIN D7 // The ESP8266 pin D7 that connects to relay
#define MOISTURE_PIN A0 // The ESP8266 pin ADC0 that connects to AOUT pin of moisture sensor
#define THRESHOLD 530 // CHANGE YOUR THRESHOLD HERE
void setup() {
Serial.begin(9600);
pinMode(RELAY_PIN, OUTPUT);
}
void loop() {
int value = analogRead(MOISTURE_PIN); // read the analog value from sensor
if (value > THRESHOLD) {
Serial.print("The soil is DRY => turn pump ON");
digitalWrite(RELAY_PIN, HIGH);
} else {
Serial.print("The soil is WET => turn pump OFF");
digitalWrite(RELAY_PIN, LOW);
}
Serial.print(" (");
Serial.print(value);
Serial.println(")");
delay(200);
}
Detailed Instructions
To get started with ESP8266 on Arduino IDE, follow these steps:
- Check out the how to setup environment for ESP8266 on Arduino IDE tutorial if this is your first time using ESP8266.
- Wire the components as shown in the diagram.
- Connect the ESP8266 board to your computer using a USB cable.
- Open Arduino IDE on your computer.
- Choose the correct ESP8266 board, such as (e.g. NodeMCU 1.0 (ESP-12E Module)), and its respective COM port.
- Perform calibration to identify the wet-dry THRESHOLD, as outlined in ESP8266 - Calibrates Soil Moisture Sensor.
- Insert the calibrated THRESHOLD value into the code.
- Launch Serial Monitor on Arduino IDE.
- Upload the code to ESP8266.
- View the result on Serial Monitor.
COM6
The soil is DRY => turn pump ON
The soil is DRY => turn pump ON
The soil is DRY => turn pump ON
The soil is DRY => turn pump ON
The soil is WET => turn pump OFF
The soil is WET => turn pump OFF
The soil is WET => turn pump OFF
The soil is WET => turn pump OFF
Autoscroll
Clear output
9600 baud
Newline
Code Explanation
Check out the line-by-line explanation contained in the comments of the source code!