IOT Report Card
IOT Report Card
1. Abstract ……………………………………………………………
2. Introduction ……………………………………………………….
3. Introduction to Hardware ……………………………………….
4. Introduction to Software ………………………………………..
5. Working ……………………………………………………………
6. Circuit Diagram …………………………………………………..
7. Code ……………………………………………………………….
8. Screenshot ……………………………………………………….
9. Conclusion ……………………………………………………….
1
Abstract
2
Introduction
India is the country of villages and agriculture plays an important role for the
development of the country. In our country, agriculture depends on monsoons
which have insufficient source of water. So the irrigation is used in agriculture. the
irrigation is used in the agriculture field. In Irrigation system, depending upon
the soil type, water is provided to plant. In agriculture, two things are very
important, first to get information about the fertility of soil and second to measure
moisture content in soil. In this technique, water level indicator placed in water
reservoir and soil moisture sensors are placed root zone of plant and near the
module and gateway unit handles the sensor information and transmit data to the
controller which in turns the control the flow of water through the valves.
The Internet of Things is very quickly becoming a reality. We can see the proof of
it around us. Our devices are getting smarter each day from smartphones to smart
TV to smart car to Smart kitchen.Everything is now getting connected to the
Internet. Internet of Things (IoT) describes a network of physical objects that
connect to each other through the internet.
3
Introduction to Hardware
● Arduino
● Moisture Sensor
This moisture sensor can read the amount of moisture present in the soil
surrounding it. It's a low tech sensor, but ideal for monitoring an urban
garden, or your pet plant's water level. This is a must have tool for a
connected garden. This sensor uses the two probes to pass current through
4
the soil, and then it reads that resistance to get the moisture level. More
water makes the soil conduct electricity more easily (less resistance), while
dry soil conducts electricity poorly (more resistance). It will be helpful to
remind you to water your indoor plants or to monitor the soil moisture in
your garden.
5
● Humidity Sensor
● Jumper Wires
Jumper wires are simply wires that have connector pins at each end,
allowing them to be used to connect two points to each other without
soldering. Jumper wires are typically used with breadboards and other
prototyping tools in order to make it easy to change a circuit as needed.
Fairly simple. In fact, it doesn’t get much more basic than jumper wires.
6
● Relay Module
7
Introduction to Software
● Arduino
● Tinkercad
● Fritzing
Fritzing is a great open source tool for anyone to teach, share, and prototype
their electronic projects. It allows you to design a schematic, and thus a part,
which can then be added to very professional-looking wiring diagrams.
8
Working
First we've collects the components and they all are connected to each
other And after all the moisture sensor is fit in the ground to measure the
moisture of the soil and If the moisture reading in arduino is less than 300
then the motor will be off and if the moisture reading in arduino is more than
300 then the motor will be on or the humidity in the air is greater than 50
then the motor will automatically turn on.
In short there are two conditions 1s is the moister in the soil it should
be greater then 300 and the humidity in the air should be greater then 50 %
to turn on the motor and ,if both the conditions will match then the motor
will provide the water to plants and if both conditions are false then it will
turn off the motor, And is any of this conditions is false then the motor will
not provide water to plants.
9
Circuit Diagram
10
Code
#include <dht.h>
#define dht_apin A1
dht DHT;
}
}
11
Conclusion
12