Тёмный

How to make Automatic Plant Watering System using Arduino UNO and Soil Sensor || Techie Lagan 

Techie Lagan
Подписаться 3,1 тыс.
Просмотров 632 тыс.
50% 1

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 739   
@TechieLagan
@TechieLagan Год назад
int water; //random variable void setup() { pinMode(3,OUTPUT); //output pin for relay board, this will sent signal to the relay pinMode(6,INPUT); //input pin coming from soil sensor } void loop() { water = digitalRead(6); // reading the coming signal from the soil sensor if(water == HIGH) // if water level is full then cut the relay { digitalWrite(3,LOW); // low is to cut the relay } else { digitalWrite(3,HIGH); //high to continue proving signal and water supply } delay(400); }
@khadizayesminnodi8786
@khadizayesminnodi8786 Год назад
Sir ...I connected all and the motor is running...but when I put sensor in the mud or water motor also running it doesn't on or off ...what can I do for this problem plz solve this 🙏
@amirreza33
@amirreza33 Год назад
@@khadizayesminnodi8786 I had this problem until I fixed the code void setup() { pinMode(3, OUTPUT); // output pin for relay board, this will send signal to the relay pinMode(6, INPUT); // input pin coming from soil sensor } void loop() { int water = digitalRead(6); // reading the signal coming from the soil sensor if (water == HIGH) { // if water level is low (i.e., soil is dry) then turn on the relay digitalWrite(3, HIGH); // high is to turn on the relay } else { // if water level is high (i.e., soil is wet) then turn off the relay digitalWrite(3, LOW); // low is to turn off the relay } delay(400); } Enter this code, most likely the problem will be solved
@chvinaykumar245
@chvinaykumar245 Год назад
​@@amirreza33 same issue is coming for me
@sayedtousifalam3724
@sayedtousifalam3724 Год назад
​@@chvinaykumar245 is it solved or not?
@sayedtousifalam3724
@sayedtousifalam3724 Год назад
​@@chvinaykumar245plz reply bro
@immortalsugimoto4498
@immortalsugimoto4498 8 месяцев назад
This saved my semester. THANK YOU!!!!
@suru321
@suru321 6 месяцев назад
Kaise banaya apne
@jonburgmann
@jonburgmann 2 года назад
Put a toilet cistern on wall when it needs filling it will do it as the float lowers & a 12vdc solenoid when the dirt become dry it switches on solenoid & allows water to flow from cistern down through solenoid make a ring with small 5-6mm poly garden hose & tee to connect to solenoid output drill some 1mm holes in underside of the poly tube ring (holes face down to soil) when soil becomes damp enough it switches water solenoid off until soil becomes dry again
@SantoshMahato-gh9kc
@SantoshMahato-gh9kc Год назад
TOMORROW I HAVE MY SCIENCE EXHIBITION IN SCHOOL SO PLEASE A VIDEO ON HOW TO EXPLAIN THIS WITH DETAIL TO THE TEACHER TO THIS EXHIBITION
@RajalekshmiRBMH
@RajalekshmiRBMH 5 месяцев назад
Sometimes the powersupply from the relay is not sufficient enough to power the motor pump. In that case, modify the following connection: 1) NO pin of relay-->one end of the motor pump 2) COM pin of relay--> -ve external power supply 3) Other end of motor pump --->+ve power supply. Rest all the video is perfect!
@dumebi_ne
@dumebi_ne Год назад
This is very easy to understand. Thank you very much 🙏🏾
@reenakumari716
@reenakumari716 Год назад
😂
@krishna_2346
@krishna_2346 11 месяцев назад
Kese banaya
@krishna_2346
@krishna_2346 11 месяцев назад
Reply karo Kese banaya
@masu4644
@masu4644 Год назад
2:48 you havent show that an extra power supply is needed??
@chandrunayaka8953
@chandrunayaka8953 2 месяца назад
S bro what we can do for that
@yogaperam3003
@yogaperam3003 Год назад
I completed my project by seeing your video bro--------ilane recchipo bro
@SanataniHindus_108
@SanataniHindus_108 2 года назад
Because of you, my project was successful. Thank You very much for giving me this idea
@prakharsharma1005
@prakharsharma1005 Год назад
Bro input pe supply kse aur kha se denge
@ظاحان
@ظاحان Год назад
Can you tell me more about this project?
@juliusvillarico5498
@juliusvillarico5498 Год назад
Battery operator ?
@kristinanadinelacno4340
@kristinanadinelacno4340 Год назад
the code is not working
@RIYAREDKAR
@RIYAREDKAR 10 месяцев назад
If you're a student could u pls help us out. ?
@chanakyashukla5820
@chanakyashukla5820 2 года назад
good one! but I made some changes in the code and in the system. I replaced the pins and recoded them for the Arduino Nano microcontroller. I found that when the sensor was giving a low signal the relay (motor) went off. That makes no logical and practical point, when soil is already wet why would we want more water to be pumped into the soil? It should be another way around, which means when the soil is found dry by the sensor it should pump the water from the tank to the surface of the soil. For that, I simply changed the code from HIGH to LOW. if(water == LOW) // Line number 9 Also, I directly connected the DC motor water pump to the pin instead of a relay. Using a relay would be overkill if I want to use it for just a small plant. Relay can be useful If I want to trigger a high voltage bigger AC motor with the same system. To maybe water a whole garden, a park, or a field of crops. But very useful watching you in this video encouraged me to finish a project I was working on for more than 6 years from now. Thanks a lot. I made a video too, not a tutorial but of the functioning project. Though I have to think about giving power to the microcontroller, currently I used my battery bank. I'll try to make a permanent and durable setup.
@nerrfy
@nerrfy 2 года назад
could you tell me connection as you are saying I m interested to do this project
@aaronnself
@aaronnself Год назад
Can you plzz provide the code
@joyachakraborty9835
@joyachakraborty9835 11 месяцев назад
can you please give the code?? please please...
@shivanidubey1716
@shivanidubey1716 11 месяцев назад
Can you please provide code
@chanakyashukla5820
@chanakyashukla5820 11 месяцев назад
I'm delighted to see the enthusiasm around the code modifications I made! To help everyone understand the changes, I've created a detailed video explaining the process. You can find the link to the code in the video description. Happy making, and thank you for your interest! For the full tutorial, check out my RU-vid video: Click here ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Ct0QxOE1f1A.html @@shivanidubey1716
@amanpratikpattnaik430
@amanpratikpattnaik430 3 года назад
U did really good it was awesome keep it up bro😊😁
@TechieLagan
@TechieLagan 3 года назад
Thanks..
@abdulrahmanismailali1064
@abdulrahmanismailali1064 2 года назад
@@TechieLagan can you help me
@crazy__girl..0906
@crazy__girl..0906 5 месяцев назад
Hlo ​@@TechieLagan
@TechieLagan
@TechieLagan 5 месяцев назад
Yes !!
@meidalailia_
@meidalailia_ 16 дней назад
permission to make a video for a learning assignment, sir 🙏 thank you
@sanduniprabashika3213
@sanduniprabashika3213 Год назад
I love you more than our university and the lectures😘🥺♥️♥️ also the uni guys
@MallisettyMahalakshmi
@MallisettyMahalakshmi 11 месяцев назад
Thanks bro this was helpful i am really happy 😊 Thanks 👍👍
@JuanS-g3r
@JuanS-g3r Год назад
Thank you man , for you i could do my project for tecnology 😃❤
@teamkod-devil6196
@teamkod-devil6196 Год назад
Thanks broo. But I have one simple question can you explain me please. Question is solar powered smart Irrigation using IoT project title, which project is possible?? Please reply me 🥺
@devanshgupta794
@devanshgupta794 11 месяцев назад
To modify your Arduino code to have a burst of 3 seconds followed by no output for 90 seconds, you can use the `millis()` function to track time. Here's an updated version of your code: ```cpp int water; // Random variable unsigned long previousMillis = 0; const long burstDuration = 3000; // 3 seconds const long pauseDuration = 90000; // 90 seconds void setup() { pinMode(3, OUTPUT); // Output pin for relay board pinMode(6, INPUT); // Input pin coming from soil sensor } void loop() { water = digitalRead(6); // Read the incoming signal from the soil sensor unsigned long currentMillis = millis(); if (currentMillis - previousMillis < burstDuration) { // Burst duration: 3 seconds if (water == HIGH) { digitalWrite(3, LOW); // Cut the relay } else { digitalWrite(3, HIGH); // Continue providing signal and water supply } } else { // Pause duration: 90 seconds digitalWrite(3, HIGH); // Ensure the relay is off during the pause if (currentMillis - previousMillis >= burstDuration + pauseDuration) { // Reset the timer when the pause duration is over previousMillis = currentMillis; } } delay(400); // Optional delay for stability } ``` This code will provide a burst of output for 3 seconds, followed by no output for 90 seconds, and then the cycle will repeat. The `millis()` function is used to keep track of time, and it compares the current time with the previous time to control the relay output accordingly.
@OneEduu
@OneEduu 6 месяцев назад
Thank you lagan , you're my savior
@enriquegue6787
@enriquegue6787 Год назад
Thanks you My brother, You just saved my semester. (I'll be here supporting you)
@RIYAREDKAR
@RIYAREDKAR 10 месяцев назад
hi. we're students too, could u help us out.
@1101_BibihazaratunNesa
@1101_BibihazaratunNesa Месяц назад
can u help!!
@gayathchaminda7495
@gayathchaminda7495 Год назад
That was so helpful and easy to understand Thank you!!!
@IanG-uf2fq
@IanG-uf2fq Год назад
maybe for curry eaters
@ArwanSasmito
@ArwanSasmito Год назад
who asked
@vspravalika98
@vspravalika98 Год назад
Thank u so much for your support to complete this project this is so helpful thanks a lot☺️
@prakharsharma1005
@prakharsharma1005 Год назад
Bro input me current kitna aur lga se dena h
@carinarus3671
@carinarus3671 Год назад
Could please explain what is the 5V supply that you connected to the relay and the water pump? I don't understand. This is my first project like this. Thank you!!!
@bagassaputra6338
@bagassaputra6338 11 месяцев назад
​@@carinarus3671battery 9 volt
@DWALLPAINT
@DWALLPAINT 2 года назад
Very professional work, Thanks my friend ❤️❤️👌👌
@Nurinasrof
@Nurinasrof Год назад
why the coding cant'run? Is there a file that I need to upload in the arduino?
@nilanjanaghoshdeie6321
@nilanjanaghoshdeie6321 10 месяцев назад
Sir can you please tell me is the green wire connected to the + of the battery or to the - of the battery and did you Connect the - ve of the pump with the relay N/O pin? Great video sir thank you very much
@TechieLagan
@TechieLagan 10 месяцев назад
See the positive negative doesn't matter in the pump which is used in the video.. U just have to connect one wire of the pump directly to the battery and the other wire u have to connect it to the battery but through the relay module... The connection will be same as we do for connecting a switch to any simple circuit...
@meetsoni1938
@meetsoni1938 5 месяцев назад
Working perfectly fine. Thanks a lot ❤
@CyberAssault_Gamers
@CyberAssault_Gamers 4 месяца назад
Cod working?
@mallikadas9162
@mallikadas9162 Год назад
Do we need to connect the two end of the relay module with a battery?
@elyzadimaapi9495
@elyzadimaapi9495 9 месяцев назад
up!
@GAMERMIRCHI-08
@GAMERMIRCHI-08 2 года назад
thanks bhaiya ye video mera kam aya
@kumaranperumal718
@kumaranperumal718 Год назад
Sir where u connect the red and green wire in pump? please answer sir i am doing my school project
@TechieLagan
@TechieLagan Год назад
It is connected to a 9 volt battery or you can also use power bank
@timecop1983Two
@timecop1983Two Год назад
This was absolutely amazing! But can I connect a 12v pump? Just really need to know.
@TechieLagan
@TechieLagan Год назад
Yes you can !!
@timecop1983Two
@timecop1983Two Год назад
Thanks alot. Keep up the good work!
@noiresama7222
@noiresama7222 Год назад
Hello, thanks for your tutorial, if I'm using a 12V power source and a 12V water pump, can I still use the 5V relay module?
@TechieLagan
@TechieLagan Год назад
Yes you can . There is no problem.
@thisboygotcompuer7705
@thisboygotcompuer7705 9 месяцев назад
@@TechieLagan and we dont need to use any transistors or resistors?
@pavankarkhanis5914
@pavankarkhanis5914 11 месяцев назад
Very Helpful!! Worked for me. Thanks
@RIYAREDKAR
@RIYAREDKAR 10 месяцев назад
Hi. Could you tell us how it worked for you? We did everything right but it still dosent work! :(
@amsyarhasni7158
@amsyarhasni7158 2 года назад
The green wire and the red wire at the relay at the water pump you connected with what
@TechieLagan
@TechieLagan 2 года назад
It is connected with battery ( Power Bank) For more clarity please refer to the circuit diagram!!
@vikramverma1539
@vikramverma1539 Год назад
Thank u very much, this is going to help me in my project
@TechieLagan
@TechieLagan Год назад
Glad I could help
@hans6304
@hans6304 Год назад
Hello friend, thank you for the video. Can we submerge the sensor quite deep in the soil and wrap the sensor and the cable connection with electrical tape? Thank you for the kind response.
@TechieLagan
@TechieLagan Год назад
Yes
@sherry6694
@sherry6694 Год назад
can we use ultra sonic sensor instead of soil sensor if yes then what is ardino code please reply
@rushibari-pq2mu
@rushibari-pq2mu 11 месяцев назад
How ultrasonic sensor can use
@SantoshMahato-gh9kc
@SantoshMahato-gh9kc Год назад
PLEASE MAKE A ANOTHER VIDEO TO EXPLAN THE PROGRAM
@jackbro8140
@jackbro8140 Год назад
Hello, I have a queation aobut Soil Moisture Sensor, why my Soil Moisture Sensor touch the water but water pump won't stop? I also print the value of the moisture. the value is keep in value=0, is my moisture is broken?
@krushnakekane4247
@krushnakekane4247 2 года назад
Where is the relay module wires connected other than motor?
@bobthemonkey9918
@bobthemonkey9918 Год назад
I think a separate power source
@AnshumanAtrey
@AnshumanAtrey Год назад
In relay NO and COM connected or NC and COM to motor ? and motor needs to be in the water to rotate or for the test, will it rotate in the air too?
@TechieLagan
@TechieLagan Год назад
NO and COM. No need to put it in water.....
@AnshumanAtrey
@AnshumanAtrey Год назад
@@TechieLagan Thank you sir ❤️❤️❤️❤️
@maulidyasyah8914
@maulidyasyah8914 Год назад
sorry sir, can u help me, my relay just red LED is on, but the green one is no. and relay for pump is not working (even the sensor is wet or not wet). my coding exactly same just like the this youtube.
@RenoAhmad-qw9qo
@RenoAhmad-qw9qo 3 месяца назад
your vidio help me for my project bro thakyou
@darr4658
@darr4658 10 месяцев назад
If I use a 5v relay, a 5v water pump and a 9v power source, will it work?
@TechieLagan
@TechieLagan 10 месяцев назад
yes it will work.
@moistenland
@moistenland 5 месяцев назад
nice video, if there is a compeleted automatic drip irrigation kit with only quick-dial control, will be more helpful for family daily using?
@HoXDipannew
@HoXDipannew 3 года назад
Op bro 😀
@ladoonithi1147
@ladoonithi1147 7 месяцев назад
sir kindly tell me that in 2.46 where you connecting the other end of the green wire is that wire from battery
@TechieLagan
@TechieLagan 7 месяцев назад
yes
@carrisaaulia5657
@carrisaaulia5657 2 года назад
what can I use other than a 5 volt power supply as the connector of the 2 red and green wires that connects to the relay and motor?
@TechieLagan
@TechieLagan 2 года назад
U can use an old phone charger or a power bank or A 9 volt battery .....
@abdulrahmanismailali1064
@abdulrahmanismailali1064 2 года назад
@@TechieLagan can you give me your phone number i need to your help
@tejasrajak4198
@tejasrajak4198 Год назад
@@TechieLagan will arduino blast
@TechieLagan
@TechieLagan Год назад
No but if you provide more than 12 volts then there may b a little spark in the microprocessor and the whole Arduino may stop working.
@ovaisalamqureshi2959
@ovaisalamqureshi2959 Год назад
Aap plz circuit pura bataya kare 2 chizen aapne kati hai relay coil se battery connect ki ya kuch aur dusri aapne program ko Arduino se connect kese kiya plz reply !!! Aapne programme compile to kiya but hamne kiya to no board found bata raha hai
@mahadschoolboygamer260
@mahadschoolboygamer260 7 месяцев назад
You save my exam
@amulyabalabantray2959
@amulyabalabantray2959 3 года назад
Wow very good
@dilipkundapur
@dilipkundapur Год назад
Can we connect a 16x2 i2c display with it.pls reply and suggest connection and code
@ShrustiKushal-st2dg
@ShrustiKushal-st2dg 3 месяца назад
Components
@CS_DEEPIKAA
@CS_DEEPIKAA Год назад
sir thank you so much very nice explanation and implementation .This same project how we can implement in BLYNK???
@mulaguru.vaishnavi
@mulaguru.vaishnavi Год назад
thanks for the video , it is working for me
@dmitryjayc8767
@dmitryjayc8767 Год назад
hi sir , can I use esp8266 for this project ?
@ayeshaamjad4786
@ayeshaamjad4786 8 месяцев назад
I have a question. where does the green and red wire which you connected to the relay module will go?
@rawr6796
@rawr6796 8 месяцев назад
based on the comment, it seems he connected it into another powerbank. but he also said we can use a 9v battery instead. ill try it out in a few hours and see if it works. if i remember myself commenting here then ill try to update you too 😅
@TechieLagan
@TechieLagan 7 месяцев назад
to the battery
@m-0966
@m-0966 8 месяцев назад
From where did u get the power to suck the water
@TechieLagan
@TechieLagan 7 месяцев назад
from the battery
@koterusreeramya796
@koterusreeramya796 2 года назад
Bro what about the connection of other green and red wires ends while connecting to relay and motor? Plz give explanation of that connection
@TechieLagan
@TechieLagan 2 года назад
Those wires are connected to 5volt Power supply...
@kristinanadinelacno4340
@kristinanadinelacno4340 Год назад
@@TechieLagan i thought its 9v
@TechieLagan
@TechieLagan Год назад
Bro you can use 5 volt, 9 volt, 12 volt or even AC power supply ....it all depends on the type of pump you are using
@PorbandarPlantDiary
@PorbandarPlantDiary 2 года назад
Very nice
@vedantugale2646
@vedantugale2646 Год назад
Sir donwe have to give external supply to the relay and pump please replay
@a2z_gamer38
@a2z_gamer38 10 месяцев назад
Very nice video Loved it
@RameezM-xb4eu
@RameezM-xb4eu 8 месяцев назад
No mention about battery
@TechieLagan
@TechieLagan 7 месяцев назад
sorry for that
@Threya127
@Threya127 7 месяцев назад
@@TechieLagan voltage of the battery??
@TechieLagan
@TechieLagan 7 месяцев назад
@@Threya127 Here i have used power Bank for the Arduino and 9 volt battery for the pump
@monitamilhome6459
@monitamilhome6459 Год назад
Thank you soo much for your help 🙏🙏 👌
@danialwaiznya7864
@danialwaiznya7864 2 года назад
if i want lcd display,how the connector?because my final project it same like this but its must add lcd.can you help me please
@sciencebee6456
@sciencebee6456 Год назад
We have copy pasted the code and tried to upload the code but it shows that the upload is failed. Please help.
@AnshumanAtrey
@AnshumanAtrey Год назад
Will it work when connected to a laptop or need a power supply? When I rotate the potentiometer both lights on the water sensor board start glowing and the green light on the relay is turned off is that ok?
@TechieLagan
@TechieLagan Год назад
Yes that is ok.... See your Arduino needs power supply and pump also needs power supply...so it depends on you how u r providing power to both...
@AnshumanAtrey
@AnshumanAtrey Год назад
@@TechieLagan Thanks alot for replying so fast I have few more questions 9V battery for both is okey ? or series 1.5V Cells in series or parallel ?
@TechieLagan
@TechieLagan Год назад
One 9 volt battery will be ok for both.... If you r doing it just for demonstration... Or else you can use a power bank also...
@shampadebnath6250
@shampadebnath6250 Год назад
What jumper wires did you used male to male or female to male or female to female?? Please reply!! 🙏
@TechieLagan
@TechieLagan Год назад
Male to female
@shampadebnath6250
@shampadebnath6250 Год назад
@@TechieLagan thank you so much for your instant reply!!
@TechieLagan
@TechieLagan Год назад
It's my responsibility sir !!
@TeddyChoco-pg9zf
@TeddyChoco-pg9zf 9 месяцев назад
Hello May i know in what app we have to enter our program code
@TechieLagan
@TechieLagan 9 месяцев назад
If u r asking about how to upload the code then u have to use arduino ide which is a computer software but if you want to upload the code using your phone then you can watch this video - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-FU7PHi79Q2Q.htmlsi=ZvTLGn5uPpdM95UZ or if you want to download and install the arduino ide then you can watch this video - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-oL23ZVML-Yw.htmlsi=Zd-4QHSRdR_eJ8QC
@chandreshgupta4967
@chandreshgupta4967 Год назад
Where is the blue wire going from the Arduino in the demonstration?
@whako13
@whako13 4 месяца назад
Hi, thank you for this tutorial, this is very helpful. if i have to connect more sensors? can you please help with an updated schematic?
@Threya127
@Threya127 7 месяцев назад
Sir, its quite important. may i just know the voltage of the battery you used.
@TechieLagan
@TechieLagan 7 месяцев назад
For pump you can use 9 volt battery but for Arduino it depends from which socket you are giving power to the Arduino If you are using the power jack then you can give maximum upto 12 volt but if you giving power through the USB cable then you can use power Bank or charger adapter.
@windystorm9957
@windystorm9957 15 дней назад
​@@TechieLaganGoodmorning sir, may I just ask how you have connected the 9 volt battery? Thank you so much and please reply fast sir, my project is due next week.Thank you again
@TechieLagan
@TechieLagan 14 дней назад
Ig u r asking about the power supply to the pump. So it is directly connected to the 9 volt battery through the relay module . Here the relay is acting as a switch.
@xthunder69
@xthunder69 8 месяцев назад
bro where do the other end of the 2 wires that go in the relay model go?
@DEVILGAMING23909
@DEVILGAMING23909 7 месяцев назад
Yes
@Khalid-1265
@Khalid-1265 Год назад
Great job thank you sir I just have a question does the arduino must be connected to the laptop or i can connect it to a battery ?
@TechieLagan
@TechieLagan Год назад
Yes, you can connect it to battery.
@anikethbhat6230
@anikethbhat6230 2 года назад
Where does the green wire and red wire connected to the relay module go
@TechieLagan
@TechieLagan 2 года назад
They are connected to 5volt supply from a power bank.
@linhladuongxuan6343
@linhladuongxuan6343 2 года назад
@@TechieLagan Can you just connect the wire from the pump to the relay if the board has enough supply of power?
@c_azahramaulanir487
@c_azahramaulanir487 2 года назад
@@TechieLagan can I connect to 9v baterry?
@TechieLagan
@TechieLagan 2 года назад
Yes
@omprakashpanda324
@omprakashpanda324 3 года назад
Keep it up bro👍🏻👍🏻🔥🔥
@TechieLagan
@TechieLagan 3 года назад
Thanks ....
@caturanthony5887
@caturanthony5887 Год назад
bro why my pump didnt on?
@shivangbhatia2362
@shivangbhatia2362 Год назад
Bro same here 😭😭😭
@boatman7777
@boatman7777 3 года назад
Great video. Could it be modified to water several different plants all at different times?
@TechieLagan
@TechieLagan 3 года назад
Yes , definitely it could be modified. In that case u have to use multiple soil moisture sensors, relay modules and pumps. But no need to use multiple arduinos, one Arduino will be enough. And also u have to do some changes with the code.
@RahanComhaltas
@RahanComhaltas 3 года назад
@@TechieLagan thanks.
@TechieLagan
@TechieLagan 3 года назад
My pleasure 😇
@SanataniHindus_108
@SanataniHindus_108 2 года назад
I have used the 9v battery as an power outlet. Will it work
@TechieLagan
@TechieLagan 2 года назад
Yes
@kavitiramaraoramarao9227
@kavitiramaraoramarao9227 Год назад
What type of motor pump we use brother either dc or ac, please tell...
@TechieLagan
@TechieLagan Год назад
See with this relay you can use both....dc or ac only for demo I have used dc. You can use ac also but be careful.. It depends on your relay module
@vibhvesh
@vibhvesh 11 месяцев назад
I hope this message finds you well. FLow sensing is costly and trickey , I am are writing to provide you with information on the calibration and prediction of flow rate and the time required to dispense water under varying pressure conditions. This knowledge is essential for efficient water management and distribution in various applications. Flow rate is a crucial parameter, and it is influenced by several factors, including the water source, pipeline type, and pressure control mechanisms in place. For consistency and reliability in maintaining pressure, there are options such as utilizing pumps, auto-filling overhead tanks, or employing devices like the Pressure Controllers. To calculate the flow rate and the time needed to dispense 1000 liters of water with a pressure of 3 bar, we've collected the following data: At 2 bar pressure, the tap dispenses 20 liters of water in 1 minute. At 4 bar pressure, the tap dispenses 40 liters of water in 1 minute. Let's begin by determining the flow rates at both 2 bar and 4 bar pressure: Flow Rate at 2 bar pressure: Flow rate = Volume / Time Flow rate = 20 liters / 1 minute Flow rate = 20 liters/minute Flow Rate at 4 bar pressure: Flow rate = 40 liters / 1 minute Flow rate = 40 liters/minute Now, we need to find the flow rate at 3 bar pressure. Given the flow rates at 2 bar and 4 bar, we can assume that the relationship between flow rate and pressure is linear. To estimate the flow rate at 3 bar pressure, we can use linear interpolation. First, we calculate the flow rate increase per bar of pressure: Flow rate increase per bar = (Flow rate at 4 bar - Flow rate at 2 bar) / (4 bar - 2 bar) Flow rate increase per bar = (40 liters/minute - 20 liters/minute) / (4 bar - 2 bar) Flow rate increase per bar = 20 liters/minute / 2 bar Flow rate increase per bar = 10 liters/minute/bar Now, we can find the flow rate at 3 bar: Flow rate at 3 bar = Flow rate at 2 bar + (Flow rate increase per bar * (3 bar - 2 bar)) Flow rate at 3 bar = 20 liters/minute + (10 liters/minute/bar * (3 bar - 2 bar)) Flow rate at 3 bar = 20 liters/minute + (10 liters/minute) Flow rate at 3 bar = 30 liters/minute With a flow rate of 30 liters/minute at 3 bar pressure, we can calculate the time required to dispense 1000 liters of water: Time = Volume / Flow rate Time = 1000 liters / 30 liters/minute Time = 33.33 minutes In conclusion, it would take approximately 33.33 minutes to dispense 1000 liters of water at a pressure of 3 bar. This information is valuable for planning and optimizing water distribution processes in your specific application.
@ReeteshSuryavanshi
@ReeteshSuryavanshi Месяц назад
Thank u bro ❤❤
@gaunugoun9104
@gaunugoun9104 Год назад
I think whater continues flowing due to communicating vessels principle.
@TechieLagan
@TechieLagan Год назад
Yes but it happens sometimes only
@abheeshtmadupathi2192
@abheeshtmadupathi2192 Год назад
Can we use pro mini arduiuno?
@rahul15929
@rahul15929 Год назад
Can I power up the Arduino with 9v battery and also can I use another 9v battery for relay
@TechieLagan
@TechieLagan Год назад
Yes you can ...
@rahul15929
@rahul15929 Год назад
Thanks
@jonburgmann
@jonburgmann 2 года назад
2 stainless steel drink straws
@gsgamer9940
@gsgamer9940 2 года назад
Bro can we put led in which will show moisture level and if pump on Can you give me tha code
@dr4kuu
@dr4kuu Год назад
THANK YOU MAH FRIEND
@sumitsinha7002
@sumitsinha7002 Год назад
2:58 what is that 5 v power supply? Is it the battery you are talking about?
@TechieLagan
@TechieLagan Год назад
Yes
@sumitsinha7002
@sumitsinha7002 Год назад
I have a 9 v battery is it OK?
@TechieLagan
@TechieLagan Год назад
Yes
@singampallirohith5154
@singampallirohith5154 Год назад
Which language code is written C or python
@sakhawatrahmananan7834
@sakhawatrahmananan7834 2 года назад
Can i directly use a nine volt battery here?
@sidahmedmiringi7668
@sidahmedmiringi7668 2 года назад
I will replace this sensor wirh rtc ds3231 can you explane how to much ?
@jamielgarcia7358
@jamielgarcia7358 Год назад
Can I add a LCD display for the moisture?
@universediscoveries3837
@universediscoveries3837 Год назад
You can for that u have to use crystal lcd i2c
@jumbo999614
@jumbo999614 2 года назад
This pump has to be submerged in the water right? I tried to transfer water from one cup to another cup while the pump is outside the cup. It doesn't work.
@TechieLagan
@TechieLagan 2 года назад
Yes it has to be under water.
@jumbo999614
@jumbo999614 2 года назад
@@TechieLagan Is there other type of pump that can be used without need to be underwater?
@TechieLagan
@TechieLagan 2 года назад
Yes there are ..... You can search on the internet..
@tychicusnthenge6414
@tychicusnthenge6414 2 года назад
@@jumbo999614 You dont need submersible pump for that small work, just let the water bucket be little bit elevated and and provide outlet from the lower side to have water flow to pump through gravity, again make sure the flower pot is higher level than water supply to avoid free flow when pump is not running. That should work well for you.
@m.pramath7223
@m.pramath7223 Год назад
no mobile application ? its not conected to cloud ?
@janphillipdacallos4214
@janphillipdacallos4214 Год назад
hello sirr, is the code still available?
@آفلَآطؤُنہ
@آفلَآطؤُنہ 10 месяцев назад
Question about the water pump: When you connected it to a red cable, where did you draw electrical energy for it to work? Can you please answer it?
@TechieLagan
@TechieLagan 9 месяцев назад
I have used an external power source (Power bank) and Sorry for late reply.
@SanikaVh
@SanikaVh 8 месяцев назад
Which external power source did u use can you pls give the connections for it.​@@TechieLagan
@subathathomas9276
@subathathomas9276 2 месяца назад
where have to connect the blue wire connected in the ardino
@TechieLagan
@TechieLagan 2 месяца назад
It is used both for programming and giving power to the arduino
@mahamayanath
@mahamayanath 8 месяцев назад
Thank you so much
@sarvesh8017
@sarvesh8017 Год назад
sir, how can i upload the code from compute pls explain in detail i i dont know anyhting about coding
@venusree3873
@venusree3873 Год назад
Bro Can u share me the link to buy Arduino uno The one in description is not available..
@TechieLagan
@TechieLagan Год назад
amzn.to/3I6u9uo
@venusree3873
@venusree3873 Год назад
Thank you
@shechan456
@shechan456 Год назад
Teh water keep on moving its not stoping
@vj.2210
@vj.2210 10 месяцев назад
Hi Lagan bro, I am completely new to these circuity and all.. U said that we have to connect the relay to 5v power supply, as I am not able to find it.. Can I use 9v alkaline battery which i can connect with battery clip connector..??
@TechieLagan
@TechieLagan 10 месяцев назад
yes you can use that
@princesszairah
@princesszairah 4 месяца назад
is the sensor module has a led indicating its running?
@Ramyavemu16
@Ramyavemu16 5 месяцев назад
Where did you connected realy module wires? mention clearly..Any other external connections are required to realy module??
@TechieLagan
@TechieLagan 5 месяцев назад
they are connected to a battery. Here relay module acts as a switch.
@ashlinshajistalin570
@ashlinshajistalin570 11 дней назад
What type of jumper wires Need in this project
@TechieLagan
@TechieLagan 4 дня назад
Male to female
Далее
Preventing Plant Death With Technology
14:00
Просмотров 137 тыс.
Help Me Celebrate! 😍🙏
00:35
Просмотров 17 млн
You can learn Arduino in 15 minutes.
16:34
Просмотров 10 млн
Hacking a weird TV censoring device
20:59
Просмотров 3,1 млн
Can You Build a Working iPhone From AliExpress...?
19:06