IOT Based Smart Plant Watering System using the New Blynk Iot and Nodemcu esp8266 || Techie Lagan

  Рет қаралды 14,394

Techie Lagan

Techie Lagan

Күн бұрын

Пікірлер: 49
@TechieLagan
@TechieLagan Жыл бұрын
//Include the library files #define BLYNK_PRINT Serial #include #include char auth[] = "hItT82Ueb4BpcEOb_0YnYsyArfbDlLkb";//Enter your Auth token char ssid[] = "LJ";//Enter your WIFI name char pass[] = "12345678";//Enter your WIFI password BlynkTimer timer; bool Relay = 0; //Define component pins #define sensor A0 #define waterPump D3 void setup() { Serial.begin(9600); pinMode(waterPump, OUTPUT); digitalWrite(waterPump, HIGH); Blynk.begin(auth, ssid, pass, "blynk.cloud", 80); //Call the function timer.setInterval(100L, soilMoistureSensor); } //Get the button value BLYNK_WRITE(V1) { Relay = param.asInt(); if (Relay == 1) { digitalWrite(waterPump, LOW); } else { digitalWrite(waterPump, HIGH); } } //Get the soil moisture values void soilMoistureSensor() { int value = analogRead(sensor); value = map(value, 0, 1024, 0, 100); value = (value - 100) * -1; Blynk.virtualWrite(V0, value); } void loop() { Blynk.run();//Run the Blynk library timer.run();//Run the Blynk timer }
@Pixelgaphy
@Pixelgaphy Жыл бұрын
That a good project can we use as soil sensor without using phone ? and mixing of fertilizer also ?
@VishnuPrasad-uv7hy
@VishnuPrasad-uv7hy Жыл бұрын
Bro if u have the code please send me the program code for the project
@aditipatil9281
@aditipatil9281 Жыл бұрын
Thank You so much. The Project Works.
@MaghlaouiMoataz
@MaghlaouiMoataz Жыл бұрын
I am using esp32 devkitc v4 what output do you use to connect it with relay ?
@bibhuduttasarangi3990
@bibhuduttasarangi3990 3 ай бұрын
Sir" error compiling for board nodemcu 1.0 (ESP-12E Module). Define BLynk template id and blynk template name" asaa error araha hai plzz help sir
@rejuvenate_it4974
@rejuvenate_it4974 Жыл бұрын
Great info 😊
@palakverma8667
@palakverma8667 Жыл бұрын
Hi, my soil moisture sensor is not giving any readings on blynk app, please suggest a solution
@TechieLagan
@TechieLagan Жыл бұрын
Sorry I won't lie , actually I don't know the solution... But I think there may be some issue with the sensor, maybe it's not working..
@royalautobots1156
@royalautobots1156 Жыл бұрын
bro can you send the code please because the link in description is not working plz
@TechieLagan
@TechieLagan Жыл бұрын
//Include the library files #define BLYNK_PRINT Serial #include #include char auth[] = "hItT82Ueb4BpcEOb_0YnYsyArfbDlLkb";//Enter your Auth token char ssid[] = "LJ";//Enter your WIFI name char pass[] = "12345678";//Enter your WIFI password BlynkTimer timer; bool Relay = 0; //Define component pins #define sensor A0 #define waterPump D3 void setup() { Serial.begin(9600); pinMode(waterPump, OUTPUT); digitalWrite(waterPump, HIGH); Blynk.begin(auth, ssid, pass, "blynk.cloud", 80); //Call the function timer.setInterval(100L, soilMoistureSensor); } //Get the button value BLYNK_WRITE(V1) { Relay = param.asInt(); if (Relay == 1) { digitalWrite(waterPump, LOW); } else { digitalWrite(waterPump, HIGH); } } //Get the soil moisture values void soilMoistureSensor() { int value = analogRead(sensor); value = map(value, 0, 1024, 0, 100); value = (value - 100) * -1; Blynk.virtualWrite(V0, value); } void loop() { Blynk.run();//Run the Blynk library timer.run();//Run the Blynk timer }
@bruceleegamingSFA
@bruceleegamingSFA 5 ай бұрын
What is that wifi i mean who’s wifi? Is our personal wifi or any other source? Please answer
@TechieLagan
@TechieLagan 5 ай бұрын
It can be anyone's
@TechieLagan
@TechieLagan 5 ай бұрын
It can be anyone's
@bruceleegamingSFA
@bruceleegamingSFA 5 ай бұрын
@@TechieLagan thanks brother
@user-nt9rp8hd5q
@user-nt9rp8hd5q 8 ай бұрын
Hello Please please please send me libraries, i can't download them in Arduino IDE
@muthukumar-bx2iz
@muthukumar-bx2iz Жыл бұрын
Sir error please specify your blynk template id and template name
@pratikdalvi2004
@pratikdalvi2004 Жыл бұрын
Same
@pratikdalvi2004
@pratikdalvi2004 Жыл бұрын
Did you got the solution?
@AdityaRPawar
@AdityaRPawar 9 ай бұрын
Same bro
@AdityaRPawar
@AdityaRPawar 9 ай бұрын
Please share the solution
@preueraj
@preueraj Жыл бұрын
Sir please provide the esp32 node mcu video please sir🙏🙏🙏🙏
@satyjitdeshmukh5949
@satyjitdeshmukh5949 Жыл бұрын
The project works
@desmondcassidy1759
@desmondcassidy1759 2 ай бұрын
the pump does not turn off
@bibhuduttasarangi3990
@bibhuduttasarangi3990 3 ай бұрын
Sir code file open nahi horaha hai plzz reply sir
@muthukumar-bx2iz
@muthukumar-bx2iz Жыл бұрын
The device is offline what can I do
@satyjitdeshmukh5949
@satyjitdeshmukh5949 Жыл бұрын
In app they show offline
@mehmetyatir9876
@mehmetyatir9876 Жыл бұрын
where can we download the libraries?
@TechieLagan
@TechieLagan Жыл бұрын
in the arduino ide itself
@rekha1780
@rekha1780 Жыл бұрын
Bro in the app it is coming as offline
@muthukumar-bx2iz
@muthukumar-bx2iz Жыл бұрын
What can i do
@hariprasadd2459
@hariprasadd2459 Жыл бұрын
😇😇😇
@varshand4785
@varshand4785 8 ай бұрын
Bro my relay not working why
@TechieLagan
@TechieLagan 8 ай бұрын
Check the connections
@Triggeredinsaanmemes63
@Triggeredinsaanmemes63 11 ай бұрын
sir offline dekha raha h
@Triggeredinsaanmemes63
@Triggeredinsaanmemes63 Жыл бұрын
Libaries kaha se dowload kare
@TechieLagan
@TechieLagan Жыл бұрын
There is a library section in Arduino ide. From there you can download the libraries.....
@Triggeredinsaanmemes63
@Triggeredinsaanmemes63 Жыл бұрын
@@TechieLagan thanks bhai. Bhai blynk ke liye paid premium le na pade gaa kya
@SumitKushwah-qh1ro
@SumitKushwah-qh1ro Жыл бұрын
Please reply me😢😢
@TechieLagan
@TechieLagan Жыл бұрын
No
@SumitKushwah-qh1ro
@SumitKushwah-qh1ro Жыл бұрын
Bhai ye phone pr message send Kare ga Kya jab moisture Kam hoga too please reply me
@missrushita3192
@missrushita3192 Жыл бұрын
hiii bro , blynktimer ko error aa rha hai kya kru
@TechieLagan
@TechieLagan Жыл бұрын
sorry I don't know what to do .......sorry for late reply.
@VishnuPrasad-uv7hy
@VishnuPrasad-uv7hy Жыл бұрын
Bro resend the program code
@VishnuPrasad-uv7hy
@VishnuPrasad-uv7hy Жыл бұрын
Coding of the program can't download
@TechieLagan
@TechieLagan Жыл бұрын
//Include the library files #define BLYNK_PRINT Serial #include #include char auth[] = "hItT82Ueb4BpcEOb_0YnYsyArfbDlLkb";//Enter your Auth token char ssid[] = "LJ";//Enter your WIFI name char pass[] = "12345678";//Enter your WIFI password BlynkTimer timer; bool Relay = 0; //Define component pins #define sensor A0 #define waterPump D3 void setup() { Serial.begin(9600); pinMode(waterPump, OUTPUT); digitalWrite(waterPump, HIGH); Blynk.begin(auth, ssid, pass, "blynk.cloud", 80); //Call the function timer.setInterval(100L, soilMoistureSensor); } //Get the button value BLYNK_WRITE(V1) { Relay = param.asInt(); if (Relay == 1) { digitalWrite(waterPump, LOW); } else { digitalWrite(waterPump, HIGH); } } //Get the soil moisture values void soilMoistureSensor() { int value = analogRead(sensor); value = map(value, 0, 1024, 0, 100); value = (value - 100) * -1; Blynk.virtualWrite(V0, value); } void loop() { Blynk.run();//Run the Blynk library timer.run();//Run the Blynk timer }
@preueraj
@preueraj Жыл бұрын
Please sir
@AbdulHadi-t1n
@AbdulHadi-t1n Жыл бұрын
How i can contact you?
@TechieLagan
@TechieLagan Жыл бұрын
Through Instagram - link is in channel description
New Blynk IOT Smart Plant Monitoring System
16:54
Viral Science - The home of Creativity
Рет қаралды 417 М.
Random Emoji Beatbox Challenge #beatbox #tiktok
00:47
BeatboxJCOP
Рет қаралды 55 МЛН
Trapped by the Machine, Saved by Kind Strangers! #shorts
00:21
Fabiosa Best Lifehacks
Рет қаралды 28 МЛН
Family Love #funny #sigma
00:16
CRAZY GREAPA
Рет қаралды 38 МЛН
Friends make memories together part 2  | Trà Đặng #short #bestfriend #bff #tiktok
00:18
Smart Irrigation System: ESP32, Soil Moisture Sensor & Blynk IoT
8:15
Tech Trends Shameer
Рет қаралды 9 М.
Chat GPT 4 With arduino.
3:59
RoboTech X
Рет қаралды 2 М.
Preventing Plant Death With Technology
14:00
Emilostuff
Рет қаралды 140 М.
Plant Watering system with ESP32 using Blynk IoT
4:30
Hrudayesh
Рет қаралды 121
How To Make Smart Plant Watering System With ESP8266 NodeMCU & New Blynk
10:52
Random Emoji Beatbox Challenge #beatbox #tiktok
00:47
BeatboxJCOP
Рет қаралды 55 МЛН