Getting started with NodeMCU (ESP8266 tutorial #1)

Sdílet
Vložit
  • čas přidán 5. 07. 2017
  • $2 for 2-Layer PCBs & $5 for 4-Layer PCBs: jlcpcb.com/PCH
    Start Altium designer FREE TRIAL : www.altium.com/yt/diyguychris
    ★☆★🎆🎆Second tutorial 🎆🎆★☆★
    👉 NodeMCU Home Automation : • NodeMCU Home automatio...
    ★☆★ SUPPORT US WITH A SIMPLE TIP ★☆★
    TiP here : en.tipeee.com/mega-das
    In this Tutorial I explained some basic information about ESP8266 inorder to help you understanding how to use this super cheap Dev board. Also I showed how to configure Arduino IDE to program ESP8266 by insterting the following link in additional boards manager URLs.
    Link : arduino.esp8266.com/stable/pac...
    ★☆★ OUR LATEST PROJECT 🏅🤖 ★☆★
    👉 Arduino MIDI Controller : • DIY Arduino MIDI contr...
    ★☆★ BUY ESP8266 NOW FROM AMAZON: ★☆★
    Link 1 : amzn.to/2SxyjyD
    Link 2 : amzn.to/2LKQ4Id
    Link 3 : amzn.to/2Sz7KsL
    ★☆★ NodeMCU DRIVER LINK: ★☆★
    www.silabs.com/products/develo...
    ★☆★ DOWNLOAD THE PROJECT CODE ★☆★
    www.mediafire.com/file/lj4h363...
    ★☆★ SUBSCRIBE TO ME ON CZcams: ★☆★
    / megadas
    ★☆★ FOLLOW ME BELOW: ★☆★
    Instructables: www.instructables.com/member/M...
    Hackaday : hackaday.io/MegaDAS
    Facebook : MEG.DAS1/?fr...
    Twitter : / megadas1
    Hackster : www.hackster.io/mega-das
    Keywords
    ESP8266
    Arduino IDE
    esp8266 blink
    getting strated
    nodemcu
  • Věda a technologie

Komentáře • 246

  • @petermicuch1173
    @petermicuch1173 Před 5 lety +229

    You have forgetten one step in Arduino IDE after setting web address under File --> Preferences menu. One needs to instal the boards: Tools --> Boards --> Boards Manager --> ESP8266 --> Instal

  • @sam.kendrick
    @sam.kendrick Před 6 lety +11

    Thank you so much! This has been the most helpful resource I've found for a neophyte like myself!

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety +1

      You are welcome Samuel Πέτρος Kendrick
      Do note forget to subscribe to our channel for more awesome videos.
      Let us know if we can further assist you.

  • @keoth1
    @keoth1 Před 5 lety +20

    Thank you so much for this very very helpful video! but please, consider using an anti pop filter on your microphone.

  • @NotShanny
    @NotShanny Před 6 lety +1

    Looking foward for a tutorail 2 ! Great job !

  • @karlprendergast6282
    @karlprendergast6282 Před 4 lety +1

    Are these boards suspect to static when handling? Static damage can lead to so weird behavior sooner and later.

  • @DerPlasma
    @DerPlasma Před 3 lety +6

    Nice tutorial, thanks! Since the link to the code is broken, here is it (more or less):
    char data;
    String SerialData="";
    void setup() {
    Serial.begin(115200);
    pinMode(D0,OUTPUT); // pin D0 corresponds to the internal LED
    }
    void loop() {
    // read the string from the serial monitor (the console)
    while(Serial.available()) {
    delay(15);
    data=Serial.read();
    SerialData+=data;
    }
    // turn LED on or off (and send message back to console)
    if(SerialData=="on") {
    digitalWrite(D0,LOW);
    Serial.println("LED ON");
    }
    if(SerialData=="off") {
    Serial.println("LED OFF");
    digitalWrite(D0,HIGH);
    }
    SerialData="";
    }

  • @anhtuannguyen7286
    @anhtuannguyen7286 Před 6 lety +2

    Good job bro, Thank you very much

  • @addisugebremichael3496

    i need a refresher and this is the best video

  • @ddx30
    @ddx30 Před 6 lety +96

    Nice video, but please for the second get rid of the music in the background or lower the volume a lot... so distracting!! -and irritating tbh-

  • @Bicho2895
    @Bicho2895 Před 6 lety +6

    hi mega das. that's a great video. thanks a lot, but what next ? i need (tutorial #2) please

  • @althamishnainamohamed6646

    This video is really usefull 👍🏻

  • @animagupta915
    @animagupta915 Před 5 lety

    Thanks for this tutorial,Most helpful video!

  • @nurishahaniakamarudin7417

    Hello Sir, Can you tell me how to pass the value from Arduino to NodeMCU ?
    I have problem when connecting the current sensor directly to nodemcu. The value produce is not same as multimeter. If I use Arduino, I got the value same as multimeter. Both I used same code. But different result. Can you share with me how to transfer data from arduino to nodemcu lolin??

  • @teoncool5907
    @teoncool5907 Před 2 lety

    Love the video! What usb cabel is required?

  • @DDTMAXX
    @DDTMAXX Před 6 lety +1

    Very many thank's, this video was very helpfull!

  • @qzorn4440
    @qzorn4440 Před 3 lety

    fantastic video info... thanks...:)

  • @great.shrike
    @great.shrike Před 6 lety +18

    PROJECT CODE link is dead :(

  • @phwualoha1
    @phwualoha1 Před 2 lety

    Thank you for sharing.

  • @ernestorivero8788
    @ernestorivero8788 Před 2 lety

    I have a esp8266 nodemcu, I want to use it only for Matrices of Led ws2812 (neopixel);I do not have wifi, then my question is I can use it in my project canceling the wifi, or I must install some additional firmware

  • @IaEmon
    @IaEmon Před 4 lety +1

    Hello bro
    First of all thank you for giving us such a beautiful and informative video.
    I had some questions about ESP8266 NodeMCU v3. If I want to make a repeater with it. So my question is
    1 / What will be the maximum range of NodeMCU repeater?
    2 / What is the maximum data speed of NodeMCU WiFi?
    3 / NodeMCU repeater maximum number of people can use together?

  • @massimilianomascaro
    @massimilianomascaro Před 5 lety +1

    thank you so much

  • @ernestorivero8788
    @ernestorivero8788 Před 2 lety

    Yo tengo un esp8266 nodemcu,lo quiero utilizar solo para matrices de Led ws2812(neopixel);yo no tengo wifi,entonces mi pregunta es lo puedo utilizar en mis proyecto anulando el wifi,o debo instalar algún firmware adicional

  • @felipezafani
    @felipezafani Před 6 lety

    Great video it helped me a lot!

  • @iamsabakalsoom
    @iamsabakalsoom Před 4 lety

    I am facing an error while trying to install the ESP8266 board, it says, error downloading the mentioned link when i open the boards manager, any feedback on this will be appreciated.

  • @fugit185
    @fugit185 Před 4 lety +3

    Be aware that most (all whom I have asked) ESP8266 sellers in Aliexpress sell 30mm wide board which doesn't fit to 400 holes/tie points Breadboard, it is too wide. In amazon the still sell 26mm model. So be aware!

  • @srishtygardenresorts705
    @srishtygardenresorts705 Před 6 lety +9

    when i uploaf my board url they are not getting downloaded

    • @TIDEredshift
      @TIDEredshift Před 5 lety +6

      When you've added the JSON, go to tools > boards > manage boards > scroll all the way down and install ESP8266 board

  • @funlikeeee6298
    @funlikeeee6298 Před rokem

    😳 nice thanks!

  • @yesmecreations2533
    @yesmecreations2533 Před 3 lety

    Sir, if nodemcu is fitted in box then what to do so it will not be overheated

  • @raymondaudet8775
    @raymondaudet8775 Před 5 lety

    Bonjour. Simple question. Je peut faire fonctionner un nodemcu 12e par wifi mais peut-il fonctionner par internet. Merci et à bientôt.

  • @danieljohnsopardenilla997

    Can you please explain why SerialData+=data and not SerialData=data?

  • @LCol718
    @LCol718 Před 3 lety

    Thank You!!!;

  • @harishanker3848
    @harishanker3848 Před 5 lety

    a program is already present inside my esp8266 i want to view the code in my laptop how can i do it someone plz say

  • @nathanobadiah8334
    @nathanobadiah8334 Před 3 lety +1

    Thank you for the video . i try to run the code but, i receive an error that "D" is not declared in this scope.

    • @Check_the_syntax
      @Check_the_syntax Před 3 lety

      D is never written into the code in the video? Is it a variable you added yourself to your own code ? I'f so. It just means you havnt declareda variable Named D into existence before you tried to use it.

  • @vanucle2540
    @vanucle2540 Před 5 lety

    I'm doing a late check. The exercise is: control 2 motor (forward, backward, left, right) using arduino and joystick. Can anyone help me? thank you !!!

  • @sagarikabehera1008
    @sagarikabehera1008 Před 4 lety

    In my case url is copying but not paste in that box why help me (windows 10)

  • @daringtruth6948
    @daringtruth6948 Před 6 lety

    Error compiling for board NodeMCU 0.9 (ESP-12 Module). this error makes my life hell,i tried alot but didn't get rid of it even i install the same version of arduino as yours but nothing works

  • @mahesh_d
    @mahesh_d Před 5 lety

    Hi
    Can you help with the esp8266 in home automation?
    I'm using it for home automation and the problem is when it reboots as the power gone, it automatically turns everything on .
    I don't need anything to be on state.
    Please help with it ?

    • @samratyuvi
      @samratyuvi Před 5 lety

      I am no Expert on ESP, but the controller starts executing a set of codes every time you power it on. May be that's what you will have to focus on. Hope you are still looking for the answer. If you have found a different answer that worked, please post it here. I am waiting for my board to arrive. Will play with it and updated when done.

  • @leonheider2808
    @leonheider2808 Před 6 lety +2

    Pls help my i got this error:
    Arduino: 1.8.4 (Windows 10), Board: "NodeMCU 0.9 (ESP-12 Module), 80 MHz, Serial, 115200, 4M (3M SPIFFS)"
    Build-Optionen wurden verändert, alles wird neu kompiliert
    D:\programme\adroino\Arduino\examples\01.Basics\Blink\Blink.ino: In function 'void setup()':
    Blink:28: error: 'LED_BUILTIN' was not declared in this scope
    pinMode(LED_BUILTIN, OUTPUT);
    ^
    D:\programme\adroino\Arduino\examples\01.Basics\Blink\Blink.ino: In function 'void loop()':
    Blink:33: error: 'LED_BUILTIN' was not declared in this scope
    digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
    ^
    exit status 1
    'LED_BUILTIN' was not declared in this scope
    Dieser Bericht wäre detaillierter, wenn die Option
    "Ausführliche Ausgabe während der Kompilierung"
    in Datei -> Voreinstellungen aktiviert wäre.

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety +1

      Hello Leon
      Try to use another Arduino IDE version like 1.6.5
      Let us know if we can further assist you.

    • @leonheider2808
      @leonheider2808 Před 6 lety +1

      MEGA DAS i have figert out how the nodemc run But i have one Probleme, Can i increase the Memory? I need more Memory because i will run the wifi Jammer Programm

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      Great to hear the good news :)
      About the memory I don't think that you can add some for it because it is integrated int the MCU.

  • @nehru123456
    @nehru123456 Před 6 lety

    thank you, you helped me a lot

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      You are welcome ^_^
      Let us know if we can further assist you.

  • @aaronward6092
    @aaronward6092 Před 4 lety

    after I install what do I do? I cant find out what com port to use

  • @PossumMedic
    @PossumMedic Před 4 lety +2

    I'm having issues getting the project code.
    Do you have another link?

    • @eric1052
      @eric1052 Před 4 lety

      same please let us know if you can share the project code elsewhere?

  • @makerun6927
    @makerun6927 Před 4 lety

    very nice

  • @saifullah4412
    @saifullah4412 Před 6 lety +1

    hello sir! yours videos are truly helpful.
    I want to ask can we establish a nodeMCU module to module communication ? in which one module will act as transmitter and keep sending a string while the second module with the lcd attached receive that string and show it on the lcd?

  • @ruellarobson
    @ruellarobson Před 5 lety

    thank you brother

    • @DIYGUYChris
      @DIYGUYChris  Před 5 lety

      Hello Robson
      You are welcome
      Let us know if we can further assist you.
      Do not forget to subscribe to our CZcams channel for more awesome videos.

  • @ahmadkharsah
    @ahmadkharsah Před 6 lety +1

    Great Video!

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      Thank you so much Ahmad.
      Do not forget to subscribe to our channel for more awesome videos.
      Let us know if we can further assist you.

  • @brucemurdock5358
    @brucemurdock5358 Před 3 lety

    Great video! Time stamps would've been nice tho

  • @frankwas1
    @frankwas1 Před 5 lety +1

    you should get a pop filter for your mic

  • @billyboo222
    @billyboo222 Před 5 lety

    Anyone can help to install ESP8266 NodeMCU board. Thanks

  • @amadeusalekseis
    @amadeusalekseis Před 2 lety

    Hiya Dr. Nick!

  • @mianfasih8286
    @mianfasih8286 Před 5 lety

    BN: Unknown board
    VID: 1A86
    PID: 7523
    SN: Upload any sketch to obtain it
    warning: espcomm_sync failed
    error: espcomm_open failed
    error: espcomm_upload_mem failed
    error: espcomm_upload_mem failed
    ANY SOLUTION?

  • @SchwanaCARDHUT
    @SchwanaCARDHUT Před 4 lety

    thank U

  • @abdullahguler7950
    @abdullahguler7950 Před 7 měsíci

    I'm very newbie I'm getting an error during compilation. Can you upload the .bin file of the project? It's a perfect design, I congratulate you.

  • @gs9807
    @gs9807 Před 5 lety +4

    There is no link for project code, I wrote as much as I could because video is blurry, replaced DO with LED_BUILTIN and it worked.

    • @DIYGUYChris
      @DIYGUYChris  Před 5 lety

      Hello
      The link is in the description below. Yes you can use pin D0 (not DO) or you can use the LED_BUILTIN in case you are using the1.6.5 version or higher IDE version
      Let us know if we can further assist you.
      Do not forget to subscribe to our CZcams channel for more awesome videos.

    • @alexfranklin4826
      @alexfranklin4826 Před 4 lety

      @@DIYGUYChris The link is expired.

  • @samuelkern8678
    @samuelkern8678 Před 6 lety

    Arduino: 1.8.2 (Windows 10), Board: "NodeMCU 0.9 (ESP-12 Module), 80 MHz, Serial, 115200, 4M (3M SPIFFS)"
    C:\Program Files (x86)\Arduino\examples\01.Basics\Blink\Blink.ino: In function 'void setup()':
    Blink:27: error: 'LED_BUILTIN' was not declared in this scope
    pinMode(LED_BUILTIN, OUTPUT);
    ^
    C:\Program Files (x86)\Arduino\examples\01.Basics\Blink\Blink.ino: In function 'void loop()':
    Blink:32: error: 'LED_BUILTIN' was not declared in this scope
    digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
    ^
    exit status 1
    'LED_BUILTIN' was not declared in this scope
    This report would have more information with
    "Show verbose output during compilation"
    option enabled in File -> Preferences.

  • @AwesomeSmiley87
    @AwesomeSmiley87 Před 6 lety +2

    The link to your code doesn't work, and the video doesn't show all of it. Can you please give a new link?

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      Hello Awesome Smiley;
      I have just checked the link for the source code and the download link is working like fine for me.
      Let us know if we can further assist you.

    • @kleinenboese395
      @kleinenboese395 Před 6 lety +3

      Problem is not the link: when you set the link in the Preference panel, restarting the IDE don't load the card manager. For loading it you have to open card option (menu Tools) and on top of the sub menu, clic on manage card. Then select the esp8266 item and install it. Hope this help.

  • @phisitja01
    @phisitja01 Před 4 lety

    thank

  • @ambarishlg
    @ambarishlg Před 6 lety +6

    Great video! Please share the link for ESP8266 tutorial #2

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety +1

      Thank you for your support Ambarish
      Soon we will post the second tutorial
      Let us know if we can further assist you.

    • @ambarishlg
      @ambarishlg Před 6 lety +3

      Eagerly waiting for 2nd tutorial! Whereas I am also interested in how to configure NodeMCU in "AP+Station" mode and how to change its credentials (SSID & pwd) in future.
      Thanks in advance.
      BR,
      Ambarish

    • @motkifk
      @motkifk Před 6 lety

      2nd tutorial is coming? it's fine! thank you!

    • @SureshKumarDL
      @SureshKumarDL Před 5 lety

      Where is the second tutorial??

    • @pagedavid4344
      @pagedavid4344 Před 5 lety

      soon? really?

  • @ayeshayasin7214
    @ayeshayasin7214 Před 4 lety +1

    what is the max range covered by node mcu 8266 in meters

  • @Zsinje
    @Zsinje Před 4 lety +1

    Would you be able to provide the script used to turn on and off the LED loop? The mediafire link is not working at the moment.

    • @HomicideHelicoptersLLC
      @HomicideHelicoptersLLC Před rokem

      a little late but in arduino ide that would be
      void setup() {
      pinMode(D4, OUTPUT);
      }
      void loop() {
      digitalWrite(D4, HIGH);
      delay(1000);
      digitalWrite(D4, LOW);
      delay(1000);
      }

  • @2010Edgars
    @2010Edgars Před 5 lety

    For MaCOS?

  • @sostenesibarra8244
    @sostenesibarra8244 Před 6 lety +1

    can you shar the links to download

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      Hello Sostenes Ibarra
      Which link you are asking for?
      You can find in the description of this video all the related links.
      Let us know if we can further assist you.

  • @asdfglkjhg5214
    @asdfglkjhg5214 Před 6 lety +1

    i have done same like video, but flash is not working.can i know what is the problem

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      Hallo Asdfg
      Did you installed the driver and your computer recognize the board in which port it is connected!?

    • @asdfglkjhg5214
      @asdfglkjhg5214 Před 6 lety +1

      yeah.i installed the drivers and i have tried all ports but it is not communicating

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      Could you find the Port in your IDE when you connect the board !
      Does the flash LED (small blue LED) flash one time when you connect the board and flash continuously when you apload the program!?

    • @OgJayD
      @OgJayD Před 6 lety +2

      Hey, my board flashes when i connect to my pc or Macbook. other then that, it doesnt show anywhere in the Device Manager on Windows, what drivers do i install?

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety +1

      Hello,
      Would you please follow the steps that I've showed in this tutorial because I've explained the required driver to make your board appeare in the Device Manager on Windows. And also all the needed download links are provided in the description of this video.
      Let us know if we can further assist you

  • @enghussain2307
    @enghussain2307 Před 4 lety +1

    Leaving ..
    Hard resetting via RTS pin....what does that mean....any help please

  • @silentscope7440
    @silentscope7440 Před 4 lety +2

    the project code is no longer available

    • @mohitsathya3123
      @mohitsathya3123 Před 3 lety

      char data;
      String SerialData="";
      void setup() {
      Serial.begin(115200);
      pinMode(D0,OUTPUT); // pin D0 corresponds to the internal LED
      }
      void loop() {
      // read the string from the serial monitor (the console)
      while(Serial.available()) {
      delay(15);
      data=Serial.read();
      SerialData+=data;
      }
      // turn LED on or off (and send message back to console)
      if(SerialData=="on") {
      digitalWrite(D0,LOW);
      Serial.println("LED ON");
      }
      if(SerialData=="off") {
      Serial.println("LED OFF");
      digitalWrite(D0,HIGH);
      }
      SerialData="";
      }

  • @rejitharadhakrishnan7330
    @rejitharadhakrishnan7330 Před 2 lety +1

    This code didn't worked for me.. The led is always remaining on after uploading

  • @juniorcook4094
    @juniorcook4094 Před 5 lety +1

    Does the one with the LCD screen from makerfocus work the same

    • @DIYGUYChris
      @DIYGUYChris  Před 5 lety

      Hello
      Is it a makerfocus esp8266 or an makerfocus esp32 ?

    • @juniorcook4094
      @juniorcook4094 Před 5 lety +1

      @@DIYGUYChris sorry it took so long to reply but it is MakerFocus ESP8266...thank you

    • @DIYGUYChris
      @DIYGUYChris  Před 5 lety

      @@juniorcook4094 then it should work fine just follow what I've did in this tutorial.

    • @juniorcook4094
      @juniorcook4094 Před 5 lety

      @@DIYGUYChris awesome thanks

  • @R_intelligence
    @R_intelligence Před 6 lety

    Second part kab aayega!!!

  • @annlebow1648
    @annlebow1648 Před 4 lety

    Good luck with that because they changed the website and finding the driver is nearly impossible!

  • @PCBoardRepair
    @PCBoardRepair Před rokem

    what is sheep?

  • @diggee172
    @diggee172 Před 6 lety

    Hi, nice video. I'm having trouble with the serial monitor display. The information is not readable no matter what baud rate I try. Can you suggest the right baudrate to use for the Serial.begin instruction in Arduino? thanks

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      Hello Diggee17
      No matter what the baudrate you set for your ESP it should be the same in the serial monitor. Otherwise it will not work.
      Let us know if we can further assist you.

    • @diggee172
      @diggee172 Před 6 lety

      thanks for your reply. I'm matching the baud rate and I can get the LED to blink but for some reason, I can't get output on the serial monitor, Could I have a bad board? I never had this problem with an arduino board.

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      Try the 115200 baud rate and set "cariage return" in the serial monitor.

  • @mohitkundu6909
    @mohitkundu6909 Před 6 lety

    how many relays we can connect with a nodemcu at the sametime ?

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety +1

      Hello Mohit;
      This Dev. board could support relais as much as its Digital I/O pins so just get the datasheet of the board or just search in the internet about "NodeMcu pinout" and you will find out how many relais you could exactly connect to you Node board.
      Let us know if we can further assist you.
      Do not forget to subscribe to our CZcams channel for more awesome videos.

    • @mohitkundu6909
      @mohitkundu6909 Před 6 lety

      MEGA DAS can you executly tell me that how much Digital i/o pinout in nodemcu esp8266.

    • @mohitkundu6909
      @mohitkundu6909 Před 6 lety

      MEGA DAS i am new in this

  • @TechnicalHeavenSM
    @TechnicalHeavenSM Před 3 lety

    How to make it work like a rubber ducky

  • @gabrielmanoto6135
    @gabrielmanoto6135 Před 6 lety +1

    salut mec tu pourrais me dire comment il faut alimenter le node mcu sans ordinateur stp merci :)

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety +1

      Hello nope
      You can use the "Vin" pin and "GND" pin to power on the NodeMCU using an external power supply source "up to 20V"
      Let us know if we can further assist you.

    • @gabrielmanoto6135
      @gabrielmanoto6135 Před 6 lety +1

      MEGA DAS merci beaucoup 😊 mais comment l’alimenter pour un long terme ? (1 an)

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      You can simply use a power source like a 12V adaptor and you could make it run for more than a year ;)

    • @gabrielmanoto6135
      @gabrielmanoto6135 Před 6 lety

      MEGA DAS désolé j’ai oublié de dire que le node mcu sera en dehors d’une maison donc il n’y aura pas de prise 😅
      On fait comment sans prise ?
      Merci encore pour la reponse

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety

      I think a solar eneregy cell with a good lythium 9V battery should be good for your need
      All the same, use the Vin pin to power it on with the battery

  • @_Yochitha
    @_Yochitha Před 5 měsíci

    How many pins in node mcu?

    • @DIYGUYChris
      @DIYGUYChris  Před 5 měsíci

      It depends on the dev board that you own, which model do you have?

  • @muhammadmifzal9713
    @muhammadmifzal9713 Před 4 lety +1

    Dear Mega Das, I wish I can get ur full code since I cannot see it clearly. TQ

    • @DIYGUYChris
      @DIYGUYChris  Před 4 lety

      Hello
      You can download the code from the link in the description of the video..

    • @muhammadmifzal9713
      @muhammadmifzal9713 Před 4 lety +1

      @@DIYGUYChris I already tried but the link already been remove

    • @DIYGUYChris
      @DIYGUYChris  Před 4 lety

      @@muhammadmifzal9713 We updated the link could you check the new one please ..

  • @celinejay7539
    @celinejay7539 Před 7 lety

    Hi
    Nice video and clear details.
    Question! how to use Low power is this?

    • @DIYGUYChris
      @DIYGUYChris  Před 7 lety +3

      Hello Celine
      In the comming tutorials I will show you how to do this.
      It will be posted soon.
      Let us know if we can further assist you.

    • @juliaward7937
      @juliaward7937 Před 7 lety +1

      Using an Operating system I guess !

    • @DIYGUYChris
      @DIYGUYChris  Před 7 lety

      Yes right, anyway using an operating system is better than using one loop for the whole program.

    • @celinejay7539
      @celinejay7539 Před 7 lety

      is it possible to use operating system with ESP !

    • @DIYGUYChris
      @DIYGUYChris  Před 7 lety +1

      Sure you can insert an operation system like "FREE RTOS"

  • @aszandek
    @aszandek Před 5 lety +1

    Hi, thanks! If anybody got this error message: "...SerialTimeoutException: Write timeout..." put back upload speed to :115200 from 9600 baud!

  • @darshans2173
    @darshans2173 Před 4 lety

    Tq so much bro

  • @srishtygardenresorts705

    hey there my codes is not uploading into my esp8266 do u knw why?

  • @josebarbosa2222
    @josebarbosa2222 Před 4 lety +1

    Please upload the code on github. Make no sense add the code at mediafire, and now the download is blocked my meadiafire.

  • @lijosmedia
    @lijosmedia Před 3 lety

    I am using Nodemcu esp8266
    With that I am using 4 channel relay board. But this is operating as Active low relay.
    I want to operate it as Active High
    How to change the board

  • @emilyhuang2759
    @emilyhuang2759 Před 5 lety +1

    How did you get to the window at 5:32?

    • @DIYGUYChris
      @DIYGUYChris  Před 5 lety +1

      Hello
      You can get that window from "peripheral management" type it on your windows search
      Let us know if we can further assist you.
      Do not forget to subscribe to our CZcams channel for more awesome videos.

  • @sialeeMK
    @sialeeMK Před 6 lety +1

    i don't see any ESP on Tool >> Board..

  • @nhunggiotle5804
    @nhunggiotle5804 Před 4 lety +1

    Hello, my ESP 8266 r3 module when loading the code it says: "leaving....hard resetting via RTS pin... ". Please help me.

    • @user-eb5dm9jw8w
      @user-eb5dm9jw8w Před 3 lety

      Hi! Not afraid. This is normal))) I have as well.

  • @thanasis_k
    @thanasis_k Před 2 lety

    I plugged in esp in my laptop and started to smell like something is burned

  • @datlatanusha8158
    @datlatanusha8158 Před 6 lety

    Sir
    While uploading programs to nodemcu1.0 module it's taking too much long time. Approximately 20 min. Plz help

    • @jimbarchuk
      @jimbarchuk Před 5 lety

      Was this fixed? If yes what was the answer?

  • @king09426
    @king09426 Před 5 lety +2

    I cannot download the boards....Its giving an error

    • @DIYGUYChris
      @DIYGUYChris  Před 5 lety +1

      Hello Duke SHEIKH
      Could you copy and past the error text message in a comment?

    • @king09426
      @king09426 Před 5 lety

      MEGA DAS Yes for sure

    • @king09426
      @king09426 Před 5 lety

      Do we have any solution for this

    • @DIYGUYChris
      @DIYGUYChris  Před 5 lety +1

      @@king09426 where is the comment that has the error text message!

    • @king09426
      @king09426 Před 5 lety

      The blue line is the error

  • @aaronthomas658
    @aaronthomas658 Před 6 lety

    Great video but you need a mic shield

  • @ddd12343
    @ddd12343 Před 6 lety

    Is part 2 of this video series already published?

    • @DIYGUYChris
      @DIYGUYChris  Před 6 lety +2

      Hello Piotrek K
      Thank you for the comment.
      Second tutorial will be published soon in the comming week stay tune.
      Let us know if we can further assist you.

    • @syafawichealuwai243
      @syafawichealuwai243 Před 6 lety

      has it been published?

  • @Electromaniaworld
    @Electromaniaworld Před 4 lety

    some steps are missing... you can correct it by looking at my video on this subject ...
    How to program ESP8266 ESP-12E NodeMCU using Arduino IDE

  • @jimjulian4443
    @jimjulian4443 Před 2 lety

    Project code is no longer accessible.

  • @aatkarelse8218
    @aatkarelse8218 Před 5 lety

    oh so easy, install micropython, done !

  • @PaulCavanagh69
    @PaulCavanagh69 Před 6 lety +2

    you code link failspopup links to nasty things
    File Blocked for Violation.
    The file you requested has been blocked for a violation of our Terms of Service.
    Still have questions, or think we've made a mistake? Please contact support for further assistance.

  • @hetzandreas3442
    @hetzandreas3442 Před 4 lety +1

    if you could try to speak "not that fancy" I would definitely leave an abo

  • @jimbarchuk
    @jimbarchuk Před 5 lety +2

    Takeaway, "Make SURE you are doing electronics EVERY day."

  • @billyboo3819
    @billyboo3819 Před 5 lety

    any one in Toronto can help me with setting this device...Thanks

  • @mytube1000javed
    @mytube1000javed Před 3 lety

    No. Bro its not that easy. Drivers does not get installed auto.atically. and port option is disables in arduino tools menu

  • @williamgraham8761
    @williamgraham8761 Před 4 lety +1

    Please drop the music, its distracting.

  • @mattiasarvidsson8522
    @mattiasarvidsson8522 Před 6 lety

    pls make video on how to fix the shit when its bricked by sending wrong at-commands :)

  • @zirkelini
    @zirkelini Před 4 lety +3

    The music on this vid is just.... Wish you would release a remake widhout it .... :|