A Smart Moisturing Monitoring Sensor
A Smart Moisturing Monitoring Sensor
Apparatus:
Computer or Laptop
Arduino UNO
Moisture Sensor
LED (Light Emitting Diode)
Prototyping Board (Breadboard)
Moisture Sensor:
A moisture sensor, commonly used in agriculture and gardening, measures the moisture content
in soil. A moisture sensor is a device designed to measure the level of moisture or water content
in a given material or environment. These sensors are utilized in various industries, agriculture,
and scientific applications to monitor and control moisture levels. It typically consists of two
probes that are inserted into the soil. The sensor's resistance varies based on the soil moisture:
more moisture leads to lower resistance. These sensors can be analog or digital. Analog versions
provide a continuous range of values, while digital ones give a simple wet/dry output. Integrating
moisture sensors in projects helps optimize irrigation, prevents overwatering or underwatering,
and promotes efficient water usage in plant care.
1. Principle of Operation:
Moisture sensors operate based on different principles, with the most common being resistive,
capacitive, and conductive methods. For instance, a resistive moisture sensor measures the
resistance between two electrodes, which changes with varying moisture levels.
Applications:
Agriculture: Monitoring soil moisture for optimized irrigation.
Construction: Ensuring proper moisture levels in building materials.
Industrial Processes: Controlling moisture levels in manufacturing processes.
Environmental Monitoring: Monitoring humidity in the air.
Advanced Features:
Wireless Connectivity: Some sensors offer wireless communication for remote monitoring.
Data Logging: Capable of recording moisture levels over time.
Smart Integration: Integration with IoT platforms for realtime data analysis.
Fig1.1
Types:
1. Resistance based Sensors:
These sensors use two or more metal probes to measure the electrical resistance of the soil,
which changes with moisture content.
Procedure:
1. First of all, take the circuit diagram.
2. Make the connection according to the circuit diagram.
3. Connect Arduino with Laptop or Computer to upload program in Arduino.
4. Once, program uploading is done.
5. Connect moisture sensor as well as LED’s with Arduino.
6. Monitor the moisture sensor on Serial Monitor on Arduino Software.
7. Check the output voltage according to moisture sensor.
8. Show the result to your instructor.
Program Code:
const int moisturePin = A0;
void setup() {
// Start Serial communication
Serial.begin(9600);
}
void loop() {
// Read the analog value from the moisture sensor
int moistureValue = analogRead(moisturePin);