Automated Watering System for Plants | Arduino DIY Projects | Step by Step Guide

  Рет қаралды 58,802

Creative Life with Jarvis

Creative Life with Jarvis

Күн бұрын

MATERIALS:
(1) Arduino Uno Board
(2) 5v Relay Single Channel
(3) Soil Moisture Sensor Module
(4) 5v Water Pump
(5) Mobile Charger (5v)
(6) Jumper Wires Connector
(7) Plastic Tube
------------------
Honey Bee by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. creativecommon...
Source: incompetech.com...
Artist: incompetech.com/

Пікірлер: 59
@AtherKhan-cv5wi
@AtherKhan-cv5wi Жыл бұрын
The only video i have seen that works
@HoodyGang-z8d
@HoodyGang-z8d 6 күн бұрын
the code works
@MrKfadrat
@MrKfadrat 2 жыл бұрын
that sensor will break in few weeks in soil, its for pure water.
@edzanirakuamborakuambo5711
@edzanirakuamborakuambo5711 3 жыл бұрын
hi if i may ask, where do you find the source code that you just copy and pasted
@shaz5413
@shaz5413 3 жыл бұрын
Hi sir,where do I get the source code?
@sasenbandara-h4i
@sasenbandara-h4i Жыл бұрын
hi sir where did yo get the code
@JANZKE05
@JANZKE05 4 ай бұрын
thank u for your video mate save me a lot i hope u do better and make more videos like this i owe u one, very much ur new subscriber peace out
@mumtajbegum7435
@mumtajbegum7435 4 ай бұрын
Your the best the project work fine bro u. R the bestttt
@woo_17_wooo
@woo_17_wooo Жыл бұрын
THANK YOU
@SaikiranKeri
@SaikiranKeri Ай бұрын
thank you brother
@MarcosRamone
@MarcosRamone 2 жыл бұрын
int relayPin = 4; int sensor_pin = A0; int output_value ; void setup () { Serial.begin(9600); pinMode(relayPin, OUTPUT); pinMode(sensor_pin, INPUT); Serial.println ("Reading From the Sensor ..."); delay(2000); } void loop() { output_value = analogRead(sensor_pin); output_value = map (output_value, 550, 10, 0, 100); Serial.print ("Moisture : "); Serial.print (output_value); Serial.print ("%"); if (output_value < 20){ digitalWrite (relayPin, LOW); } else { digitalWrite (relayPin, HIGH); } delay (1000); }
@AtherKhan-cv5wi
@AtherKhan-cv5wi Жыл бұрын
Brother you have sacrificed your time for us
@AtherKhan-cv5wi
@AtherKhan-cv5wi Жыл бұрын
Irrigation System int sensor_pin= A0;int output_value; void setup(){ pinMode(3, OUTPUT); Serial.begin(9600); Serial.println("Reading from the Moisture sensor…"); delay(2000);} void loop(){ output_value= analogRead (sensor_pin); output_value= map (output_value,550,10,0,100); Serial.print("Moisture:"); Serial.print(output_value); Serial.println("%"); if (output_value
@know-sm6bp
@know-sm6bp 9 ай бұрын
@AtherKhan-cv5wi Why you write code ? What do you mean by Footer?
@JosueBravo-vj2vs
@JosueBravo-vj2vs 8 ай бұрын
We love u
@JCCommunicationz
@JCCommunicationz 7 ай бұрын
Thanks a lot
@safiyatsayma4255
@safiyatsayma4255 Ай бұрын
Best best worked 🎉🎉🎉🎉🎉🎉🎉
@adriemeow
@adriemeow Ай бұрын
can you share the code?
@saligumbagiboyd.2586
@saligumbagiboyd.2586 Жыл бұрын
Hello sir can i get the code you use, thank you
@philipbrehart8862
@philipbrehart8862 2 жыл бұрын
Could you send me a link to the water pump you used?
@roneilmarcelino5006
@roneilmarcelino5006 2 жыл бұрын
Hello sir, can i ask if I can change the 5v water pump with 12v? Is it safe ?
@vishnukumaran2066
@vishnukumaran2066 Жыл бұрын
Yes this safe....
@blessingmlongoti7692
@blessingmlongoti7692 Жыл бұрын
For that you have to use a 12V relay
@esternaguit525
@esternaguit525 Жыл бұрын
Have you done this? Isn't this effective?
@anamaesajol1523
@anamaesajol1523 Жыл бұрын
How about the voltage of the charger ? Water pump with 12v?
@hninoolwin7192
@hninoolwin7192 5 ай бұрын
Send me code😞🙏🏻
@VaradFatale
@VaradFatale 2 ай бұрын
code is perfect but these will work opposite you have to modify it by change this ''
@adriemeow
@adriemeow Ай бұрын
can you share the code?
@Anjalichilukuri-z3y
@Anjalichilukuri-z3y 20 күн бұрын
where is the source code
@kollinnaaa_r13494
@kollinnaaa_r13494 10 ай бұрын
Hello can I get a copy of the code
@sunmanchong3708
@sunmanchong3708 2 жыл бұрын
Sir, Thank you so much for the detail of this project.
@sumasaha494
@sumasaha494 2 ай бұрын
sir needs code of this arduino
@RinkuKhandelwal-z8r
@RinkuKhandelwal-z8r Ай бұрын
int relayPin = 4; int sensor_pin = A0; int output_value; void setup() // put your setup code here, to run once: { Serial.begin(9600); pinMode(relayPin, OUTPUT); pinMode(sensor_pin, INPUT); Serial.println("Reading From the Sensor ..."); delay(2000); } void loop() { output_value= analogRead(sensor_pin); output_value = map(output_value, 550,10,0,100); Serial.print("Moisture: "); Serial.print(output_value); Serial.println("%"); if (output_value
@gplmarketing8570
@gplmarketing8570 Ай бұрын
thanks for the code
@pinkbeauty13
@pinkbeauty13 7 ай бұрын
int relayPin = 4; int sensor_pin = A0; int void setup () { Serial.begin(9600); pinMode(relayPin, OUTPUT); pinMode(sensor_pin, INPUT); Serial.println ("Reading From the Sensor ..."); delay(2000); } void loop() { output_value = analogRead(sensor_pin); output_value = map (output_value, 550, 10, 0, 100); Serial.print ("Moisture : "); Serial.print (output_value); Serial.print ("%"); if (output_value < 20){ digitalWrite (relayPin, LOW); } else { digitalWrite (relayPin, HIGH); } delay (1000); }
@markkevintumbaga7869
@markkevintumbaga7869 2 ай бұрын
0:49
@gplmarketing8570
@gplmarketing8570 Ай бұрын
wrong code
@markstrunk6644
@markstrunk6644 29 күн бұрын
did anyone get the code ?
@markstrunk6644
@markstrunk6644 Күн бұрын
Will where’s the code ??
@abdoulkarimabdoulayiharoun1580
@abdoulkarimabdoulayiharoun1580 2 жыл бұрын
hello sir, i can't find the program
@gbrax4347
@gbrax4347 7 ай бұрын
I love you
@keerthishivaprasad1658
@keerthishivaprasad1658 8 ай бұрын
Can i get code
@mopurisravan1146
@mopurisravan1146 3 жыл бұрын
Sir can u send me code for arduino
@shreerangbagal8063
@shreerangbagal8063 2 жыл бұрын
send me code
@hninoolwin7192
@hninoolwin7192 5 ай бұрын
​@@shreerangbagal8063 please send me code😢
@athistalakshmis3531
@athistalakshmis3531 2 жыл бұрын
Sir source code
@RinkuKhandelwal-z8r
@RinkuKhandelwal-z8r Ай бұрын
kzbin.info/www/bejne/rXezdoKVmMSbisksi=wW9JJ5R5h60Es5fN
@bobthemonkey9918
@bobthemonkey9918 2 жыл бұрын
cringey video bro, it's not bad but I don't see the reason to use a mobile charger here...
@johnmaverickclemente730
@johnmaverickclemente730 Жыл бұрын
Actually i have the same question HAHAHAH
@AtherKhan-cv5wi
@AtherKhan-cv5wi Жыл бұрын
U are fools u are illetrate thats why you cant under stand its your first project.when you will become a pro than you will say that he was right. Do you think the project will get power from tour bathroom
@hanoofdaif5213
@hanoofdaif5213 Жыл бұрын
Did he ask for your opinion tho?
@bobthemonkey9918
@bobthemonkey9918 Жыл бұрын
@@hanoofdaif5213 what do u think the comment section is for? To praise the video?
@hanoofdaif5213
@hanoofdaif5213 Жыл бұрын
to say something useful or stay silent, but for real where did he use the charger? is it just a power source that can be replaced by connecting the Arduino to the laptop?
Preventing Plant Death With Technology
14:00
Emilostuff
Рет қаралды 147 М.
Arduino Garden Controller - Automatic Watering and Data Logging
9:13
Practical Engineering
Рет қаралды 3,1 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
Smart Irrigation System using Arduino Uno
6:40
Tech Trends Shameer
Рет қаралды 56 М.
Workbench Essentials When Starting Arduino! (Beginner Guide)
8:14
Build an Automated Hydroponic System
15:21
Kyle Gabriel
Рет қаралды 1,4 МЛН
Automatic Garden Watering System
15:28
Nikodem Bartnik
Рет қаралды 216 М.
Electromagnetic Aircraft Launcher
15:09
Tom Stanton
Рет қаралды 2,8 МЛН
Soil Moisture Sensor with Arduino Uno
7:07
Passion Tech KLM
Рет қаралды 239 М.
Water Your Garden with IoT - Soil Moisture Sensors
54:46
DroneBot Workshop
Рет қаралды 421 М.
How to make an AUTOMATIC WATERING for PLANTS
9:50
Androbot TECH
Рет қаралды 116 М.
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41