Тёмный

Arduino Plant Watering System - Complete guide 

Win The cloud 🙌🏻
Подписаться 44 тыс.
Просмотров 53 тыс.
50% 1

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

 

10 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 134   
@WinTheCloud
@WinTheCloud 2 года назад
Checkout the schema diagram, Code and full list of Parts in the related article: github.com/SmartThingsDIY/arduino-uno-aws-irrigation-system Also, I'm moving all my electronics related video to their own channel for more focus, join me here and say Hi ru-vid.com/show-UCPLAcnOvckpVvFvzqWvUakw
@tedharrelson3869
@tedharrelson3869 3 года назад
Thank you for this video, the instructions and code are great and it worked perfectly once set up properly! One thing to note for others trying this is the Arduino itself also needs a power supply (not indicated in the wiring diagram). I thought I had set it up wrong when it wasn't working until I realised that was the issue. Trying it out on a couple of plants before expanding the system. Have you tried setting this up outdoors or only indoors? Definitely want to try the WiFi version once I'm comfortable with this set up. To power the pumps I'm using a power bank. To connect it, I took an old USB phone charging cable, cut the wires and wired positive and negative as indicated on the wiring diagram (using cable connectors where needed, not tape). You then connect the USB cable to the power bank. works like a charm and there's likely enough juice to last a good long while. If others looking to do this are complete newbies to programming for Arduino (like I was before starting this), I recommend watching Paul McWhorter's tutorials (search Arduino Tutorial on youtube). You only need to go up to tutorial 15 I think to understand enough of the basics to set this up.
@WinTheCloud
@WinTheCloud 3 года назад
I'm humbled by your comment. I've indeed forgotten about including the power supply for the Arduino and I'm glad you caught it. I'll pin your comment for visibility for others.
@Presso99
@Presso99 3 года назад
Yes, Paul McWhorter's tutorials !!!! I had just started learning Arduino, I am watching his videos...
@keanutype0896
@keanutype0896 3 года назад
@@WinTheCloud Hi! i wonder why did you use Relay? sorry i never use relay on my project before
@WinTheCloud
@WinTheCloud 3 года назад
@@keanutype0896 The relay is there to open/close a water pump's circuit: When readings find that a plan soil is dry, the corresponding water pump needs to pump water, and that's achieved through the relay. It's like a switch you control with the Arduino code
@dreacleoson1609
@dreacleoson1609 3 года назад
@@WinTheCloud hello im same as him. but i dont know about the pump. do i really need to use Relay? is there other alternative? sorry i havent done any water pump related project and project related to relay as well
@aemiliv5716
@aemiliv5716 2 года назад
the simplest and cheapest out there on youtube. Great work!
@WinTheCloud
@WinTheCloud 2 года назад
Wow, thank you for your support!!
@mohamadiqmalhakimbinmohdes9408
@mohamadiqmalhakimbinmohdes9408 2 года назад
thanks for doing this video. for info, i did the same project as for my final year project and your video really helped me a lot. thanks
@WinTheCloud
@WinTheCloud 2 года назад
Great to hear! Thanks Mohamad!
@azeansaufie9678
@azeansaufie9678 3 года назад
can i know how to download the capacitive soil moisture to the protues library ? i couldnt get the library link for capacitve soil moisure sensor V2
@top10s990
@top10s990 2 года назад
Great Video. I need some help. In every video people have been using the usb cable to power up the arduino. I have a 5V-1 amp adapter. When i am using the 5v adapter, the relay's led is working but solenoid valve doesn't close or open. but when i use usb cable, it works. so i used 12 v 500mA adapter to power arduino and it works again. I have a question, why it is;t working with 5v adapter?
@porty8304
@porty8304 3 года назад
I'm currently trying to wire this up myself. I'm a complete beginner and I'm stuck. I've got a 8-Channel Relay and am not able to figure out where to connect the COM connection point. Help would be very appreciated.
@laurentiujinga5558
@laurentiujinga5558 3 года назад
Be aware of the end delay... it may set your relay ON and 5 seconds later will read the sensor again... it may be to much water, if you have a small pot. And another thing. Find a way to power your sensors ONLY when you read sensorValue. Keeping your sensor powered all the time will destroy your sensor through electrolysis. Try some transistors, 2n2222 or alike, to power the probes when you're reading the value. Then you can check once a hour.
@WinTheCloud
@WinTheCloud 3 года назад
Thanks for the advise. I was thinking of connecting the sensor to a digital output pin rather than a power pin, then only send power to that pin when I want to read sensor data
@laurentiujinga5558
@laurentiujinga5558 3 года назад
@@WinTheCloud actually the advice is for those sensors with 2 elements. This kind of sensor it is better, still you can protect it's sides with some nail polish and electronics with some shrink tube. There's a video about this. I think Analog is better. I didn't got the kit for it yet, but I start on the code. I will put it up on github. It will also have qled display 128/64 ssd1306.
@WinTheCloud
@WinTheCloud 3 года назад
@@laurentiujinga5558 Sounds good. Please share with me the link to the repo once it's up
@laurentiujinga5558
@laurentiujinga5558 3 года назад
@@WinTheCloud I have some questions about your approach and data types you use. String eats up a lot of memory, char array fits better, in my opinion. And I couldn't figure it out why {"sensor1Value"=380.00,"sensor2Value"=400.00,...} and not simply {"380.00","400.00",...} You already know the first entry is sensor1Value and then follows sensor2Value and 3 and 4 is the latest one. Serial communication it is very Ssslllooowww, so you do better with shorter commands. 😉 Drop me a line so we can improve this code.
@alaingoyette7103
@alaingoyette7103 2 года назад
@@WinTheCloud I will do the same. Need to insert some ohms resistance to lower the 5V down to 3.3V, right?
@dancoulson6579
@dancoulson6579 2 года назад
Having the system continually pump until saturation level is reached isn't a good way of doing it. By the time the sensor reads an acceptable water level, the other side of the plant pot could be water logged. A better way would be to take a self adjusting system: Let's say we want a moisture level of 20% and we'll start with a water pump time period of 4 seconds. The variable for pump seconds is X. 1. Wait an hour, and then take a reading. 2. If it's too dry, pump water for X seconds, go to step 3. If it's too wet, go back to step 1. 3. After a 10 minute wait time, another check is performed. Goto step 4. 4. (a) If the water level has not increased, increase pump time by 1 seconds and go back to step 2. (b) If water level is too high, decrease pump time by 1 seconds and go back to step 1. (c) If water level increased, but is still not sufficient, go back to step 3. Something like this would start off with rough controls. But after a few hours it would settle into a more efficient pattern.
@WinTheCloud
@WinTheCloud 2 года назад
I love your idea! Would you be open to pushing a PR explaining your solution and suggesting the code changes? I would love to have you as a contributor to the project: github.com/SmartThingsDIY/arduino-uno-aws-irrigation-system
@dancoulson6579
@dancoulson6579 2 года назад
@@WinTheCloud I'm a little rusty these days. I have not done much programming in a while - I'm still using VB6 :D I have no knowledge of more modern programming languages. However, I'd be happy to help in any way that I can. I'll give it a look. Thanks for the response.
@alyaaahmed4462
@alyaaahmed4462 2 года назад
Which simulator did you use for the diagram?
@juneltuazon7584
@juneltuazon7584 2 года назад
Is it possible to have 4 soil moisture sensors and a single pump?
@WinTheCloud
@WinTheCloud 2 года назад
I don't see why not, you just need to find a way to redirect the water flow to your plant
@DJMovit
@DJMovit 3 года назад
I like the layout, If I can figure out how to add an LCD display to show what the four plants are doing...Dry, Wet or pump on or off. I am curious that as you water the pot and the probe gets a flow of water then turns off the pump are you really watering the plant enough? or is it over time that the soild will be come moist enough that the plant won't need water for longer periods of time? Just asking as to me it seems the plants not getting enough water. Again I like your layout and thanks for sharing it, greatly appreciate it.
@WinTheCloud
@WinTheCloud 3 года назад
It's true this device helps automate the process but it's a home DIY not tested nor calibrated for different temperatures, plants, seasons... So I add some water manually every now and then when I feel like it became a bit dry, just as a precaution...
@rafhanahishamil1183
@rafhanahishamil1183 2 года назад
Thank you for this video, the wiring and coding are clear but may i know what i should do with the coding if i'm planning to use only 1 sensor? Is there a difference in number of relay and what i should change in the coding? Thank you very much.
@user-yd1od7hp5g
@user-yd1od7hp5g 2 года назад
Hi, at 1:01 i see that there are 4 wires connected to one, may I know how does that work? also the battery holder 1 wire separated to 4.
@ssdsdsds9035
@ssdsdsds9035 2 года назад
can i use the chirp plant watering alarm for this tutorial pls help
@WinTheCloud
@WinTheCloud 2 года назад
Hi, I actually never used Chirp, so I'm not sure
@jameszilch7865
@jameszilch7865 2 года назад
Nice video, one question about the code you wrote for this program. Are there any concerns with having all 4 pumps turn on at the same time? Thinking of a scenario where all plants need to get watered if power would be an issue or it would cause strain on the system. Thank you
@WinTheCloud
@WinTheCloud 2 года назад
Great question. Not that I load tested this, but I've run 4 of them at the same time without an issue
@fatmahalzahmi8571
@fatmahalzahmi8571 2 года назад
Hello what if I didn’t want to add the battery will that have an effect on the code?
@laurentiujinga5558
@laurentiujinga5558 3 года назад
Nice. It can be easier with arrays and for loops byte pSensor[] = {14, 15, 16, 17}; byte pRelay[] = {2, 3, 4, 5}; float sensorValue = 0; void setup(){ Serial.begin(115200); for (int i = 0; i < 4; i++) { pinMode(pSensor[i], INPUT); pinMode(pRelay[i], OUTPUT); } } void loop(){ for (int x = 0; x < 4; x++){ sensorValue = analogRead(pSensor[x]); Serial.println(sensorValue); if (sensorValue > 450) { digitalWrite(pRelay[x], HIGH); } else { digitalWrite(pRelay[x], LOW); } } }
@WinTheCloud
@WinTheCloud 3 года назад
Great! Feel free to create PR on the repo: github.com/MecaHumArduino/arduino-uno-aws-irrigation-system All contribution is welcome :)
@wasimbishal9219
@wasimbishal9219 2 года назад
hey man i like your works its very good,but i had a question did you use 2 AA 1.2v battry to power up the motors? and did you use 9v battery to powerup your aurduino?
@marcinrylko2499
@marcinrylko2499 2 года назад
How long do you expect it to work until corrosion decays the sensor in the soil?
@WinTheCloud
@WinTheCloud 2 года назад
Mine been working for nearly a year
@deepinside9477
@deepinside9477 2 года назад
He's using the capacitive sensors. They last much longer than the traditional ones.
@genebathan2517
@genebathan2517 3 года назад
Hello, may I ask if what batteries you will recommend for it to last long especially when I want to leave it open always.
@WinTheCloud
@WinTheCloud 3 года назад
I mean you can definitely use a LiPo rechargeable battery. This one for example, but it has only 600 mAh : www.amazon.ca/gp/product/B0795F139D I'm sure you can find higher capacity ones
@NikoService287
@NikoService287 3 года назад
You can use an external battery. Like those used for charging phones, in combination with a small sollar panel and u will never need to recharge. Fully automated sysetm
@calseynez
@calseynez 2 года назад
Ok what is the difference between AO and DO and which one is prefered. either analog or digital if that's what it meant. I'm still new to electrical robotics.
@WinTheCloud
@WinTheCloud 2 года назад
You got it. The Arduino board has Analogs pins and Digital pins. You will use digital pin modes when dealing with signals that are either "on" or "off", such as an LED, a switch. Analog inputs are used when you want to read the voltage potential of something. This is typically used to read analog sensors.
@somyarathee
@somyarathee 2 года назад
Hey! First of all, nice tutorial! I have a question: How did you connect the motors to the relay? Which cables did you use?
@WinTheCloud
@WinTheCloud 2 года назад
Thanks Somya! You can find a full list of parts + Code + Diagrams in the attached article github.com/SmartThingsDIY/arduino-uno-aws-irrigation-system (I always include the article in such videos, just make sure to check the description)
@robbbie95
@robbbie95 2 года назад
Hi there! Nice project. I have a question: Why not ok to just send the 5 volt directly from the Arduino towards the pump? Is the relais really necessary in this case? Cheers!
@WinTheCloud
@WinTheCloud 2 года назад
You can, but the relay give you more control. Think of it as a switch that turns on/off the pump throughout whatever logic you've put in your Arduino code
@lol123inthehouse6
@lol123inthehouse6 2 года назад
Hello! I have configured and set up everything according to the diagram but my water pump is not pumping out water. What can I possibly change?
@WinTheCloud
@WinTheCloud 2 года назад
Have you checked if the water pump works by itself?
@IamOkayWK
@IamOkayWK 2 года назад
very good vdo. how big of water pump can it control?
@creationsmv6201
@creationsmv6201 2 года назад
It is possible to use 18650 3.7v Battery?
@WinTheCloud
@WinTheCloud 2 года назад
Sure, I don't see why not
@traveldiary4540
@traveldiary4540 3 года назад
Will I need a breadboard if I use 1 channel relay?
@WinTheCloud
@WinTheCloud 3 года назад
You probably won't
@outre5416
@outre5416 2 года назад
could you post a photo of the wiring irl please? thank you
@WinTheCloud
@WinTheCloud 2 года назад
I'm afraid I don't have this specific project running anymore as I repurposed the parts working on a V2
@fan_dan_go1545
@fan_dan_go1545 3 года назад
Bro if I wanted to get the moisture values as a percentage and I wanted that data on my laptop what do I do 🤔 because I want to get the moisture of the soil throughout the day as raw data to analyse
@WinTheCloud
@WinTheCloud 3 года назад
Yeah dude happy to help. For sensor 1 for example, the moisture level is read from Pin1 and stored in the variable "sensor1Value" github.com/MecaHumArduino/arduino-uno-aws-irrigation-system/blob/master/src/main.cpp#L134 For storing the value in the computer, I'd suggest adding an ESP8266 to the setup, which will allow your setup to connect to WiFi, then use the code from my other repo on it: github.com/MecaHumArduino/esp8266-01-aws-mqtt this code connects to WiFi and then sends whatever you want to an MQTT topic of your choice, which can be run on your computer
@fan_dan_go1545
@fan_dan_go1545 3 года назад
@@WinTheCloud thank you for your reply bro 🙏🏻🙌
@WinTheCloud
@WinTheCloud 3 года назад
My pleasure!
@healman11
@healman11 3 года назад
what application did you use for the wiring?
@WinTheCloud
@WinTheCloud 3 года назад
Fritzing
@sonnyscavuzzo4397
@sonnyscavuzzo4397 3 года назад
Hi Great Video, if i wanted only one water pump can i do that? Thanks
@WinTheCloud
@WinTheCloud 3 года назад
Yes, absolutely. In this case, one relay would be enough, no need to get the 4 channel relay I included
@Evilslayer73
@Evilslayer73 3 года назад
do i need to put the water container lower than the pot???
@WinTheCloud
@WinTheCloud 3 года назад
No need, the water pump will push the water in the tube regardless of its position
@garciamelaiza5334
@garciamelaiza5334 2 года назад
how to download the main arduino code??? please reply asap🥺
@WinTheCloud
@WinTheCloud 2 года назад
There is a link in the description that takes you to Github where the code is
@rakeshp8791
@rakeshp8791 3 года назад
Thaaaaaaaaaaaaaaaaaaaaaaaaaank yoooooooooooooooooooooooooooou Soooooooooooooooooooooooooooo much dude bro
@WinTheCloud
@WinTheCloud 3 года назад
You're welcome, my friend :) I published sort of an update and used Amazon Alexa this time, make sure to give it a watch as well ;) ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-5X6wq9XWl10.html
@fatinariessa32
@fatinariessa32 3 года назад
May i know is the amount of relay affect the accuracy of reading
@WinTheCloud
@WinTheCloud 3 года назад
I haven't accounted for that. The sensors are connected directly to the Arduino board, do you think the relay would affect the reading nonetheless?
@doitallYT
@doitallYT 3 года назад
What USB 3.0 adapter is that on your iMac? Looks epic :O
@WinTheCloud
@WinTheCloud 3 года назад
HAHA it's this dodocool www.amazon.ca/gp/product/B0776R6VCT (the name is epic!)
@mohammadusmani8043
@mohammadusmani8043 2 года назад
Can someone please share the wire diagram with breadboard connections.Thanks
@WinTheCloud
@WinTheCloud 2 года назад
Check description
@igortomic1525
@igortomic1525 2 года назад
Hi ! Nice video ! Can you tell me what simulation software is used?
@WinTheCloud
@WinTheCloud 2 года назад
I use Fritzing
@anveesharma7983
@anveesharma7983 2 года назад
This is super late, but when you connect the water pump to the relay, do you need to attach the wires from the water pump to the metal tip of the jumper wire, or do you have to strip the jumper wire?
@WinTheCloud
@WinTheCloud 2 года назад
You'd have to strip it :)
@anveesharma7983
@anveesharma7983 2 года назад
Thank you so much!
@Shinishiniiii
@Shinishiniiii 3 года назад
Can you suggest me a app that i can use for this project? I will be using the wifi module ESP8266 D1 VER2015-08
@taufiqzakaria2962
@taufiqzakaria2962 3 года назад
Blynk
@kapilchhabria1727
@kapilchhabria1727 2 года назад
Hey Ilyas, could you demonstrate how to add the ArduinoJson header file to the library?
@fan_dan_go1545
@fan_dan_go1545 3 года назад
I have another question yet again bro 😅 so basically I followed this exact guide same code and equipment, but it not working how it suppose to, the pump not coming on when I remove the sensor from the soil and when the pump do come on, it does not stop pumping water. I have the same code as you, Arduino works fine, relay works, the pumps all work( I even hooked up pump directly to the power source and all 4 pumps came on ) . The only difference is that you use a 9V to power your Arduino but I use a usb cable connected to my laptop. Do you think that causing the problem ?
@WinTheCloud
@WinTheCloud 3 года назад
Hum, my guess is the sensors need to be calibrated to your own numbers. You see the number "450" here github.com/MecaHumArduino/arduino-uno-aws-irrigation-system/blob/master/src/main.cpp#L137 ? This works for me but maybe you're using a newer version of the sensor that is calibrated differently - So put the sensor in water, note the number it output, pull it out of water and note that number again. Then use both of the number to detect when the sensor is wet and when it's dry
@fan_dan_go1545
@fan_dan_go1545 3 года назад
@@WinTheCloud the average highest value for when the sensor was dry was 581, the lowest average was 302 for wet. (I use average values because the 4 sensors gave slightly different readings) . So 450 is about 53 percent soil water moisture content which is perfect. Funny thing is that it works fine like how you demonstrated without the pumps connected. I would hear the relay turn on when sensor out of the soil, then I put it back in and relay turns off. But then I hook up the pumps to relay, it doesn't work like it supposed to( some pumps won't turn on and the ones that do would just keep pumping continuously). Even though the power supply could run all pumps at the same time. This thing giving me a headache.
@WinTheCloud
@WinTheCloud 3 года назад
That's definitely weird. I know it won't be easy but at this point, I'd go a few steps back: try to make it work with one sensor, one relay and one pump, this way you can try with different pumps, maybe the issue is a couple of pumps themselves... Let me know how it goes
@fan_dan_go1545
@fan_dan_go1545 3 года назад
@@WinTheCloud it works now bro, I tested everything one by one, put it back and now it finally works 😪 thanks for your help
@WinTheCloud
@WinTheCloud 3 года назад
@@fan_dan_go1545 Glad to hear it. It was my pleasure!
@mdwasimbishal2100
@mdwasimbishal2100 2 года назад
did you use 9v battery? can i use 5v AC mobile charger in here ?
@WinTheCloud
@WinTheCloud 2 года назад
Yes, I used a 9v. I didn't test with an AC mobile charger, but give it a try, what's the worst that can happen
@raoe7833
@raoe7833 2 года назад
How can i calculate how many plants there are?
@WinTheCloud
@WinTheCloud 2 года назад
I'm not sure I understand the question
@HermannHering
@HermannHering 3 года назад
Can I use a esp8266 instead of the Arduino with the same code?
@WinTheCloud
@WinTheCloud 3 года назад
I haven't tried it, but theoretically yes, you can. Just make sure that you're using Arduino libraries
@HermannHering
@HermannHering 3 года назад
@@WinTheCloud So I have to program the ESP over the Arduino tool? Im really new to coding and stuff
@PrettyGirl-pu9rz
@PrettyGirl-pu9rz 3 года назад
Hi! may i know what are you using app? so i can download it. i hope you notice my comment. thankyou
@WinTheCloud
@WinTheCloud 3 года назад
Hi, please check the description, I have put a link to the Github article with all librairies and links
@leoserban
@leoserban 3 года назад
Hi, I have 0 skills in coding and using Arduino. But I want to create this DIY project for my home plants so they'll be ok when I go away on vacation. My question is: I notice that at the wiring diagram, there's no breadboard, but when you test the thing, there's a breadboard connected there. Why didn't you put it on the diagram? Also, do you have a complete diagram with everything I'll need to get this project going? Thank you in advance!
@WinTheCloud
@WinTheCloud 3 года назад
Hi, great question. The breadboard is there to make things easier for when building your prototype, it offers a way to connect your components in a solderless way, but once the final schema is established, most tinkerers will chose to solder the components together, putting the breadboard aside to be used for another project. But sometimes I chose to keep the breadboard like in this little project instagram.com/p/CIrR6RBBCa-/
@leoserban
@leoserban 3 года назад
@@WinTheCloud Hei, thanks for the reply! So that means that I can follow your wiring diagram and will be good to go! That's great! I will proceed in buying the required components for this. Thank you very much!
@WinTheCloud
@WinTheCloud 3 года назад
My pleasure!
@marthalesayo2105
@marthalesayo2105 3 года назад
Which type of irrigation is this
@WinTheCloud
@WinTheCloud 3 года назад
a DIY one? :D
@callmerel2809
@callmerel2809 3 года назад
What does the 4 channel relay used for ?
@WinTheCloud
@WinTheCloud 3 года назад
Switch on/off the water pumps
@callmerel2809
@callmerel2809 3 года назад
@@WinTheCloud I read that due to the electric flow, the sensor will break because of electrolysis. How does one prevent this ?
@IsmaelDiall0
@IsmaelDiall0 2 года назад
what tubes are those??
@WinTheCloud
@WinTheCloud 2 года назад
All parts are linked in the description
@expressmoonenjoyer3667
@expressmoonenjoyer3667 2 года назад
Hi ! I want to do this for our research as a way to navigate plant's growth. I checked the codes and based on it, it has a delay of 500. Now im only a beginner in terms of coding and i would like to ask if there is a way to code the system to check the moisture of the soil only once an hour (other than extending the number for delay) so the moisture sensor will collect data only after 1hr has passed to maximize the efficiency of it to have a longer lifespan because ive seen some videos about moisture sensors being unusable due to being overused? I really appreciate if you took time to read this and reply to my message thank you. also really great video!!
@WinTheCloud
@WinTheCloud 2 года назад
First of all, old moisture sensors get worn easily, but the model I've included is the new version that provide better resistance to moisture. I have one on my basement for example running for nearly a year without an issue. Now to extend the reading period, rather than running a loop, you can put the whole board to sleep and wake it up after a set interval, do the reading, send it over WiFi then put it back to sleep, which has the benefit of tremendously extending the battery life. I've built that exact same thing in this video: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-tnhnZ-Xe39E.html to which you can find all code and explanation here: github.com/SmartThingsDIY/esp32-talking-plant
@expressmoonenjoyer3667
@expressmoonenjoyer3667 2 года назад
@@WinTheCloud thanks for the clarification and also i really like the suggestion of yours but it needs a wifi and the thing is, we are trying to keep it an offline system as much as possible so that it can be used by people with no internet. thank you so much again for responding, i understand the things you meant and i appreciate it also. p.s ( the system is for our research so adding a wifi in the system would lead to adding more variables for our research and we only have limited time, so we built it as offline.)
@user-yd1od7hp5g
@user-yd1od7hp5g 2 года назад
hi bro can i have a closer look of the battery holder at 5:15? Please reply sir. Tyvm
@user-yd1od7hp5g
@user-yd1od7hp5g 2 года назад
closer look of where the wires are connected to, thanks
@WinTheCloud
@WinTheCloud 2 года назад
I don't have this project running anymore, unfortunately, but this is the switch I used for power: amzn.to/3zAtoFk and this is the wiring diagram github.com/SmartThingsDIY/arduino-uno-aws-irrigation-system hope this helps
@user-yd1od7hp5g
@user-yd1od7hp5g 2 года назад
Ahh ok thanks for the reply anyway
@AlexSouthwell
@AlexSouthwell 3 года назад
Can you push your code from VSCode to the ardunio in app?
@WinTheCloud
@WinTheCloud 3 года назад
Totally possible because I use PlatformIO extension on VSCode
@LeviAckerman-bd3gl
@LeviAckerman-bd3gl 3 года назад
Is it okay if i use some ordinary soil moisture sensor?
@WinTheCloud
@WinTheCloud 3 года назад
It should be ok indeed. You probably would just have to calibrate the readings in your code
@shilpa...
@shilpa... 2 года назад
can i order this project?
@WinTheCloud
@WinTheCloud 2 года назад
All items are linked in the description. The code is linked as well
@healman11
@healman11 3 года назад
i'm assuming this language is c++, but I just want to make sure it is, am I right?
@WinTheCloud
@WinTheCloud 3 года назад
You got it. Arduino uses C++ as the it's main language. BTW checkout the Github article link in the description that contains a line by line code explanation
@truflisko
@truflisko 3 года назад
Cool!
@WinTheCloud
@WinTheCloud 3 года назад
Thank you :)
@nano7586
@nano7586 3 года назад
Damn this is more expensive than I expected
@mohammedchawki1139
@mohammedchawki1139 2 года назад
hi can you explain the wiring more becuase it is not enough clear @iLyas BK
Далее
Preventing Plant Death With Technology
14:00
Просмотров 135 тыс.
Electromagnetic Aircraft Launcher
15:09
Просмотров 1,2 млн
Как вам наши образы?🥰🥰🤍🤍
00:10
DIY Raspberry Pi Arduino Plant Watering System
17:46
Просмотров 43 тыс.
I built my own computer. by hand.
13:03
Просмотров 1,2 млн
Raspberry Pi Plant Watering (& Time Lapse)
23:41
Просмотров 334 тыс.
Build Your Own Drone Tracking Radar:  Part 1
20:08
Просмотров 527 тыс.
Water Your Garden with IoT - Soil Moisture Sensors
54:46