3. Case 01: Auto Irrigation in Farmlands#

3.1. Introduction#


  • The usual irrigation method to crops is in manual by hands, which has a low ultilization rates of water. Thus, we could make an auto irrigation device for farmlands.

3.2. Function#


  • Detect the moisture of the soil from the soil moisture sensor and water it automatically if the value is less than the threhold, detect the water level in the container with the water level sensor and display its status on micro:bit.

3.4. Picture#


../../_images/microbit-Smart-Agriculture-Kit-case-01-02.png

3.5. Hardware Connection#


Connect the soil moisture sensor to P1, the water level sensor to P2 and the servo to P9 on IoT:bit.

../../_images/microbit-Smart-Agriculture-Kit-case-01-03.png

3.6. Software Programming#


Click “Advanced” in the MakeCode to see more choices.

../../_images/microbit-Smart-Agriculture-Kit-case-01-04.png

For programming, we need to add a package: click “Extensions” at the bottom of the MakeCode drawer and search with “iot-environment-kit” in the dialogue box to download it.

../../_images/microbit-Smart-Agriculture-Kit-case-01-05.png

Notice: If you met a tip indicating that some codebases would be deleted due to incompatibility, you may continue as the tips say or create a new project in the menu.

3.7. Program#


Save the returned value from the soil moisture sensor and the water level sensor as the variable “soil_moisture” and the variable “water_level”.

../../_images/microbit-Smart-Agriculture-Kit-case-01-07.png

Display the value of the water level in the form of the bar graph on the micro:bit.

../../_images/microbit-Smart-Agriculture-Kit-case-01-08.png

If the varible “soil_moisture is below the threshold, it means the moisture of the soil is in a low status, program to drive the servo for watering; or program to drive the servo for closing the valve.

../../_images/microbit-Smart-Agriculture-Kit-case-01-09.png

Link: https://makecode.microbit.org/_awoUMcbKA0Ct

3.8. Result#


  • Detect the moisture of the soil from the soil moisture sensor and water it automatically if the value is less than the threhold, detect the water level in the container with the water level sensor and display its status on micro:bit.