Getting started with NodeMCU (ESP8266 tutorial #1)

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ก.ค. 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 TH-cam: ★☆★
    / 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
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 246

  • @petermicuch1173
    @petermicuch1173 5 ปีที่แล้ว +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

    • @fubeolw
      @fubeolw 4 ปีที่แล้ว +4

      thank you Peter

    • @abhijeetpratapsingh8675
      @abhijeetpratapsingh8675 4 ปีที่แล้ว +2

      yes

    • @abhijeetpratapsingh8675
      @abhijeetpratapsingh8675 4 ปีที่แล้ว +1

      yes

    • @fraaggl
      @fraaggl 4 ปีที่แล้ว +10

      this step made me loose about 15 mn not knowing what the hell was happening !
      Thanks for the time saving info !

    • @MrLeitao
      @MrLeitao 3 ปีที่แล้ว

      thxxxxx

  • @keoth1
    @keoth1 5 ปีที่แล้ว +20

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

  • @sam.kendrick
    @sam.kendrick 6 ปีที่แล้ว +11

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

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว +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.

  • @NotShanny
    @NotShanny 6 ปีที่แล้ว +1

    Looking foward for a tutorail 2 ! Great job !

  • @addisugebremichael3496
    @addisugebremichael3496 2 ปีที่แล้ว

    i need a refresher and this is the best video

    • @DIYGUYChris
      @DIYGUYChris  2 ปีที่แล้ว +1

      Keep up the good mood : )

  • @Bicho2895
    @Bicho2895 5 ปีที่แล้ว +6

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

  • @karlprendergast6282
    @karlprendergast6282 4 ปีที่แล้ว +1

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

  • @teoncool5907
    @teoncool5907 2 ปีที่แล้ว

    Love the video! What usb cabel is required?

  • @phwualoha1
    @phwualoha1 2 ปีที่แล้ว

    Thank you for sharing.

  • @great.shrike
    @great.shrike 5 ปีที่แล้ว +18

    PROJECT CODE link is dead :(

  • @althamishnainamohamed6646
    @althamishnainamohamed6646 2 ปีที่แล้ว

    This video is really usefull 👍🏻

  • @ernestorivero8788
    @ernestorivero8788 ปีที่แล้ว

    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

  • @ddx30
    @ddx30 6 ปีที่แล้ว +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-

    • @BIGBUD71
      @BIGBUD71 3 ปีที่แล้ว +1

      Init👍

  • @DerPlasma
    @DerPlasma 3 ปีที่แล้ว +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="";
    }

  • @qzorn4440
    @qzorn4440 3 ปีที่แล้ว

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

  • @ernestorivero8788
    @ernestorivero8788 ปีที่แล้ว

    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

  • @funlikeeee6298
    @funlikeeee6298 ปีที่แล้ว

    😳 nice thanks!

  • @nurishahaniakamarudin7417
    @nurishahaniakamarudin7417 6 ปีที่แล้ว +1

    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??

  • @amadeusalekseis
    @amadeusalekseis ปีที่แล้ว

    Hiya Dr. Nick!

  • @anhtuannguyen7286
    @anhtuannguyen7286 6 ปีที่แล้ว +2

    Good job bro, Thank you very much

  • @massimilianomascaro
    @massimilianomascaro 5 ปีที่แล้ว +1

    thank you so much

  • @iamsabakalsoom
    @iamsabakalsoom 4 ปีที่แล้ว

    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.

  • @saifullah4412
    @saifullah4412 6 ปีที่แล้ว +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?

  • @LCol718
    @LCol718 3 ปีที่แล้ว

    Thank You!!!;

  • @animagupta915
    @animagupta915 5 ปีที่แล้ว

    Thanks for this tutorial,Most helpful video!

  • @fugit185
    @fugit185 4 ปีที่แล้ว +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!

  • @makerun6927
    @makerun6927 4 ปีที่แล้ว

    very nice

  • @abdullahguler7950
    @abdullahguler7950 4 หลายเดือนก่อน

    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.

  • @yesmecreations2533
    @yesmecreations2533 3 ปีที่แล้ว

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

  • @sagarikabehera1008
    @sagarikabehera1008 4 ปีที่แล้ว

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

  • @DDTMAXX
    @DDTMAXX 6 ปีที่แล้ว +1

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

  • @raymondaudet8775
    @raymondaudet8775 5 ปีที่แล้ว

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

  • @nathanobadiah8334
    @nathanobadiah8334 3 ปีที่แล้ว +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 2 ปีที่แล้ว

      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.

  • @danieljohnsopardenilla997
    @danieljohnsopardenilla997 2 ปีที่แล้ว +1

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

  • @IaEmon
    @IaEmon 3 ปีที่แล้ว +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?

  • @srishtygardenresorts705
    @srishtygardenresorts705 5 ปีที่แล้ว +9

    when i uploaf my board url they are not getting downloaded

    • @TIDEredshift
      @TIDEredshift 5 ปีที่แล้ว +6

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

  • @felipezafani
    @felipezafani 6 ปีที่แล้ว

    Great video it helped me a lot!

  • @ambarishlg
    @ambarishlg 6 ปีที่แล้ว +6

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

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว +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 6 ปีที่แล้ว +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 6 ปีที่แล้ว

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

    • @SureshKumarDL
      @SureshKumarDL 5 ปีที่แล้ว

      Where is the second tutorial??

    • @pagedavid4344
      @pagedavid4344 5 ปีที่แล้ว

      soon? really?

  • @SchwanaCARDHUT
    @SchwanaCARDHUT 3 ปีที่แล้ว

    thank U

  • @frankwas1
    @frankwas1 5 ปีที่แล้ว +1

    you should get a pop filter for your mic

  • @daringtruth6948
    @daringtruth6948 5 ปีที่แล้ว

    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

  • @vanucle2540
    @vanucle2540 5 ปีที่แล้ว

    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 !!!

  • @mahesh_d
    @mahesh_d 5 ปีที่แล้ว

    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 5 ปีที่แล้ว

      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.

  • @brucemurdock5358
    @brucemurdock5358 2 ปีที่แล้ว

    Great video! Time stamps would've been nice tho

  • @gs9807
    @gs9807 4 ปีที่แล้ว +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  4 ปีที่แล้ว

      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 TH-cam channel for more awesome videos.

    • @alexfranklin4826
      @alexfranklin4826 3 ปีที่แล้ว

      @@DIYGUYChris The link is expired.

  • @leonheider2808
    @leonheider2808 6 ปีที่แล้ว +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  6 ปีที่แล้ว +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 6 ปีที่แล้ว +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  6 ปีที่แล้ว

      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.

  • @harishanker3848
    @harishanker3848 5 ปีที่แล้ว

    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

  • @aaronward6092
    @aaronward6092 4 ปีที่แล้ว

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

  • @mianfasih8286
    @mianfasih8286 5 ปีที่แล้ว

    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?

  • @phisitja01
    @phisitja01 4 ปีที่แล้ว

    thank

  • @AwesomeSmiley87
    @AwesomeSmiley87 6 ปีที่แล้ว +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  6 ปีที่แล้ว

      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 6 ปีที่แล้ว +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.

  • @ruellarobson
    @ruellarobson 5 ปีที่แล้ว

    thank you brother

    • @DIYGUYChris
      @DIYGUYChris  5 ปีที่แล้ว

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

  • @nehru123456
    @nehru123456 6 ปีที่แล้ว

    thank you, you helped me a lot

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว

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

  • @R_intelligence
    @R_intelligence 5 ปีที่แล้ว

    Second part kab aayega!!!

  • @diggee172
    @diggee172 6 ปีที่แล้ว

    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  6 ปีที่แล้ว

      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 6 ปีที่แล้ว

      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  6 ปีที่แล้ว

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

  • @ayeshayasin7214
    @ayeshayasin7214 4 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  4 ปีที่แล้ว

      Hello
      Around 25 meters ☺️

    • @ayeshayasin7214
      @ayeshayasin7214 4 ปีที่แล้ว

      @@DIYGUYChris and in outdoor?

  • @ahmadkharsah
    @ahmadkharsah 6 ปีที่แล้ว +1

    Great Video!

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว

      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.

  • @enghussain2307
    @enghussain2307 4 ปีที่แล้ว +1

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

  • @asdfglkjhg5214
    @asdfglkjhg5214 6 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว

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

    • @asdfglkjhg5214
      @asdfglkjhg5214 6 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว

      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 6 ปีที่แล้ว +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  6 ปีที่แล้ว +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

  • @samuelkern8678
    @samuelkern8678 5 ปีที่แล้ว

    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.

  • @PossumMedic
    @PossumMedic 4 ปีที่แล้ว +2

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

    • @eric1052
      @eric1052 4 ปีที่แล้ว

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

  • @2010Edgars
    @2010Edgars 5 ปีที่แล้ว

    For MaCOS?

  • @muhammadmifzal9713
    @muhammadmifzal9713 4 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  4 ปีที่แล้ว

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

    • @muhammadmifzal9713
      @muhammadmifzal9713 4 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  4 ปีที่แล้ว

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

  • @annlebow1648
    @annlebow1648 4 ปีที่แล้ว

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

  • @juniorcook4094
    @juniorcook4094 5 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  5 ปีที่แล้ว

      Hello
      Is it a makerfocus esp8266 or an makerfocus esp32 ?

    • @juniorcook4094
      @juniorcook4094 5 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  5 ปีที่แล้ว

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

    • @juniorcook4094
      @juniorcook4094 5 ปีที่แล้ว

      @@DIYGUYChris awesome thanks

  • @sostenesibarra8244
    @sostenesibarra8244 6 ปีที่แล้ว +1

    can you shar the links to download

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว

      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.

  • @TechnicalHeavenSM
    @TechnicalHeavenSM 3 ปีที่แล้ว

    How to make it work like a rubber ducky

  • @aszandek
    @aszandek 4 ปีที่แล้ว +1

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

  • @mohitkundu6909
    @mohitkundu6909 5 ปีที่แล้ว

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

    • @DIYGUYChris
      @DIYGUYChris  5 ปีที่แล้ว +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 TH-cam channel for more awesome videos.

    • @mohitkundu6909
      @mohitkundu6909 5 ปีที่แล้ว

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

    • @mohitkundu6909
      @mohitkundu6909 5 ปีที่แล้ว

      MEGA DAS i am new in this

  • @billyboo222
    @billyboo222 4 ปีที่แล้ว

    Anyone can help to install ESP8266 NodeMCU board. Thanks

  • @Zsinje
    @Zsinje 3 ปีที่แล้ว +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 11 หลายเดือนก่อน

      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);
      }

  • @darshans2173
    @darshans2173 4 ปีที่แล้ว

    Tq so much bro

  • @gabrielmanoto6135
    @gabrielmanoto6135 6 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว +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 6 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว

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

    • @gabrielmanoto6135
      @gabrielmanoto6135 6 ปีที่แล้ว

      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  6 ปีที่แล้ว

      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

  • @silentscope7440
    @silentscope7440 4 ปีที่แล้ว +2

    the project code is no longer available

    • @mohitsathya3123
      @mohitsathya3123 3 ปีที่แล้ว

      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 2 ปีที่แล้ว +1

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

  • @thanasis_k
    @thanasis_k ปีที่แล้ว

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

  • @celinejay7539
    @celinejay7539 6 ปีที่แล้ว

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

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว +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 6 ปีที่แล้ว +1

      Using an Operating system I guess !

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว

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

    • @celinejay7539
      @celinejay7539 6 ปีที่แล้ว

      is it possible to use operating system with ESP !

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว +1

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

  • @srishtygardenresorts705
    @srishtygardenresorts705 6 ปีที่แล้ว

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

  • @lijosmedia
    @lijosmedia 3 ปีที่แล้ว

    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

  • @_Yochitha
    @_Yochitha 2 หลายเดือนก่อน

    How many pins in node mcu?

    • @DIYGUYChris
      @DIYGUYChris  2 หลายเดือนก่อน

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

  • @PCBoardRepair
    @PCBoardRepair ปีที่แล้ว

    what is sheep?

  • @jimjulian4443
    @jimjulian4443 2 ปีที่แล้ว

    Project code is no longer accessible.

  • @piotrek-k
    @piotrek-k 6 ปีที่แล้ว

    Is part 2 of this video series already published?

    • @DIYGUYChris
      @DIYGUYChris  6 ปีที่แล้ว +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 6 ปีที่แล้ว

      has it been published?

  • @aaronthomas658
    @aaronthomas658 6 ปีที่แล้ว

    Great video but you need a mic shield

  • @king09426
    @king09426 5 ปีที่แล้ว +2

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

    • @DIYGUYChris
      @DIYGUYChris  5 ปีที่แล้ว +1

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

    • @king09426
      @king09426 5 ปีที่แล้ว

      MEGA DAS Yes for sure

    • @king09426
      @king09426 5 ปีที่แล้ว

      Do we have any solution for this

    • @DIYGUYChris
      @DIYGUYChris  5 ปีที่แล้ว +1

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

    • @king09426
      @king09426 5 ปีที่แล้ว

      The blue line is the error

  • @sialeeMK
    @sialeeMK 6 ปีที่แล้ว +1

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

  • @nhunggiotle5804
    @nhunggiotle5804 3 ปีที่แล้ว +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 3 ปีที่แล้ว

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

  • @mattiasarvidsson8522
    @mattiasarvidsson8522 6 ปีที่แล้ว

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

  • @josebarbosa2222
    @josebarbosa2222 4 ปีที่แล้ว +1

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

  • @williamgraham8761
    @williamgraham8761 3 ปีที่แล้ว +1

    Please drop the music, its distracting.

  • @datlatanusha8158
    @datlatanusha8158 5 ปีที่แล้ว

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

    • @jimbarchuk
      @jimbarchuk 4 ปีที่แล้ว

      Was this fixed? If yes what was the answer?

  • @PaulCavanagh69
    @PaulCavanagh69 6 ปีที่แล้ว +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.

  • @phillip4833
    @phillip4833 4 ปีที่แล้ว

    Are you gonna make the second video?

    • @DIYGUYChris
      @DIYGUYChris  4 ปีที่แล้ว +1

      Hello
      We are making a second tutorial about a NodeMCU project and it will be posted in these couple days.
      We will start a giveaway in our next video for all our subscribers. Do not miss to watch the video to be a winner ^_^

    • @phillip4833
      @phillip4833 4 ปีที่แล้ว

      @@DIYGUYChris That would be awesome thank you very much.

  • @aatkarelse8218
    @aatkarelse8218 5 ปีที่แล้ว

    oh so easy, install micropython, done !

  • @emilyhuang2759
    @emilyhuang2759 5 ปีที่แล้ว +1

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

    • @DIYGUYChris
      @DIYGUYChris  5 ปีที่แล้ว +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 TH-cam channel for more awesome videos.

  • @jimbarchuk
    @jimbarchuk 4 ปีที่แล้ว +2

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

  • @zirkelini
    @zirkelini 4 ปีที่แล้ว +3

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

  • @hetzandreas3442
    @hetzandreas3442 4 ปีที่แล้ว +1

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

  • @GiyuTomiokaTheOneAndOnly
    @GiyuTomiokaTheOneAndOnly 4 ปีที่แล้ว

    I can't understand the introduction you gave !

  • @chandangowdachandu1348
    @chandangowdachandu1348 5 ปีที่แล้ว

    Sir WiFi networks are not showing in comport 😌