ESP8266/NodeMCU IDE, Firmware Upgrade & First Bit Of Code - Complete Guide Part 2 - TN0006

107,388
0
Published 2015-07-06
A Complete tutorial Series on the NodeMCU/ESP8266, In this episode we take a quick dip into the IDE(Integrated Development Environment) we will be using, we upgrade the Lua firmware to the latest version and use a small bit of code to produce a flashing LED!

Subscribe to be kept updated when I release more videos in this series!

DOWNLOAD FIRMWARE HERE
--------------------------------------
The link for the firmware in ESPlorer is broken, please use the following link:

github.com/nodemcu/nodemcu-firmware/releases/downl…

--------------------------------------
Download For Esplorer
--------------------------------------
esp8266.ru/esplorer/


Installing Java Runtime.
--------------------------------------
I mentioned in the video about providing a link to a video on how to install java, unfortunately I am unable to find a good one, I believe it is because no one has created one as the task is quite easy!
Just navigate to: java.com/en/download/ Click download and follow the installation instructions! Any problems post a comment and I will be happy to help!

Code Sample
--------------------------------------
while 1 do
gpio.write(0, gpio.HIGH)
tmr.delay(1000000) -- wait 1,000,000 us = 1 second
gpio.write(0, gpio.LOW)
tmr.delay(1000000) -- wait 1,000,000 us = 1 second
end

Code modified from the adafruit “Adafruit HUZZAH ESP8266 breakout” Learn page:
learn.adafruit.com/adafruit-huzzah-esp8266-breakou…

Credits
--------------------------------------
Amazing Music By: www.bensound.com/

All Comments (21)
  • @tonyh455
    JOB WELL DONE!!!! your site has the most comprehensive instructions on ESP8266 on the web. Thanks for simplifying the process for us new users. keep up the good work, looking forward to your next videos.
  • @dkean4
    Best explanation on YouTube for 8266 use, history and more, among so many. No BS and cover ups for lack of know how. I look forward to your future tutorials. Great job Tom! Any additional info on Python and how it fits in with ESP8266 would be appreciated. Best regards,
  • @rshonk66
    Thanks you for producing this concise guide on how to get the modemcu up and running. We'll done!
  • @AlanSloan
    Got this working thanks to your video! Thanks so much! Worth noting that the firmware upload did not work for me until I realized that I was using a USB charging cable that did not have a data line in it. Once I switched cables, I was able to follow your video and the firmware flash and blink test worked perfectly for me.
  • @dumcumpster
    Thanks for this series. I got my dev board in the mail Friday so this is perfect timing.
  • @Fogaata
    Thank you!!! Very appreciative of your videos!
  • @ianianian436
    Yes thankyou, terrific so helpful, best I have found!
  • @harish96000
    Please Continue with the next videos. Waiting for it.
  • @playinmyblues
    Good tutorial so far. However, when I first plugged in my NodeMCU I had to change the baud rate to 115200 to get it to communicate the ESPlorer software. I downloaded and flashed the latest firmware as in the video (if I remember correctly - there have been a few changes obviously since you posted the video). When I tried get it communicate I tried all the baud rates. Then I tried pressing the Reset button on the board, set the baud rate to 9600 and clicked the Open button on the software - success!
  • @MaxGoddur
    When the Explorer v0.2.0 comes up the window and all its buttons are incredibly small, is there a way to increase all the text within the window making it possible to read the description and function of the buttons?
  • @coppercompton
    very helpful thank you! looking forward to the next videos. Where did you get the blackboard version from? I got a yellow one and it doesn't fit on a breadboard correctly for messing around with quickly.