Это видео недоступно.
Сожалеем об этом.

How To Make Smart Plant Watering System With ESP8266 NodeMCU & New Blynk

Поделиться
HTML-код
  • Опубликовано: 19 авг 2024
  • In This Video, I have Shown, How To Make Smart Plant Watering System With ESP8266 NodeMCU & New Blynk Update
    Thanks for watching...❤
    COMMENT BELOW , if you LIKE the Video
    Help Me To Cross LIKE AIM Of This Video : 1k
    & Help Me To Reach SUBSCRIBERS AIM : 1Lakh
    📜 NodeMCU ESP8266 CODE LINK :
    1.www.mediafire....
    2.www.mediafire....
    📝CIRCUIT DIAGRAM :
    Described In the Video Itself Step By Step
    🔍COMPONENTS BUYING LINK :
    📌NODEMCU - ESP8266 Wifi Development Board
    www.electronic...
    📌Soil Moisture Sensor Module
    www.electronic...
    📌1 Channel 5V Relay Module without Optocoupler
    www.electronic...
    📌3V to 12V Mini DC Submersible Pump
    quartzcomponen...
    📌18650 Li-ion 2200mAh Rechargeable Battery (Original)
    quartzcomponen...
    📌GL12 840 Points Solderless Breadboard
    www.electronic...
    📌2 x 3.7V 18650 Lithium Polymer (Lipo) Battery Holder
    www.electronic...
    📌Male To Male Jumper Wires (10cm) - 40 Pieces pack
    www.electronic...
    🎼Music Credits :
    RUclips Audio Library
    🎧 SFX Credits :
    1.Sound Effect from href="pixabay.com/so..."Pixabay
    2.Sound Effect from href="pixabay.com/so..."Pixabay
    3.Sound Effect from href="pixabay.com/so..."Pixabay
    ~~~~~~~~~
    📲 FOLLOW US ON :
    📌Facebook :
    / sayan-electronics-1061...
    📌Instagram :
    / priyo2.2
    #sayanelectronics #iot #nodemcu #esp8266 #arduino

