Wish List 0

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
-This is a plant watering alarm – as simple as that. You put it into the soil near a plant and it emits a tiny chirp when the soil is dry, reminding you to water the plant.
-It uses capacitive humidity sensing as opposed to resistive humidity sensing, this means, it does not make an electric contact with the soil, avoiding electrode corrosion and soil electrolysis and resulting in better accuracy and longer battery life.
-Special care has been taken not to make it yet another source of annoyance – This sensor will be silent when it’s dark and will restrict itself from making too much noise.
-The alarm level can be set for each plant individually.
-As water is consumed by the plant, it will detect the low moisture level and will start to emit rare short chirps.
-As more water evaporates, it will increase the alarm rate.
-This sensor can detect if it’s day or night by measuring the amount of ambient light and will not make noise when it’s dark.
-Soil moisture sensing
-Light sensing
-Temperature sensing
-Reset chip
-I2C address change
-Deep sleep

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

Write a review

Please login or register to review