Plant Watering Alarm Spray Water Alarm Alarm Humidity Sensor Module Soil Moisture Sensor
Rs. 209.00 Rs. 258.00
- Product Code: SEN-SOIL
- Availability: In Stock
- Price in reward points: 2
- For Bulk Order
9962060070
SPECIFICATION:
-Version 2.7.5
-Supply voltage 3.3V - 5V
-Current consumption: 1.1mA @ 5V, 0.7mA @ 3.3V when idle, 14mA @ 5V, 7.8mA @ 3.3V when taking a measurement.
-When constantly polling sensor at full speed, current consumption averages to 4.5mA @ 5V, 2.8mA @ 3.3V
-Operating temperature 0°C - 85°C
-Moisture reading drift with temperature - <10% over full temp range
-Don't forget to provide pullups for SCL and SDA lines
-Default I2C address is 0x20 (hex)
-To read soil moisture, read 2 bytes from register 0
-To read light level, start measurement by writing 3 to the device I2C address, wait for 3 seconds, read 2 bytes from register 4
-To read temperature, read 2 bytes from register 5
-To change the I2C address of the sensor, write a new address (one byte [1..127]) to register 1; the new address will take effect after reset
-To reset the sensor, write 6 to the device I2C address.
-Do not hotplug the sensor into the active I2C bus - address change command has no protection and this might result in a random number set as an address of the sensor.
-Use I2C scan sketch to find out the address if the sensor stops responding with proper values.
-I2C soil moisture sensor
-The sensor can be read via I2C protocol and provides these features:
OVERVIEW:
-Chirp Plant Watering Alarm and Soil Moisture Sensor
-Features a plant watering alarm chip
-Chirps when the soil dries out
-Uses capacitive humidity sensing technique
PACKAGE INCLUDES:
1 PCS x Plant Watering Alarm Spray Water Alarm Alarm Humidity Sensor Module Soil Moisture Sensor
//SOURCE CODE TAKEN FROM BELOW LINK
//https://create.arduino.cc/projecthub/GadhaGod/fully-automatic-plant-watering-system-de962d
// if the soil is dryer than this number, then start watering
const int dry = 270;
const int pumpPin = 12;
const int soilSensor = A4;
void setup() {
pinMode(pumpPin, OUTPUT);
pinMode(soilSensor, INPUT);
Serial.begin(9600);
digitalWrite(pumpPin, HIGH);
delay(5000);
}
void loop() {
// read current moisture
int moisture = analogRead(soilSensor);
Serial.println(moisture);
delay(5000);
if (moisture >= dry) {
// the soil is too dry, water!
Serial.println("Watering starts now..moisture is " + String(moisture));
digitalWrite(pumpPin, LOW);
// keep watering for 5 sec
delay(5000);
// turn off water
digitalWrite(pumpPin, HIGH);
Serial.println("Done watering.");
} else {
Serial.println("Moisture is adequate. No watering needed " + String(moisture));
}
}
15 days