Комментарии • 222

  • @SayanElectronics
    @SayanElectronics  Год назад +1

    //In Case Description Code Doesn't Work, Here It Is For All Of You Friends☺ Please Subscribe, If You Like The Video //
    Smart Plant Watering System
    #define BLYNK_TEMPLATE_ID "Put Template Id"
    #define BLYNK_TEMPLATE_NAME "Put Template Name"
    #define BLYNK_AUTH_TOKEN "Put Auth Token"
    /*Smart Plant Watering System With New BLYNK
    @SayanElectronics */
    //include libraries
    #include
    #define BLYNK_PRINT Serial
    #include
    #include
    //Initialize the LCD display
    LiquidCrystal_I2C lcd(0x27, 16, 2);
    char auth[] = "Auth Token";//Enter your Auth token
    char ssid[] = "Wifi SSID";//Enter your WIFI name
    char pass[] = "Wifi Password";//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);
    lcd.init();
    lcd.backlight();
    Blynk.begin(auth, ssid, pass, "blynk.cloud", 80);
    lcd.setCursor(1, 0);
    lcd.print("System Loading");
    for (int a = 0; a

  • @shashankts8827
    @shashankts8827 8 месяцев назад +8

    Why is nobody talking about how well edited the video is? ❤

    • @SayanElectronics
      @SayanElectronics  8 месяцев назад +3

      You are the first Sayan Electronics family member , to write such a beautiful comment...❤️🙏🥺Thanks a lot brother from the core of my heart❤️❤️
      I'll put your comment snapshot in my story😇

  • @mokasevaishu6242
    @mokasevaishu6242 6 месяцев назад +3

    Bro your great, I made this project and it works, thank you❤️❤️

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад +1

      Thanks a lot , to let me know that you succeeded ...keep up the good work😊

    • @deepakpatel-uj4gk
      @deepakpatel-uj4gk 4 месяца назад

      You are not getting any issue when you run the code

    • @deepakpatel-uj4gk
      @deepakpatel-uj4gk 4 месяца назад

      I am getting an error after installation of All liberary

    • @SciBhai
      @SciBhai 3 месяца назад

      I have installed all the libraries but still it says .. BlynkSimpleEsp8266.h no such file or directory...
      Plz help ne bro its very important for my college project 😭😭😭😭

    • @lhanceandrewtambis9839
      @lhanceandrewtambis9839 Месяц назад

      ​@@SciBhai Did you fix it?

  • @anuppanta4758
    @anuppanta4758 4 месяца назад +1

    Really liked your video bro. The way you portray connection and the working mechanisms absolutely loved it. Also, I am planning to use the same method in my project as well bro. Will I be able to communicate with you if I have any issues during the project bro ? Thank you so much for sharing your knowledge bro. Extremely grateful.

    • @SayanElectronics
      @SayanElectronics  4 месяца назад +2

      Thanks a lot brother for such a beautiful comment ☺️🤍All of your comments inspire me to improve & make more high level projects for you guys,
      If you share your problems here in RUclips comment box , then it'll be good , because both the problem & solution I'll provide will benefit all other future viewers , having same problems..

  • @SaberChtourou
    @SaberChtourou 4 месяца назад +1

    great video, beautiful and helpful

  • @mochamadlutfi1220
    @mochamadlutfi1220 3 месяца назад +1

    This uses a 5v relay version which is LOW Trigger or HIGH Trigger or LOW HIGH Trigger?

  • @hatersnakal
    @hatersnakal 7 месяцев назад +4

    I'm having a problem, the pump won't turn on, even though I've followed your method. HELP ME

    • @mathankumarh3458
      @mathankumarh3458 7 месяцев назад +1

      How to upload code many errors

    • @SayanElectronics
      @SayanElectronics  7 месяцев назад +1

      Code errors may occur if you've not installed all libraries required for the code..

    • @SayanElectronics
      @SayanElectronics  7 месяцев назад +1

      Check the relay & each module you are using separately, if they are working , also check the pump, if it is getting proper voltage output from relay out pins...if they are all fine.... Check if your connection are same as that of code ...otherwise it will not work

    • @mi0468
      @mi0468 5 месяцев назад +1

      Hey does your motor work properly now ? I am also having the same problem with my project

  • @neyyro8565
    @neyyro8565 3 месяца назад +1

    thanks for the tutorial, sir! it worked perfectly fine. but can you write a code to make the pump on when soil moisture value is low? like the automatic one, please? i need it tomorrow for school project.

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      Thanks to let me know that it worked..☺️obviously I'll make the automatic one ,but sorry brother ,recently I'm working on a big project ,so I need time to do that...not possible to upload tomorrow..Hope u understand😊

    • @SciBhai
      @SciBhai 3 месяца назад

      😭
      I have installed all the libraries but still it says .. BlynkSimpleEsp8266.h no such file or directory...
      Plz help ne bro its very important for my college project 😭😭😭😭

  • @thecreator5524
    @thecreator5524 7 месяцев назад +1

    Everything is working but i have got few error sir but u made very well

    • @SayanElectronics
      @SayanElectronics  7 месяцев назад

      Thanks , feel free to share your errors here...

  • @eatcodeplaysleep
    @eatcodeplaysleep 3 месяца назад +1

    Awesome video bro, quick question. Can I skip the battery part?

  • @ELECTRONICS_EVERYTHING
    @ELECTRONICS_EVERYTHING 2 месяца назад +1

    Bro please help i need a code for only to run the motor(i am not going to use lcd display and soil Moisture sensor...)

    • @SayanElectronics
      @SayanElectronics  2 месяца назад +1

      Do you want to test the water pump or run it with a particular time delay between on & off ?

    • @ELECTRONICS_EVERYTHING
      @ELECTRONICS_EVERYTHING 2 месяца назад +1

      @@SayanElectronics bro i want run it as on and off switch using blynk,no time delay.please give the code 🥺

  • @eugenemanga
    @eugenemanga 2 дня назад

    compiling is done , but lcd is not turned on and the device is offline, also my relay module , only 1 light is on

    • @SayanElectronics
      @SayanElectronics  День назад

      For offline problem , watch this video -
      ruclips.net/video/r7gBR_wfhqE/видео.htmlsi=6p9Y97-IvuHyzN1l
      from 13:55 onwards

  • @saymaansari1740
    @saymaansari1740 Месяц назад

    I follow all your steps correctly after compiling the program it gives me successful message but while I am operating with my phone it's shows me offline plz sir help me out
    Please help me out tomorrow is my project submission day

    • @SayanElectronics
      @SayanElectronics  Месяц назад

      Please watch this video
      ruclips.net/video/r7gBR_wfhqE/видео.htmlsi=dHp8x9Wu4lRhneR7
      from 13:55 onwards to solve your problem.

  • @Naitiklangalia
    @Naitiklangalia Месяц назад +2

    Sir will it work if we don't use lcd and i2c because for some budget issue please reply🙏🏻

  • @imstewpit7885
    @imstewpit7885 5 месяцев назад +3

    hi sir i dont find the followings in the libraries that you showed: 6:32 and 6:48

    • @SayanElectronics
      @SayanElectronics  5 месяцев назад

      6:48 is not a library it's the board required
      1)Open the Boards Manager. Go to Tools > Board > Boards Manager…
      2)Search for ESP8266 and press install button for the "ESP8266 by ESP8266 Community"
      6:32 is the "ESP8266 Wifi" Library , go to Sketch > manage libraries & then install the library first

  • @JyotiSingh-md5nq
    @JyotiSingh-md5nq Месяц назад +1

    Bro pls tell that can i do direct connections ?? because mine nodemcu is new one nodemcu v3 so it doesnt fit in breadboard

    • @SayanElectronics
      @SayanElectronics  Месяц назад

      Yes you can , but for Nodemcu V3 , code 'll not be the same as this ...you've to make changes in code . Be careful about that to avoid runtime errors

  • @nesrinehand2796
    @nesrinehand2796 3 месяца назад

    Erreur de compilation pour la carte NodeMCU 1.0 (ESP-12E Module) errror that i got,please help me

  • @LokeshSara
    @LokeshSara Месяц назад +1

    How much distance it covers Means how much distance the connectivity range plsss reply❤

    • @SayanElectronics
      @SayanElectronics  23 дня назад

      Range is about
      50m (approx) indoors
      100m (approx) outdoors
      ( without any interference/obstacles in between, like walls or other wifi networks)

  • @varad811
    @varad811 6 месяцев назад +2

    Is it necessary to connect it externally with power bank?

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад

      No brother , you can also use mobile charger or any power supply box with 5V output supply & also a 5V battery...

    • @nesrinehand2796
      @nesrinehand2796 3 месяца назад +1

      Can use the USB cable with my Pc​@@SayanElectronics

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      Yes you can

  • @mi0468
    @mi0468 5 месяцев назад +2

    Hello i am also doing this project for final year and blynk app is also works properly but my Motor is not turning on . Can you please help me with this one

    • @SayanElectronics
      @SayanElectronics  5 месяцев назад +1

      Motor may not getting adequate voltage it needs to get started...what battery have you used?

    • @mi0468
      @mi0468 5 месяцев назад +1

      9v

    • @SayanElectronics
      @SayanElectronics  5 месяцев назад +1

      Check the motor separately if it works perfectly or not , bcz the motor can tolerate 3-6V DC .
      For that reason ,I've used 7.4Volts battery . Also before using ,I drained excess 1V in it in other circuits.

    • @mi0468
      @mi0468 5 месяцев назад

      Ohh ok I will try that

    • @pancitmiki_01
      @pancitmiki_01 4 месяца назад

      ​@@mi0468 did it work?

  • @aysimaaydn1737
    @aysimaaydn1737 2 месяца назад

    THERE IS NO IMAGE ON MY LCD SCREEN. IT WAS WORKING IN MY PREVIOUS PROJECT, SO IT'S NOT BROKEN. WHAT COULD BE THE REASON FOR THIS?

    • @SayanElectronics
      @SayanElectronics  2 месяца назад

      Most of the times this issue is for loose connection of lcd display . Please check & let me know ...

    • @aysimaaydn1737
      @aysimaaydn1737 2 месяца назад

      @@SayanElectronics The connections are correct. The humidity sensor also only shows between 85-95. Where is the error, please help. I have a project delivery in 2 days.

    • @SayanElectronics
      @SayanElectronics  2 месяца назад

      1)Make sure you've used correct i2C adress like mine is - 0x27
      2) Install all libraries reqd..specially LiquidCrystal_I2C library.
      3) Select correct esp8266 board like mine is Nodemcu 1.0(ESP -12E module)
      4) Enter correct ssid, password , auth token .
      5) Make sure your mobile data, wifi ,wifi hotspot all are ON

  • @anhta6542
    @anhta6542 9 месяцев назад +1

    Why is my pump not working even though the yellow light in the on relay module is still on, the blink app still works?

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад

      Please tell the battery voltage & amp you are using ...the pump may not be getting the voltage & current to start

    • @omkardalvi8484
      @omkardalvi8484 4 месяца назад +1

      Hey I am having the exact same issue as I have a 9V battery.

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      Try using a 6V-7.4V battery. Also check separately, if your pump & relay are working or not

    • @jjempoy0854
      @jjempoy0854 3 месяца назад +1

      Same problem for me, relay module works (tested separately). Pump works when it is connected to the breadboard but not working when connected to battery (7.4V). Please help.

  • @promitra8739
    @promitra8739 9 месяцев назад +1

    My LED i2c is not working and moisture sensor shows wrong value

    • @SayanElectronics
      @SayanElectronics  9 месяцев назад +1

      Check if there r some loose connections , fix that first & recheck your circuit connection

    • @promitra8739
      @promitra8739 9 месяцев назад +2

      @@SayanElectronics I checked that, and everything is fine. I checked on the internet, seems that I'm using esp8266 v0.9 and not 1.0. is that the problem? And now I have a new issue, the esp does not connect to my laptop for some reason, it was working fine before and I could control the motor using blynk, but now even that is not happening

    • @SayanElectronics
      @SayanElectronics  9 месяцев назад +1

      Toools > Board > nodemcu 0.9
      Select right board & port & change the preferences
      watch this video ...
      ruclips.net/video/hMEllYYoz_s/видео.htmlsi=7OvNXCIO8DOq0gUi
      for details

  • @aribfakih2319
    @aribfakih2319 8 месяцев назад +1

    Favorite part was the battery edit

    • @SayanElectronics
      @SayanElectronics  8 месяцев назад

      Thanks a lot ...much happy to know that you liked that part 😇☺️🤍subscribe for more such videos...

    • @aribfakih2319
      @aribfakih2319 8 месяцев назад

      ​@@SayanElectronicsbro, I'm trying to build this exact thing for my college project, could you please help me with the programming bit? Thank you

    • @aribfakih2319
      @aribfakih2319 8 месяцев назад

      ​@@SayanElectronicsSIR****

    • @SayanElectronics
      @SayanElectronics  8 месяцев назад

      DM your prblm in instagram

  • @kintanvarma8279
    @kintanvarma8279 4 месяца назад

    Sir ive problem, my display(led) is turning off after few minutes of usage its not showing any value except light and also data from soil moisture sensor is alsways changing even if its in open air its showing 100 please revert back

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      Please check for any loose connections & check also battery voltage if you are using the same code of mine

  • @amelha5494
    @amelha5494 3 месяца назад +1

    Is there any other way to make it without Arduino and breadboard?!

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      Why not , you can make permanent connection in veroboard ... & for more professional design you can use customized PCB

  • @science-with-kishore
    @science-with-kishore 16 дней назад +1

    Bro can esp32 will work with this?

    • @SayanElectronics
      @SayanElectronics  16 дней назад

      Yes why not , board name & some coding sections will be different

  • @eugenemanga
    @eugenemanga 2 дня назад

    SIR , what app did you use for the coding part? im so confused, i've downloaded the code link but i dont know how to put the codings. please help me , i need to submit this project this week

    • @SayanElectronics
      @SayanElectronics  2 дня назад

      Software - Arduino
      You can download it from official " arduino.cc "website

  • @metalwoodcraft
    @metalwoodcraft 8 месяцев назад

    Me to offline node mcu 8266 after 31 dec. 2022 blynk cloud shutdown. 😥

  • @varad811
    @varad811 6 месяцев назад +1

    bro actually i have connected everything as you shiwed in the video but when i turn on the on switch from my mobile phone for water pump, the relay light emits to green but the pump is not getting started what is the issue?? though i have chnaged the relay twice or is it necessary that the water pump should be 3-12 volt??

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад

      Yes , pump may not getting adequate voltage it needs to get started...what battery have you used?

    • @varad811
      @varad811 6 месяцев назад

      12v

    • @SayanElectronics
      @SayanElectronics  5 месяцев назад +1

      But the pump as well as 1 channel relay can't tolerate 12 volts ,they might've been damaged... I have used total 7.4 volts , try using 7.4 volts

    • @mi0468
      @mi0468 5 месяцев назад

      Hey does your motor work now ?

    • @varad811
      @varad811 4 месяца назад

      @@mi0468 no buddy

  • @AshaShetty-et8si
    @AshaShetty-et8si 9 месяцев назад +2

    Can I use 5v relay ???

    • @SayanElectronics
      @SayanElectronics  9 месяцев назад

      Yes ,I've also used 5V , but ..."without optocoupler"

  • @rayshaagasta1968
    @rayshaagasta1968 9 месяцев назад +1

    sir my nodemcu fit fully on the breadboard so not leaving one point on the edge like u (to connect the led and others component) why is that? did u use the different nodeMCU? or different breadboard?

    • @SayanElectronics
      @SayanElectronics  8 месяцев назад +1

      Yes , you are using nodemcu version-3(with CH340 driver chip) , I've used nodemcu version-2 (with CP2102 driver chip)

    • @high_voltage603
      @high_voltage603 6 месяцев назад +1

      are they the same or there is a difference ?@@SayanElectronics

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад +1

      Obviously different , versions , driver chip & size

  • @izabelaflis7803
    @izabelaflis7803 10 месяцев назад +1

    Hi i have problem with inluded libraries and i can't find board. Could you tell me how i can add it .

    • @SayanElectronics
      @SayanElectronics  10 месяцев назад

      Solution To Your Question Coming On Next Video...Must Watch 😊

    • @izabelaflis7803
      @izabelaflis7803 10 месяцев назад +1

      @@SayanElectronics thanks i will be waiting 😀

    • @SayanElectronics
      @SayanElectronics  10 месяцев назад

      You can see the solution on your comment on recent long video at 4:04 onwards..

  • @user-py5yj3yl9i
    @user-py5yj3yl9i 6 месяцев назад +1

    Sir can i use LCD Display instead of LCD With 12C

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад

      Obviously but in that case you've to define each lcd pins in code & connect separately & that may lead to loose connection giving rise to sevaral problems ...so try to use i2c

  • @egyptian6930
    @egyptian6930 4 месяца назад +1

    Do this has limited range?

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      Yes about 2-3kms ...but thanks for commenting😊...I'll make a range test experiment on ESP8266 for my RUclips family❤️

  • @user-om3vi3ch7r
    @user-om3vi3ch7r 3 месяца назад +1

    hi .. do u have a pic of the circiut diagram ?

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      No brother , but you can connect all modules step by step as shown in video .

  • @safeets
    @safeets 8 месяцев назад

    hello why i cant click on the template code? please answer

  • @riteshtheory
    @riteshtheory 3 месяца назад +1

    Bro error is coming that
    Pls specify Blynk templet id
    What should I do

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      If you've used my code then you need to change template id & password .Check that on your BLYNK , provide that in place of mine ..

    • @riteshtheory
      @riteshtheory 3 месяца назад

      @@SayanElectronics bro i have made changes in auth ssid and password
      Can u tell where I have to make changes else

    • @riteshtheory
      @riteshtheory 3 месяца назад

      My code is not able to compile pls help

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      Can u paste the code here ?...which line is showing error...

  • @shreyapatil5464
    @shreyapatil5464 4 месяца назад

    The pump is not working and the lcd is also not showing any display

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      Check for any loose connection & also the power source should range between 6V - 7V

  • @saymaansari1740
    @saymaansari1740 Месяц назад

    Sir I buy a one 5v relay module without autocoplour ....sir when it will deliver and from where i can view my order details

  • @IMfanclub1
    @IMfanclub1 4 месяца назад +1

    👍🏻❤️

  • @LokeshSara
    @LokeshSara 2 месяца назад

    Sir im facing a issue of Lcd_i2c claims to run on (avr) how it can be solved

    • @SayanElectronics
      @SayanElectronics  2 месяца назад +1

      This error means that the library isn't fully compatible with the ESP8266 platform.
      Go to Sketch > Include Library > Manage Libraries...Search for LiquidCrystal_I2C by Frank de Brabander and install it.

  • @AliHassan-ll7ln
    @AliHassan-ll7ln 7 месяцев назад +1

    Aasalam o alaikum! Sir
    Can you provide the software requirements specifications (SRS)
    I CHOOSE THIS PROJECT FOR FINAL YEAR PLZ PROVIDE SRS if available thanks ❤

    • @SayanElectronics
      @SayanElectronics  7 месяцев назад +1

      Walekum Salam vai,😇
      You need only Arduino software to just upload code...so any simple device can do that work very smoothly... So if you have computer it's fine otherwise also you can upload the code using your phone

  • @kuwarprashant967
    @kuwarprashant967 5 месяцев назад +1

    Can i use Esp8266 ch340 instead of Cp2102

    • @SayanElectronics
      @SayanElectronics  5 месяцев назад

      Obviously you can but in that case coding needs to be changed in some parts

  • @pancitmiki_01
    @pancitmiki_01 4 месяца назад

    Is it still gonna work if i remove the soil moisture sensor

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      The mechanism of the working is that when soil is moist then nothing'll happen but when soil dries , moisture sensor senses it & waters the plant
      Now , if you not use the sensor , then in code u can use delays to water the plant twice everyday like that...you've to make changes in code to make it work without sensor

  • @Himantagaming-i9p
    @Himantagaming-i9p Месяц назад

    Library problem

  • @gobinathansubramanian7333
    @gobinathansubramanian7333 8 месяцев назад

    Possible combine temperature sensor and soil sensor together with ESP8266

  • @user-wl4qq8di1o
    @user-wl4qq8di1o 8 месяцев назад +1

    link is not working

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад

      It's working brother ..plz try moving to a high speed network area

  • @SciBhai
    @SciBhai 3 месяца назад

    I have installed all the libraries but still it says .. BlynkSimpleEsp8266.h no such file or directory...
    Plz help ne bro its very important for my college project 😭😭😭😭

    • @SayanElectronics
      @SayanElectronics  День назад

      You may've multiple libraries with same name . Try deleting all similar libraries & install again

  • @jilisahu3580
    @jilisahu3580 7 месяцев назад +1

    Can i use esp32 place of esp8266

  • @deepakpatel-uj4gk
    @deepakpatel-uj4gk 4 месяца назад

    When i try to run the code here i getting error because of missing Template I'd and template name you not written in code

    • @omkardalvi8484
      @omkardalvi8484 4 месяца назад

      The template I'd and name will be yours which you will find in the blynk dashboard when u will create the design as mentioned in the video. Hope it helps

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      Absolutely

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      Your solution is from 6:00 onwards

  • @hahahagrrr
    @hahahagrrr 4 месяца назад

    can we use the app offline?

  • @danialhakimi-xb1od
    @danialhakimi-xb1od 7 месяцев назад

    hello hi , why the value not appear at my lcd

    • @SayanElectronics
      @SayanElectronics  7 месяцев назад

      Check for any loose connection at any pins of lcd..check code to define pins correctly

  • @shibahotdog
    @shibahotdog 10 месяцев назад +1

    can i replace led+i2c with oled i2c sir?

    • @SayanElectronics
      @SayanElectronics  10 месяцев назад

      Yes you can, but the code will change also in that case

    • @shibahotdog
      @shibahotdog 10 месяцев назад

      @@SayanElectronics thank you sir

  • @capturo_artisto
    @capturo_artisto 4 месяца назад

    cant access the link for downloading the code. plz help

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      You can copy & paste the code also from the comments . Please see the comments section

  • @sharathreddy3073
    @sharathreddy3073 4 месяца назад

    While compiling i am having error for exit status how can i solve this

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      Can you plz copy paste the full error message ...!?

    • @sharathreddy3073
      @sharathreddy3073 3 месяца назад

      @@SayanElectronics now I don't have laptop all code is ok but atlast after verifying I am getting error that is "exit status" it is the error I'm getting

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      It means compilation process failed. Check for any syntax errors in the code, missing libraries , select right board & port ,& again try to compile..

  • @saymaansari1740
    @saymaansari1740 Месяц назад

    Please reply on my query why i am facing device offline on my blynk app

    • @SayanElectronics
      @SayanElectronics  День назад

      Watch this video
      ruclips.net/video/r7gBR_wfhqE/видео.htmlsi=_fdqROmjTATvmQnQ
      from 13:55 onwards

  • @furkangok4154
    @furkangok4154 2 месяца назад

    Compilation error: LiquidCrystal_I2C.h: No such file or directory
    HELP ME!!!

    • @SayanElectronics
      @SayanElectronics  2 месяца назад

      Install the LiquidCrystal_I2C library first ...then upload code

    • @furkangok4154
      @furkangok4154 2 месяца назад

      @@SayanElectronics ı did it. ı installed all of them but this error keep going.

    • @furkangok4154
      @furkangok4154 2 месяца назад

      @@SayanElectronics can ı contact with you on any platform?

    • @SayanElectronics
      @SayanElectronics  2 месяца назад

      Plz copy your error message & paste here

    • @furkangok4154
      @furkangok4154 2 месяца назад

      @@SayanElectronics C:\Users\furka\OneDrive\Masaüstü\son_deneme_copy_20240616003341\son_deneme_copy_20240616003341.ino:6:10: fatal error: LiquidCrystal_I2C.h: No such file or directory
      compilation terminated.
      exit status 1
      Compilation error: LiquidCrystal_I2C.h: No such file or directory

  • @user-gr5up7eb8t
    @user-gr5up7eb8t 23 дня назад

    Im not getting the board name pls help me

    • @SayanElectronics
      @SayanElectronics  День назад

      You should follow these steps to install nodemcu board correctly -
      ruclips.net/video/T5iubenbEcE/видео.htmlsi=UOoyWB90DeDfHxO1

  • @chadchampion3700
    @chadchampion3700 7 месяцев назад

    Do we need to pay in the Blynk website or you are using free ?

    • @SayanElectronics
      @SayanElectronics  7 месяцев назад +1

      No , it's free brother .... For some extra buttons & features it's paid version...but if you follow my video , it's made absolutely free of cost on BLYNK side

  • @AayushYT1
    @AayushYT1 3 месяца назад

    Sir can we control this system from any where? Please reply sir

    • @SayanElectronics
      @SayanElectronics  23 дня назад

      No , esp8266 is a wifi module , so this'll depend on the wifi signal strength it is connected ..
      Range is about
      50m (approx) indoors
      100m (approx) outdoors

  • @user-hq9wb3yt5p
    @user-hq9wb3yt5p 28 дней назад

    Sir, my pump is not turning off plsssss help mee...

  • @irzifahrezi5770
    @irzifahrezi5770 3 месяца назад

    Sir how can i found 7.4 volt battery?

  • @sogandrostamzade
    @sogandrostamzade 6 месяцев назад

    WHEN I WANT TO SELECT PORT I CANT and when i upload the code shows an error thats it:WARNING: library LiquidCrystal I2C claims to run on avr architecture(s) and may be incompatible with your current board which runs on esp8266 architecture(s).
    . Variables and constants in RAM (global, static), used 31384 / 80192 bytes (39%)
    ║ SEGMENT BYTES DESCRIPTION
    ╠══ DATA 1560 initialized variables
    ╠══ RODATA 2576 constants
    ╚══ BSS 27248 zeroed variables
    . Instruction RAM (IRAM_ATTR, ICACHE_RAM_ATTR), used 61911 / 65536 bytes (94%)
    ║ SEGMENT BYTES DESCRIPTION
    ╠══ ICACHE 32768 reserved space for flash instruction cache
    ╚══ IRAM 29143 code in IRAM
    . Code in flash (default, ICACHE_FLASH_ATTR), used 256244 / 1048576 bytes (24%)
    ║ SEGMENT BYTES DESCRIPTION
    ╚══ IROM 256244 code in flash
    Failed uploading: no upload port provided
    please help me i have a school project

    • @sogandrostamzade
      @sogandrostamzade 6 месяцев назад

      can somebody help me?

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад

      Make sure you have connected your esp8266 (version 1) with computer via USB cable & select the right board & settings as I've done in video at 6:10

    • @sogandrostamzade
      @sogandrostamzade 6 месяцев назад

      i did it but again i cant select port
      @@SayanElectronics

  • @Triggeredinsaanmemes63
    @Triggeredinsaanmemes63 9 месяцев назад

    In blynk project offline dekha raha h

    • @SayanElectronics
      @SayanElectronics  День назад

      Watch this video
      ruclips.net/video/r7gBR_wfhqE/видео.htmlsi=_fdqROmjTATvmQnQ
      from 13:55 onwards for this error solution

  • @hahahagrrr
    @hahahagrrr 4 месяца назад

    is the app online? can we use it offline?

  • @harish.m7897
    @harish.m7897 6 месяцев назад

    Bro i am doing my clg project bro some error coming you can help me bro i will pay amt also bro plzz help me

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад

      No bro , no amt is required you please describe your error ...

    • @harish.m7897
      @harish.m7897 6 месяцев назад

      Arduino: 1.8.16 (Windows 10), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, Disabled (new aborts on oom), Disabled, All SSL ciphers (most compatible), 32KB cache + 32KB IRAM (balanced), Use pgm_read macros for IRAM/PROGMEM, 4MB (FS:2MB OTA:~1019KB), 2, v2 Lower Memory, Disabled, None, Only Sketch, 115200"
      WARNING: library LiquidCrystal_I2C-1.1.2 claims to run on avr architecture(s) and may be incompatible with your current board which runs on esp8266 architecture(s).
      In file included from C:\Users\HARISH\Documents\Arduino\libraries\Blynk\src/BlynkApiArduino.h:14,
      from C:\Users\HARISH\Documents\Arduino\libraries\Blynk\src/BlynkSimpleEsp8266.h:24,
      from C:\Users\HARISH\Documents\Arduino\sketch_feb17b\sketch_feb17b.ino:9:
      C:\Users\HARISH\Documents\Arduino\libraries\Blynk\src/Blynk/BlynkApi.h:39:6: error: #error "Please specify your BLYNK_TEMPLATE_ID and BLYNK_TEMPLATE_NAME"
      39 | #error "Please specify your BLYNK_TEMPLATE_ID and BLYNK_TEMPLATE_NAME"
      | ^~~~~
      exit status 1
      Error compiling for board NodeMCU 1.0 (ESP-12E Module).
      This report would have more information with
      "Show verbose output during compilation"
      option enabled in File -> Preferences.
      @@SayanElectronics bro alteast give whatapp number bro please

    • @SayanElectronics
      @SayanElectronics  6 месяцев назад

      Contact me on Instagram brother ...

  • @gayugowtham8267
    @gayugowtham8267 2 месяца назад

    Bro what will be the wifi I'd and password

    • @SayanElectronics
      @SayanElectronics  День назад +1

      You might be using a mobile hotspot or a broadband for internet . Use that wifi ssid password

  • @manishakhunte9716
    @manishakhunte9716 4 месяца назад

    Code is not working
    Can you help me please

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      Plz tell the error you 'r getting..

    • @manishakhunte9716
      @manishakhunte9716 4 месяца назад

      @@SayanElectronics many errors

    • @SayanElectronics
      @SayanElectronics  4 месяца назад

      No prblm , copy all the errors & paste them here

    • @manishakhunte9716
      @manishakhunte9716 4 месяца назад

      @@SayanElectronics okay I will paste it from another account

    • @AjinkyaHighyield
      @AjinkyaHighyield 4 месяца назад

      @@SayanElectronicsC:\Users\kadam\OneDrive\Documents\Arduino\Plant_watering_system_with_new_blynk_update__1_\Plant_watering_system_with_new_blynk_update__\Plant_watering_system_with_new_blynk_update__.ino:6:10: fatal error: LiquidCrystal_I2C.h: No such file or directory
      6 | #include
      | ^~~~~~~~~~~~~~~~~~~~~
      compilation terminated.
      exit status 1
      Compilation error: LiquidCrystal_I2C.h: No such file or directory

  • @JC-gy5el
    @JC-gy5el 7 месяцев назад +1

    Hello brother i have a problem why can't i connect to blynk? Always offline 😢

    • @JC-gy5el
      @JC-gy5el 7 месяцев назад +1

      Please reply brother 😢

    • @SayanElectronics
      @SayanElectronics  7 месяцев назад

      ruclips.net/video/r7gBR_wfhqE/видео.htmlsi=80w-URMTiFLueVnI
      Watch this video....your solution is at 13:52

    • @JC-gy5el
      @JC-gy5el 7 месяцев назад +1

      Thank you brother i will try it now

    • @SayanElectronics
      @SayanElectronics  7 месяцев назад

      Try, if you solve it ...plz let me know😊

    • @JC-gy5el
      @JC-gy5el 7 месяцев назад

      It won't work brother 😢 where can i contact you brother? I will send you a picture

  • @DEIX_REMOX_YT
    @DEIX_REMOX_YT 6 месяцев назад +1

    C:\Users\HARISH\Desktop\New folder\test_1\test_1.ino: In function 'void setup()':
    test_1:32:7: error: 'class LiquidCrystal_I2C' has no member named 'init'
    32 | lcd.init();
    | ^~~~
    Multiple libraries were found for "LiquidCrystal_I2C.h"
    Used: C:\Users\HARISH\Documents\Arduino\libraries\ESP8266-I2C-LCD1602-master
    Not used: C:\Users\HARISH\Documents\Arduino\libraries\LiquidCrystal_I2C-1.1.2
    exit status 1
    'class LiquidCrystal_I2C' has no member named 'init'
    please help me to clear this sir

    • @ryucerie
      @ryucerie 5 месяцев назад

      change the "init" to "begin"

    • @DEIX_REMOX_YT
      @DEIX_REMOX_YT 5 месяцев назад

      @@ryucerie tried bro but not working at all

    • @ryucerie
      @ryucerie 5 месяцев назад +1

      @@DEIX_REMOX_YT you have multiple libraries, only choose the second referred in "not used" . you can delete the one referred in "used".

  • @niteeshm9338
    @niteeshm9338 10 месяцев назад

    C:\Users\sbi\Downloads\Modified new project (2)\Modified new project (2).ino:4:10: fatal error: BlynkSimpleEsp8266.h: No such file or directory
    4 | #include
    | ^~~~~~~~~~~~~~~~~~~~~~
    compilation terminated.
    exit status 1
    Compilation error: BlynkSimpleEsp8266.h: No such file or directory
    what can i do

    • @SayanElectronics
      @SayanElectronics  10 месяцев назад +1

      Install the Blynk library first brother..

  • @Jobayer.AlHasan
    @Jobayer.AlHasan 2 месяца назад

    where is the code
    ?

  • @sharathreddy3073
    @sharathreddy3073 3 месяца назад

    WARNING: library LiquidCrystal I2C claims to run on avr architecture(s) and may be incompatible with your current board which runs on esp8266 architecture(s).
    In file included from c:\Users\vishw\Documents\Arduino\libraries\Blynk\src/Blynk.h:14,
    from C:\Users\vishw\Desktop\soil\soil.ino:9:
    c:\Users\vishw\Documents\Arduino\libraries\Blynk\src/Blynk/BlynkApi.h:39:6: error: #error "Please specify your BLYNK_TEMPLATE_ID and BLYNK_TEMPLATE_NAME"
    39 | #error "Please specify your BLYNK_TEMPLATE_ID and BLYNK_TEMPLATE_NAME"
    | ^~~~~
    exit status 1
    Compilation error: exit status 1
    This is the error I'm getting

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      Select the write board as I've selected ...also change the template id & name . Your BLYNK should generate a different Template id & name . Put that in code .

    • @sharathreddy3073
      @sharathreddy3073 3 месяца назад

      I selected nodemcu 1.0(ESP-12) I gave what u told in video but it is getting error

    • @SayanElectronics
      @SayanElectronics  3 месяца назад

      See carefully there are two options --
      1) NodeMCU 0.9(ESP-12 Module)
      2)NodeMCU 1.0 (ESP-12E Module)
      Option no.2 which has (12E)written, select that board & also go to
      File > Preferences > Additional board manager URL's
      & paste this link given below --
      arduino.esp8266.com/stable/package_esp8266com_index.json

  • @hahahagrrr
    @hahahagrrr 4 месяца назад

    can we use the app offline?