> The Raindrops Detection sensor module is used for rain detection. It is also for measuring rainfall intensity. Rain sensor can be used for all kinds of weather monitoring and translated into output signals and AO.
Raindrops Detection Sensor Module Rain Weather Module for Arduino, etc. Rain sensor can be used to monitor a variety of weather conditions and turned into several fixed output signal and Analog output.
It includes a printed circuit board (control board) that “collects” the raindrops. As raindrops are collected on the circuit board, they create paths of parallel resistance that are measured via the op-amp. The lower the resistance (or the more water), the lower the voltage output. Conversely, the less water, the greater the output voltage on the analog pin. A completely dry board, for example, will cause the module to output 5V.
The module includes a rain board and a control board that is separate for more convenience. It has a power indicator LED and an adjustable sensitivity through a potentiate. The module is based on the LM393 op-amp.
Features:
-The LM393, use of the wide voltage compactor
-Provide both digital and analog output
-Output LED indicator
-Compatible with Arduino
-TTL Compatible
-The sensor uses the high-quality FR – 04 double material, the large area of 5.5 * 4.0 CM
-Treatment of nickel plating and surface, have fight oxidation, electrical conductivity, and life has more superior performance
-The compactor output, signal clean, good waveform, driving ability is strong, for more than 15 mA;
-With potentiate sensitivity adjustment
-The output format: digital switch output (0 and 1) and analog AO voltage output;
-Has a fixed bolt hole, convenient installation
SPECIFICATIONS:
Operating Voltage(VDC) :3.3 to 5
Voltage Comparator :LM393
Driver Size(mm) :32x15x9 (LxWxH)
Collector Board Size(mm):54x40x1.5 (LxWxH)
Shipment Weight :0.105 kg
Shipment Dimensions :7 × 6 × 3 cm
OVERVIEW:
-Operating voltage: 5V
-Provide both digital and analog output
-Adjustable sensitivity
-Output LED indicator
-Compatible with Arduino
-TTL Compatible
-Bolt holes for easy installation
-₹ 103.00 (inc GST)
-₹ 87.29 (+18% GST extra)
PACKAGE INCLUDES:
1 PCS x Raindrops Detection Sensor Module
1 PCS x Control Board with LM393 Voltage Comparator
//SOURCE CODE TAKEN FROM BELOW LINK
//https://create.arduino.cc/projecthub/babariyasmit/rain-drop-sensing-system-ce871d
const int buzzer=7;
int i;
void setup() {
pinMode(buzzer,OUTPUT);
pinMode(2,INPUT);
}
void loop() {
if(digitalRead(2)==1)
{
digitalWrite(buzzer,HIGH);
}
else
{
digitalWrite(buzzer,LOW);
}
}