Skip to main content

Grove - Water Sensor

pir

The Water Sensor module is part of the Grove system. It indicates whether the sensor is dry, damp or completely immersed in water by measuring conductivity. The sensor traces have a weak pull-up resistor of 1 Mฮฉ. The resistor will pull the sensor trace value high until a drop of water shorts the sensor trace to the grounded trace. Believe it or not this circuit will work with the digital I/O pins of your Arduino or you can use it with the analog pins to detect the amount of water induced contact between the grounded and sensor traces.

pir

Versionโ€‹

Product VersionChangesReleased Date
Grove-Water Sensor V1.1InitialJuly 2014

Featuresโ€‹

  • Grove compatible interface
  • Low power consumption
  • 2.0cm x 2.0cm Grove module
  • High sensitivity

Applications Ideasโ€‹

  • Rainfall detecting
  • Liquid leakage
  • Tank overflow detector

Specificationsโ€‹

ItemMinTypicalMaxUnit
Working Voltage4.755.05.25V
Current<20mA
Working Temperature10-30โ„ƒ
Working Humidity (without condensation)10-90ย %
tip
More details about Grove modules please refer to [Grove System](https://wiki.seeedstudio.com/Grove_System/)

Platforms Supportedโ€‹

ArduinoRaspberry Pi

pir

pir

caution
The platforms mentioned above as supported is/are an indication of the module's software or theoritical compatibility. We only provide software library or code examples for Arduino platform in most cases. It is not possible to provide software library / demo code for all possible MCU platforms. Hence, users have to write their own software library.

Getting Startedโ€‹

note
If this is the first time you work with Arduino, we firmly recommend you to see Getting Started with Arduino before the start.

Play With Arduinoโ€‹

Hardwareโ€‹

Connect the module to the Basic board using any of the digital pin. You can gain the value of the signal pin. When there is water on the bare conducting wires, the value is LOW. Otherwise, it will be HIGH.

  • Step 1. Prepare the below stuffs:
Seeeduino V4.2Base ShieldGrove - Water Sensor

pir

pir

pir

Get One NowGet One NowGet One Now
  • Step 2. Connect Water Sensor to port D2 of Grove-Base Shield.
  • Step 3. Plug Grove - Base Shield into Seeeduino.
  • Step 4. Connect Seeeduino to PC via a USB cable.

pir

note
If we don't have Grove Base Shield, We also can directly connect Grove_Water_Sensor to Seeeduino as below.
SeeeduinoGrove - Water Sensor
5VRed
GNDBlack
Not ConenctedWhite
D2Yellow

Softwareโ€‹

  • Step 1. Copy the code into Arduino IDE and upload. If you do not know how to upload the code, please check how to upload code.
#define WATER_SENSOR 2

void setup()
{
Serial.begin (9600);
pinMode(WATER_SENSOR, INPUT);
}
void loop()
{
Serial.println(digitalRead(WATER_SENSOR));
delay(500);
}

  • Step 2. We will see the output display on terminal as below.
1
1
0
0
1
1

Play with Codecraftโ€‹

Hardwareโ€‹

Step 1. Connect a Grove - Water Sensor to port D2 of a Base Shield.

Step 2. Plug the Base Shield to your Seeeduino/Arduino.

Step 3. Link Seeeduino/Arduino to your PC via an USB cable.

Softwareโ€‹

Step 1. Open Codecraft, add Arduino support, and drag a main procedure to working area.

note
If this is your first time using Codecraft, see also [Guide for Codecraft using Arduino](https://wiki.seeedstudio.com/Guide_for_Codecraft_using_Arduino/).

Step 2. Drag blocks as picture below or open the cdc file which can be downloaded at the end of this page.

pir

Upload the program to your Arduino/Seeeduino.

tip
When the code finishes uploaded, you will see there is water or not in Serial Monitor.

Play With Raspberry Pi (With Grove Base Hat for Raspberry Pi)โ€‹

Hardwareโ€‹

  • Step 1. Things used in this project:
Raspberry piGrove Base Hat for RasPiGrove - Water Sensor

pir

pir

pir

Get ONE NowGet ONE NowGet ONE Now
  • Step 2. Plug the Grove Base Hat into Raspberry Pi.
  • Step 3. Connect the Grove - Water Sensor to to the A0 port of the Base Hat.
  • Step 4. Connect the Raspberry Pi to PC through USB cable.

    pir

Softwareโ€‹

  • Step 1. Follow Setting Software to configure the development environment.
  • Step 2. Download the source file by cloning the grove.py library.
cd ~
git clone https://github.com/Seeed-Studio/grove.py

  • Step 3. Excute below command to run the code.
cd grove.py/grove
python grove_water_sensor.py 0

Following is the grove_water_sensor.py code.


import math
import sys
import time
from grove.adc import ADC


class GroveWaterSensor:

def __init__(self, channel):
self.channel = channel
self.adc = ADC()

@property
def value(self):
return self.adc.read(self.channel)

Grove = GroveWaterSensor


def main():
if len(sys.argv) < 2:
print('Usage: {} adc_channel'.format(sys.argv[0]))
sys.exit(1)

sensor = GroveWaterSensor(int(sys.argv[1]))

print('Detecting ...')
while True:
value = sensor.value
if sensor.value > 800:
print("{}, Detected Water.".format(value))
else:
print("{}, Dry.".format(value))

time.sleep(.1)

if __name__ == '__main__':
main()


tip
If everything goes well, you will be able to see the following result

pi@raspberrypi:~/grove.py/grove $ python grove_water_sensor.py 0
Detecting ...
612, Dry.
749, Detected Water.
829, Dry.
357, Dry.
98, Dry.
352, Dry.
517, Dry.
718, Detected Water.
868, Detected Water.
581, Dry.
90, Dry.
326, Dry.
451, Dry.
666, Dry.
867, Detected Water.
684, Dry.
100, Dry.
^CTraceback (most recent call last):
File "grove_water_sensor.py", line 71, in <module>
main()
File "grove_water_sensor.py", line 62, in main
value = sensor.value
File "grove_water_sensor.py", line 48, in value
return self.adc.read(self.channel)
File "/usr/local/lib/python2.7/dist-packages/grove/adc.py", line 66, in read
return self.read_register(addr)
File "/usr/local/lib/python2.7/dist-packages/grove/adc.py", line 84, in read_register
return self.bus.read_word_data(self.address, n)
File "/home/pi/.local/lib/python2.7/site-packages/smbus2/smbus2.py", line 396, in read_word_data
ioctl(self.fd, I2C_SMBUS, msg)
KeyboardInterrupt


You can use this sensor to detect the water. Press ++ctrl+c++ to quit.

note
    You may have noticed that for the analog port, the silkscreen pin number is something like **A1, A0**, however in the command we use parameter **0** and **1**, just the same as digital port. So please make sure you plug the module into the correct port, otherwise there may be pin conflicts.

Play With Raspberry Pi(with GrovePi_Plus)โ€‹

Hardwareโ€‹

  • Step 1. Prepare the below stuffs:
Raspberry piGrovePi_PlusGrove - Water Sensor

pir

pir

pir

Get One NowGet One NowGet One Now
  • Step 2. Plug the GrovePi_Plus into Raspberry.
  • Step 3. Connect Grove-Water Sensor to D2 port of GrovePi_Plus.
  • Step 4. Connect the Raspberry to PC through USB cable.

pir

Softwareโ€‹

  • Step 1. Follow Setting Software to configure the development environment.
  • Step 2. Navigate to the demos' directory:
cd yourpath/GrovePi/Software/Python/
  • Step 3. To see the code
nano grove_water_sensor.py
import time
import grovepi

# Connect the Grove Water Sensor to digital port D2
# SIG,NC,VCC,GND
water_sensor = 2

grovepi.pinMode(water_sensor,"INPUT")

while True:
try:
print grovepi.digitalRead(water_sensor)
time.sleep(.5)

except IOError:
print "Error"
  • Step 4. Run the demo.
sudo python grove_water_sensor.py
  • Step 5. We will see the output display on terminal as below.
1
1
0
0
1

Schematic Online Viewerโ€‹

Resourcesโ€‹

Projectโ€‹

Smart Crops: Implementing IoT in Conventional Agriculture!:Our mission with nature is to preserve it, designing and implementing technologies and monitoring methods with the help of IoT via Helium.

Tech Supportโ€‹

Please do not hesitate to submit the issue into our forum.


Loading Comments...