Rain Detector Alarm Using Arduino Uno
by Technoesolution2020 in Circuits > Arduino
1935 Views, 2 Favorites, 0 Comments
Rain Detector Alarm Using Arduino Uno
Hello friends welcome back to "TECHNO-E-SOLUTION", In this article I'll show you "How To Make A Rain Detector Alarm Using Arduino Uno". In this project we need to make a custom Rain drop sensor to detect the rain, so I make a custom rain drop sensor plate. I provide the image of custom rain drop sensor. Make it same. After Summer season Rainy season starts and we need this Rain Detector for our rain alarm purpose in our home, office etc... Hence we are going to make Rain Detector Using Arduino Uno.
Follow Me On :-
| YOUTUBE | INSTAGRAM | FACEBOOK | INSTRUCTABLES | DAILYMOTION | HACKSTER |
If you like this project subscribe us on Youtube, So without wasting time Let's get started..............
MATERIAL REQUIRED
To make this project we need some components (Best Buy Link Provided):-
CIRCUIT DIAGRAM
Follow the circuit diagram to make connections.
Next PCB
NextPCB is a high-quality PCB Manufacturer. With professional PCB manufacturing capabilities, our PCB engineers with more than 10 years of experience will double-check your engineering files.
NextPCB is certified by IATF16949, ISO9001, ISO14001, UL, CQC, RoHS and REACH; more importantly, we handle the whole process including the PCB prototype, PCB manufacturing, PCB assembly, testing, and final shipment. We are capable of assembling BGA, Micro-BGA, QFN, and other leadless package parts. We also have an online parts shop, you can choose any parts you need.
If you want a Printed circuit board go through the NEXT PCB
DIY RAIN DROP SENSOR
Follow the following steps to make PCB using "Tonner transfer Technic"
- Cut PCB as per your choice.
- Draw using marker as shown in above image.
- take a 2-3 spoon of ferric chloride in water.
- Place PCB in the solution for 5-10 min.
- Clean the PCB with the help of PCB Cleaner.
- Drill the PCB using drill machine.
- Now your PCB Completed.
ARDUINO CODE
Make a circuit & Upload following code to Arduino Uno.
/* Hello Friends Welcome to Techno-E-Solution Here is the Code For Rain Detector Using Arduino */ int RainSensor = 0; int buzzer = 10; int LED = 8; void setup() { Serial.begin(9600); pinMode(buzzer,OUTPUT); pinMode(LED,OUTPUT); } void loop(){ int SensorValue = analogRead(RainSensor); if(SensorValue >=100) { digitalWrite(buzzer,HIGH); digitalWrite(LED,HIGH); Serial.println("RAINING"); delay(1000); } else { digitalWrite(buzzer,LOW); digitalWrite(LED,LOW); Serial.println("NOT RAINING"); delay(1000); } } // Thank You
Downloads
DEMO & TESTING
If you Like this project please subscribe our youtube channel for latest projects :-