Arduino Soil Moisture Sensor Relay Control

Поділитися
Вставка
  • Опубліковано 26 жов 2024

КОМЕНТАРІ • 162

  • @ManishaSingh-bc7pt
    @ManishaSingh-bc7pt 6 років тому +5

    Thank you sir for the sponsorship! It means a lot. 🤗

  • @YewrMan
    @YewrMan 4 роки тому +6

    Lovely video. Could you please edit and add how you connected and controlled the pump. More than thanks.

  • @atharvarajsachdeva849
    @atharvarajsachdeva849 3 роки тому +2

    The code doesn’t make sense where is it written when the water is low give water or is this based on time

  • @pentmaxcreative
    @pentmaxcreative 3 роки тому

    It works perfectly kudos to you guys

  • @voiceoftruth1O1
    @voiceoftruth1O1 6 років тому

    I am waiting so long for this. Still I don't try this but I will try this later. Thank you so much.

  • @RIO61718
    @RIO61718 Рік тому +1

    Bro what website did you use to make schematics

  • @subhendrasingh9373
    @subhendrasingh9373 2 місяці тому

    thank you sir for this project

  • @haneeshannabathuni3052
    @haneeshannabathuni3052 3 роки тому +3

    how to connect motor, u haven't shown that in your circuit diagram please reply

  • @srivenkateshr2602
    @srivenkateshr2602 3 роки тому

    Thanks for giving the codes

  • @naqaashdxb
    @naqaashdxb 4 роки тому +5

    Where is the immersible pump in diagram? I want to recommend this project to my niece. Check website also. The explanation for pump is not seen or may be I didn't get. Please help.

  • @gajananmuttepawar873
    @gajananmuttepawar873 5 років тому

    Nice.......simple Program..easily understandable

  • @yagneshpatel5934
    @yagneshpatel5934 4 роки тому +1

    What happened if water in tank is empty?? Then ur water pump may burn in dry run conditions... You should embedd two project in a single project.. I. E.
    Smart irrigation system with automatic water level control using ultrasonic sensor.. So it gives sustainable solutions zero maintenance...

  • @aileaile9653
    @aileaile9653 4 роки тому +1

    شكراا جزيلا😘😘

  • @crixavey9385
    @crixavey9385 5 років тому +3

    Please what software did you use to design draw the circuit diagram. Because in tinkercad, some components are not available.

    • @ckonja95
      @ckonja95 5 років тому

      Software is called Fritzing.

  • @saisurya9615
    @saisurya9615 2 роки тому

    nice video can to please explain the how to connect water pump and relay module pls help thank u.....

  • @dhruvpathak1850
    @dhruvpathak1850 3 роки тому +3

    Hi , had a question ! So when the sensor was outside it shows a value of around 650 but when in water it comes down to around 200-300 ; I'm guessing that this unit is not the Volumetric Soil moisture but something else.. can you please explain what unit this is and how I can convert it to both Volumetric Soil Moisture and in terms of millimeters?

    • @jyotipatil8543
      @jyotipatil8543 11 місяців тому +1

      It's the correct value don't be stressed

    • @dhruvpathak1850
      @dhruvpathak1850 11 місяців тому

      @@jyotipatil8543 hey thanks.. this was for a college project 2 years ago :) but thnks anyway hehe..
      😀

    • @jyotipatil8543
      @jyotipatil8543 11 місяців тому

      Ok

  • @shivamsingh07
    @shivamsingh07 6 років тому +1

    Amazing Mumbai Meetup sir..! It was a pleasure meeting you💕

  • @s.smahapatra2164
    @s.smahapatra2164 Рік тому

    I have 90 plant. Please reply to me, what should I do for a lot of plants self irrigation ?

  • @alexyap7323
    @alexyap7323 3 роки тому

    Very good. Thanks for sharing.

  • @vezcu2000
    @vezcu2000 4 роки тому +1

    How is that possible that you are comparing an int value "val" to LOW or HIGH. I have done this using map to scale it. What is HIGH and LOW value here?

  • @izzanieeze3704
    @izzanieeze3704 2 роки тому

    thank you for the video, i use it for my school project. But i want to ask, how can you change the coding so that i can put it on esp32?

  • @Skyonly_22
    @Skyonly_22 2 роки тому

    Can i ask.... What battery that u use?

  • @kazimir8086
    @kazimir8086 5 років тому +2

    What if I want to control 9 sensors and 9 pumps? I'm absolutely new to this.

  • @rpgrendi8868
    @rpgrendi8868 5 років тому +1

    Mine is ready but the soil moisture sensor can't be automatic. Is there something wrong?

  • @udith-pz4tv
    @udith-pz4tv 6 років тому +1

    I also made a equipment like this but the sensor did not work after some period.what are the good quality sensors that will last for a long period.
    Thanks.

    • @bricolivergames
      @bricolivergames 6 років тому +1

      Yes these sensor is not efficient,
      1 month in the earth the sensor is dead.

    • @gustavferdman214
      @gustavferdman214 5 років тому +1

      I have a solution for you without changing the sensor that will make it last much longer.
      The sensor uses direct current to operate, meaning that the two probes sitting in the soil are affected by electrolysis. This effect is speeding of the corrosion of the probes by a lot, no matter what metal the probes are made out of.
      THE SOLUTION:
      To solve this problem you simply turn the probe off as often as possible by controlling its power through the Arduino sketch. Do this by connecting the probes +5V pin to a digital output pin on the Arduino, it might be wise to put a small resistor and/or a schottky diode in between to protect the output pin on the Arduino. Edit: Just beware of the voltage drop from the diode and resistor...
      Proceed by adding a variable in the sketch with which you can control that pin. As such:
      int SensorPowerPin = 10;
      void setup()
      {
      pinMode(SensorPowerPin , OUTPUT);
      }
      void loop()
      {
      delay(500); //Loop delay for statemachine
      digitalWrite(SensorPowerPin, HIGH); //Will turn the sensor on, this will make it corrode faster. But it is only when this is HIGH that you can take a measure..
      //Take reading blablabla
      digitalWrite(SensorPowerPin, LOW); //The sensor will now turn off and save it from the horrors of electrolysis. It can survive for over a year if you do this effectively.
      }

    • @StevoJN
      @StevoJN 5 років тому +1

      @@gustavferdman214 Very good info! I used a transistor to switch the 3.3v line to the probe using a digital pin to control the transistor with a 10k resistor. Also works great

    • @gustavferdman214
      @gustavferdman214 5 років тому

      @@StevoJNGlad you liked it Steve!

  • @ayushsahu8856
    @ayushsahu8856 3 роки тому

    Isme 9 v ki battery ki jagah cable use kr skte h kya

  • @bongukusumasri6186
    @bongukusumasri6186 3 роки тому +1

    Can you please give complete information regarding components

  • @shreyash958
    @shreyash958 6 років тому +8

    Code is not available please write the code once again on Google drive

    • @TechnicalShubham993
      @TechnicalShubham993 6 років тому +1

      What wont you write it By ur own

    • @TechnicalShubham993
      @TechnicalShubham993 6 років тому +1

      Work hard shreyash kumar

    • @shreyash958
      @shreyash958 6 років тому

      @@TechnicalShubham993shubham bas yar abb UA-cam pe bhi comments

    • @vishwatharanga5540
      @vishwatharanga5540 5 років тому

      Code is on Viral Science Web Site
      www.viralsciencecreativity.com/tutorials/arduino-soil-moisture-sensor-relay-control

    • @willcowan
      @willcowan 5 років тому

      @@vishwatharanga5540
      //Viral Science ua-cam.com/users/viralscience
      //Soil Moisture Relay Sensor
      int Relay = 13;
      int sensor = 8;
      int val;
      void setup() {
      pinMode(13,OUTPUT); //Set pin 13 as OUTPUT pin, to send signal to relay
      pinMode(8,INPUT); //Set pin 8 as input pin, to receive data from Soil moisture sensor.
      }
      void loop() {
      val = digitalRead(8);
      if(val == LOW)
      {
      digitalWrite(13,LOW); //if soil moisture sensor provides LOW value send LOW value to relay
      }
      else
      {
      digitalWrite(13,HIGH); //if soil moisture sensor provides HIGH value send HIGH value to relay
      }
      delay(400);
      }

  • @hlaingtunaung5119
    @hlaingtunaung5119 4 роки тому +1

    Thank you so much.I got it.

  • @sallu21m
    @sallu21m 3 роки тому

    Hello ... can we make only a soil moisture sensor that can send a sms once the mositure value falls below a particular level ??

  • @omkarbhavi1311
    @omkarbhavi1311 2 роки тому +1

    Could you please update the circuit diagram with Water pump?

  • @gowthamreddysure3062
    @gowthamreddysure3062 5 років тому +1

    Code is not opening on this website

  • @balkrushnakadam7082
    @balkrushnakadam7082 4 роки тому

    If you are using soil moisture sensor's comparator board so there is no need of Arduino you can directly connect moisture sensor's comparator output to relay. But for complex purpose like getting all possible moisture values and decision making you can use Arduino, Arduino is useless in your project.

  • @VanitasOnYT
    @VanitasOnYT 3 роки тому

    whats the name of the relay you used in fritzing?

  • @marciano.abrantes2564
    @marciano.abrantes2564 Рік тому

    What is the connection of the motor pump?

  • @siddharth4662
    @siddharth4662 3 роки тому

    can this be divided in 2 parts where sensor data is sent using esp8266 and motor starts in the pump house where the sensor data can be received over wireless?

  • @muhdizzudin1664
    @muhdizzudin1664 5 років тому

    will the water pump burn if the water is finished, how to prevent it?..

  • @shivanshyadu4830
    @shivanshyadu4830 5 років тому +4

    How to connect relay with water pump

  • @Itachi-pg3lq
    @Itachi-pg3lq 3 роки тому

    Can you adjust the sensitivity of soil moisture sensor?because once its wet it automatically stop.

  • @smitahegde8241
    @smitahegde8241 5 років тому +1

    Plz make more projects on agriculture using arduino

  • @stalvinmenezes
    @stalvinmenezes 5 років тому +1

    guys which is the software u used in beginning of the video to show virtual connection to aurdino

  • @sanketnandekar348
    @sanketnandekar348 2 роки тому

    Hey, could you tell me, on which tool did you made the circuit diagram?

  • @youtubetrend3512
    @youtubetrend3512 5 років тому +2

    Where the submersible pump is connected

    • @praventz
      @praventz 5 років тому

      also wondering this

    • @youtubetrend3512
      @youtubetrend3512 5 років тому

      @@praventz where you connected pls tell me bro

  • @jonneyni8713
    @jonneyni8713 4 роки тому

    Hi, I am a teacher and want to publish the video to my students to illustrate how technology can be used to study science. Can I use your video with quoting your channel name?

    • @ViralScience
      @ViralScience  4 роки тому +1

      You can show them but dont repost this video

    • @jonneyni8713
      @jonneyni8713 4 роки тому

      Viral Science - The home of Creativity Thanks & Good job!

  • @رجلالسلام-خ2و
    @رجلالسلام-خ2و 4 роки тому

    great explanation thanks

  • @mk002
    @mk002 5 років тому +8

    please tell me how u connected motor to relay and battery

  • @vishnuchaurasiya9721
    @vishnuchaurasiya9721 6 років тому +1

    One of my favorite. ....amazing 👍👍👍

  • @coolstuff3246
    @coolstuff3246 5 років тому

    Can i use 220v pump with the relay

  • @miadudasova5430
    @miadudasova5430 3 роки тому

    Could you share schematics and code with water pump

  • @brunoboy7774
    @brunoboy7774 5 років тому +1

    Sir I got a problem connecting relay and water pump......pls help....provide a diagram pls.....

  • @shaikhnizam4751
    @shaikhnizam4751 4 роки тому

    I have 2pump and 2 relay use and I make codding but properly work only one sensor and pump so I need your help please help me

    • @balkrushnakadam7082
      @balkrushnakadam7082 4 роки тому

      If you want to start 2 pumps at same time by two relay just connect another wire at same output pin on Arduino to your other relay. And if your single relay current rating high enough to support two pumps then you can connect two pump on single relay.

  • @grahamkirk6217
    @grahamkirk6217 5 років тому +1

    How can you do this with a solenoid valve?

  • @franciscolopes9568
    @franciscolopes9568 3 роки тому

    BRO you are killing the plants lol

  • @SurajRSuri
    @SurajRSuri 4 роки тому

    Super vedio 👌👌👌 keep doing...

  • @D_Chitale
    @D_Chitale 4 роки тому +1

    I think u have made intro in after effect

  • @CODTALES-KILLSTREAKS
    @CODTALES-KILLSTREAKS 4 роки тому

    what program did you use to make the schematic?

  • @electronic7979
    @electronic7979 6 років тому +1

    Good idea 👍

  • @shahmiesham
    @shahmiesham 3 роки тому

    thanks sir

  • @PhG1961
    @PhG1961 6 років тому

    Nice and interesting video. However... consider to choose a different audio track. It would make your video more epic. The free music is horrible.

  • @kathleenkenncamensi4977
    @kathleenkenncamensi4977 3 роки тому

    Do you have pics po sa materials? Hehe

  • @xcrs_milesxd
    @xcrs_milesxd 2 роки тому

    Bro, you are removing and inserting the moisture sensor by your hands, you do not have to do that there is a separate code for the automatic system, pls share that (code) with us...!!

  • @learnerashish3490
    @learnerashish3490 5 років тому

    Bro how do you connect peristaltic pump with relay and battery. Please help.

  • @andriyaden7193
    @andriyaden7193 6 років тому

    If i want to do it as controller, i mean no need to hold the sensor and take it off from the soil. Just a timer. For example each 24 hours the water goes to the soil with specific amount. How can u do that?
    Is it from the code itself? Or u need other components?

  • @AkashRaj-wd6wm
    @AkashRaj-wd6wm 5 років тому

    Can I use 9v battery.
    Plz reply fast

  • @prabhadevi8367
    @prabhadevi8367 3 роки тому

    I didn't worked for me
    Its working just opposite
    In water motor is running and sensor outside the water stops motor

  • @jerrry7
    @jerrry7 5 років тому +1

    please....sir can you send me code...because this code did not open..

  • @Hrishikesh_0102
    @Hrishikesh_0102 3 роки тому

    Sir code is wrong..not working nor showing the readings...please help me..!!

  • @shreedevi913
    @shreedevi913 6 років тому

    Can u make a series of cnc machines

  • @mohdtamizimohdsalimi6182
    @mohdtamizimohdsalimi6182 5 років тому +1

    Hai... How to install LCD Display on this project? and what is the code for LCD Display was installed?

  • @ninjanuggetsbrozhaf441
    @ninjanuggetsbrozhaf441 5 років тому +1

    link for coding is died

  • @ateebshah5576
    @ateebshah5576 5 років тому

    hi....which circuit design software did u use for this

  • @carromwithharshul119
    @carromwithharshul119 3 роки тому

    Thx Bro

  • @viprar6682
    @viprar6682 2 роки тому

    What are the uses of this project

  • @ananmaygupta7588
    @ananmaygupta7588 3 роки тому

    How to connect the relay module to the water pump ?? and also where is the code??

  • @urvashisachdeva5565
    @urvashisachdeva5565 3 роки тому

    hi can u pls explain the code to me i didnt get it

  • @Sunshine-de1tb
    @Sunshine-de1tb 5 років тому +1

    bhai code ki link open nhi ho rhi he

  • @moheshjain9399
    @moheshjain9399 4 роки тому

    what is inside the water? (2.05 mins)

  • @acromaticboyz657
    @acromaticboyz657 5 років тому

    Bro can I use the code without relay module

  • @Pulmvai
    @Pulmvai 5 років тому

    Bro in which software in pc do you make circuit diagrams or virtual arduino software .Can you please give me the name of the software 🙁🙁🙁

  • @rumours.9508
    @rumours.9508 6 років тому

    Super bro

  • @bluespace8119
    @bluespace8119 6 років тому +1

    Where r u from

  • @llaci80
    @llaci80 4 роки тому

    i do this without arduino :) if not wet relay on by pump

  • @kavyashetty1115
    @kavyashetty1115 4 роки тому

    What changes to make in code if we use a 4 by 4 relay

  • @renukadevi5431
    @renukadevi5431 5 років тому

    What is inside the mug?

  • @abdlfttahsawab2292
    @abdlfttahsawab2292 4 роки тому

    3afak site bach nkhdm bih tinkercad mafihch pompe

  • @technicalsaikat3502
    @technicalsaikat3502 5 років тому

    Big thank you

  • @himachalitrader25
    @himachalitrader25 3 роки тому

    Motor se realy module connection???

  • @varboy3136
    @varboy3136 4 роки тому

    bro can u use ATtiny 85

  • @projectsofme6092
    @projectsofme6092 5 років тому

    her.I have not water pomp please you can another device make

  • @purnimasingh7388
    @purnimasingh7388 6 років тому +1

    Amazing projects 👍👍

  • @gudurusaikumarreddy
    @gudurusaikumarreddy 5 років тому

    which software is this sir?

  • @MrBobWareham
    @MrBobWareham 4 роки тому

    Bin the water sensor before it corrodes and get a capacitive one

  • @Omniversegaming
    @Omniversegaming 6 років тому

    Good job bro😍😍

  • @gAmE-zq4wk
    @gAmE-zq4wk 4 роки тому +1

    มีขายเป็นชุดเลยไหมค่าบ

    • @gAmE-zq4wk
      @gAmE-zq4wk 4 роки тому

      ขอเฟสหน่อยค่าบ

  • @07et-patolegaurav8
    @07et-patolegaurav8 4 роки тому

    Program kaha se lu

  • @s.sradon9782
    @s.sradon9782 5 років тому

    ...thats a probe, not a sensor.
    get the capacitive sensor to avoid corrosion

  • @husseinalbasri812
    @husseinalbasri812 3 роки тому

    Crap, it stops as soon as it reach the moisture sensor.
    At least make it run for few seconds when it is dry (depending on water flow rate and the pod size)

  • @itx.pagrotraap.editz..5893
    @itx.pagrotraap.editz..5893 3 роки тому

    Pls give the motor digram .

  • @adriasanchez4166
    @adriasanchez4166 4 роки тому

    I can make this with esp8266

  • @adarshsnair5417
    @adarshsnair5417 6 років тому

    Awesome