Introduction: Arduino Modules - Rain Sensor
Quick and simple start guide for using and exploring the Rain Sensor module sometimes called a "Raindrops Sensor Module" with an Arduino.
I figured since I recently wrote up an Instructable about flame sensors, a type of water sensor might just be a good equalizer.
Materials needed:
- Rain Sensor (model with an analog out)
- 3x Male to Female jumper wires
- 2x Female to Female jumper wires
- An Arduino, any flavor
- Source of water
Step 1: Getting to Know Your Rain Sensor:
Usage:
Rain sensors are used in the detection of water beyond what a humidity sensor can detect.
How it works:
The rain sensor detects water that completes the circuits on its sensor boards' printed leads. The sensor board acts as a variable resistor that will change from 100k ohms when wet to 2M ohms when dry. In short, the wetter the board the more current that will be conducted.
Pins:
A0.......... Analog output
D0......... Digital output
GND..... Ground
VCC...... Positive voltage (input: 5v for analog 3.3v for Digital.)
Loop Pins:
+ .......... Sensor board hookup A
- .......... Sensor board hookup B
Dimensions:
2.17 in x 1.57 in x 0.31 in (5.5 cm x 4.0 cm x 0.8 cm)
Weight:
0.28 oz (8 g)
Step 2: Testing and Troubleshooting:
Testing:
To test the Rain Sensor and ensure that it is working correctly connect the VCC to a 5v power source and GND. Try placing a few droplets of water on the Rain sensor detection board and the D0-LED should light up.
Troubleshooting:
If the D0-LED does not light up check the following:
- Is the module hooked up properly?
- Sometimes salinity is an issue with these units, this one worked fine with filtered, bottled water, but in some instances you may have to add a bit of salt to increase the waters conduction.
- This might be a bit more tricky, but for some reason two different models by two different manufacturers have had defects in their soldering skills. Make sure all of the little SMD's and connectors have been soldered on properly. IE - are solder joints actually soldered?
- If none of the previous makes the D0-LED light up, your sensor may be defective.
Step 3: Wiring to an Arduino:
To wire the Rain Sensor to the Arduino for analog, simply connect the following as shown:
Rain Sensor ................. Arduino
VCC............................... 5v
GND.............................. GND
A0.................................. Analog in 0
Rain Sensor ................ Sensor Board
+.................................... +
-..................................... -
Step 4: Arduino Sketch Example:
The following code maps and reads the analog values given by the Rain Sensor (0-1024). The Rain Sensor will have the following reaction with this code:
- If the Sensor Board is completely soaked; "case 0" will be activated and " Flood " will be sent to the serial monitor.
- If the Sensor Board has water droplets on it; "case 1" will be activated and " Rain Warning " will be sent to the serial monitor.
- If the Sensor Board is dry; "case 2" will be activated and " Not Raining " will be sent to the serial monitor.
* The output in "case 2", "Not Raining" is just for this demonstration. When I used this code in production I omitted the output for this case and just had the alert for "Rain Warning" and "Flood".
* To view the output, point a serial monitor such as Putty at your Arduino.
* This code is constantly updating in order to provide a real time feedback of the Rain Sensor.
Code:
Attached due to formatting.
Attachments

Participated in the
Microcontroller Contest
33 Comments
3 years ago
i want to run the small automatic moving convener belt through AC current motor using relay function setting with time delay function using switch casing can i try it practical given some suggestions sir thank you
http://bigbelectronics.in/product.php?product=rain-drop-detection-sensor-module-raindrops-humidity-sensor-arduino
4 years ago
hi,
could u plz explain in the below instruction why 0,3 is used
int range = map(sensorReading, sensorMin, sensorMax, 0, 3);
thanku
7 years ago
How can I get sensor to not be so sensitive? Approximately 1 droplet of water will equal a flood and a few sprinkles equal a rain warning.
Reply 6 years ago
Obviously this sensor can only be either "wet" or "dry" with nothing in between. To make it less "sensitive" on would have to work with an array of these sensors and make them cover a greater area. Then you could write your own algorythm to define how hard it's raining based on how many sensors got activated of the array.
Reply 5 years ago
That would only be true if rain and the traces were perfect conductors, but they aren't. This kind of sensor will show a difference between a few drops and several. It doesn't have to get completely covered to reach minimum resistance, but it can tell the difference between two drops, five drops, and twenty.
That said, this isn't a rain gauge, and it's main job is to show whether or not there is surface moisture. It can detect trace amounts that a rain gauge won't. It can also detect dew and frost, and, more importantly, it can show how quickly surface moisture evaporates. This is important to know when, for example, one is scheduling automatic watering, since wet leaves aren't good for most plants.
Reply 6 years ago
Can you tell me what algorythm should I use if i need to measure the rain in mm/hr just using this sensor.
Reply 6 years ago
To measure an amount of rain collected in a container you would want to use a Float sensor insead of this rain sensor.
Reply 6 years ago
This type of sensor can not measure that kind of unit.
You could put a grid of 4 by 4 of these sensors and say that when half of them get wet, it's actually "raining" (feel free to play with the amount of sensors and the percentage of them to get activated), to avoid having a single drop be equal to a flood. But that's about it. Once a drop falls on them, they keep activated so you can't measure anything of drop size.
6 years ago
Hi Sir,
How long maximum distance between Rain sensor and sensor board ? How long maximum distance between sensor board and Arduino board ?
H
6 years ago
aawsome invention
6 years ago
how can i order it please? and how much is it?
6 years ago
great easy test of the sensor! thank you!
6 years ago
not sure if it is intentional but the delay(1) at the end is actually causing to check for rain 1 thousand times every second which I find overkill. Changing it to delay(1000) for once per second seemed more suitable for my needs but I believe most cases would be covered sufficiently with once per minute, that is delay(60000). Great 'ible btw!
7 years ago
can i use a rain sensor to monitor river level? If yes, how?
Reply 6 years ago
Hi
you suppose to use ultrasonic distance sensor
Reply 7 years ago
Not a single one, it will activate if any part of the sensor board gets wet. Maybe if you had multiple boards, but I am thinking there are better ways of doing this, like a float system that turns a potentiometer. A potentiometer would be much more relaible and percise.
7 years ago
where can i get code
7 years ago
Nice project,
where can i get the Proteus library for this sensor please
7 years ago
Hello Friend! First, thanks for the tutorial!
How would the code to drive a stepper motor or servo motor? Thank you
7 years ago
Hi
Great job and thank you for sharing this tutorial. It was a real pleasure playing with my arduino and rain sensor. However, I could like to use this rain sensor on Rapberry Pi. Any idea to wire and python code ?